From 94774503034544a11367fde96ce432fedcb0c44c Mon Sep 17 00:00:00 2001 From: uga-rosa Date: Mon, 24 Apr 2023 00:15:24 +0900 Subject: [PATCH] feat: support new grammar falsy operator --- grammar.js | 26 +- queries/highlights.scm | 2 + src/grammar.json | 87 +- src/node-types.json | 382 +- src/parser.c | 131660 +++++++++++++++++++------------------- 5 files changed, 67026 insertions(+), 65131 deletions(-) diff --git a/grammar.js b/grammar.js index 7e0af62..c0a9596 100644 --- a/grammar.js +++ b/grammar.js @@ -83,15 +83,16 @@ const ENCODING = [ ]; const PREC = { - TERNARY: 1, //=> expr ? expr : expr - OR: 2, //=> or - AND: 3, //=> and - COMPARE: 4, //=> < <= == ~= >= > and all - PLUS: 5, //=> + - - CONCAT: 5, //=> .. . - MULTI: 6, //=> * / % - UNARY: 7, //=> ! - + - CALL: 8, //expr[n] expr[n:m] expr.name expr(...) + FALSY: 1, //=> expr ?? expr + TERNARY: 2, //=> expr ? expr : expr + OR: 3, //=> or + AND: 4, //=> and + COMPARE: 5, //=> < <= == ~= >= > and all + PLUS: 6, //=> + - + CONCAT: 6, //=> .. . + MULTI: 7, //=> * / % + UNARY: 8, //=> ! - + + CALL: 9, //expr[n] expr[n:m] expr.name expr(...) }; module.exports = grammar({ @@ -924,6 +925,7 @@ module.exports = grammar({ choice( $._variable, $.ternary_expression, + $.falsy_expression, $.index_expression, $.slice_expression, $.binary_operation, @@ -946,6 +948,12 @@ module.exports = grammar({ ) ), + falsy_expression: ($) => + prec.left( + PREC.FALSY, + seq(field("left", $._expression), "??", field("right", $._expression)) + ), + // Shamelessly stolen from tree-sitter-lua match_case: ($) => choice("#", "?"), diff --git a/queries/highlights.scm b/queries/highlights.scm index ce25b13..880ed61 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -273,6 +273,8 @@ (ternary_expression ["?" ":"] @conditional.ternary) +(falsy_expression "??" @conditional) + ; Options ((set_value) @number (#match? @number "^[0-9]+(\.[0-9]+)?$")) diff --git a/src/grammar.json b/src/grammar.json index 93a1697..a2f5ea1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4034,7 +4034,7 @@ }, "function_declaration": { "type": "PREC", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -6598,6 +6598,10 @@ "type": "SYMBOL", "name": "ternary_expression" }, + { + "type": "SYMBOL", + "name": "falsy_expression" + }, { "type": "SYMBOL", "name": "index_expression" @@ -6647,7 +6651,7 @@ }, "ternary_expression": { "type": "PREC_LEFT", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -6686,6 +6690,35 @@ ] } }, + "falsy_expression": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "??" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, "match_case": { "type": "CHOICE", "members": [ @@ -6704,7 +6737,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 2, + "value": 3, "content": { "type": "SEQ", "members": [ @@ -6733,7 +6766,7 @@ }, { "type": "PREC_LEFT", - "value": 3, + "value": 4, "content": { "type": "SEQ", "members": [ @@ -6762,7 +6795,7 @@ }, { "type": "PREC_LEFT", - "value": 5, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -6791,7 +6824,7 @@ }, { "type": "PREC_LEFT", - "value": 5, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -6820,7 +6853,7 @@ }, { "type": "PREC_LEFT", - "value": 6, + "value": 7, "content": { "type": "SEQ", "members": [ @@ -6849,7 +6882,7 @@ }, { "type": "PREC_LEFT", - "value": 6, + "value": 7, "content": { "type": "SEQ", "members": [ @@ -6878,7 +6911,7 @@ }, { "type": "PREC_LEFT", - "value": 6, + "value": 7, "content": { "type": "SEQ", "members": [ @@ -6907,7 +6940,7 @@ }, { "type": "PREC_LEFT", - "value": 5, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -6936,7 +6969,7 @@ }, { "type": "PREC_LEFT", - "value": 5, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -6965,7 +6998,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7011,7 +7044,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7057,7 +7090,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7103,7 +7136,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7149,7 +7182,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7195,7 +7228,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7241,7 +7274,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7287,7 +7320,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7333,7 +7366,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7379,7 +7412,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7427,7 +7460,7 @@ }, "unary_operation": { "type": "PREC_LEFT", - "value": 7, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -7726,7 +7759,7 @@ }, "index_expression": { "type": "PREC", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -7759,7 +7792,7 @@ }, "slice_expression": { "type": "PREC", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -7820,7 +7853,7 @@ }, "field_expression": { "type": "PREC_LEFT", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -7849,7 +7882,7 @@ }, "call_expression": { "type": "PREC", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -8001,7 +8034,7 @@ }, "method_expression": { "type": "PREC", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index f134e09..711bf64 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1234,6 +1234,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -1336,6 +1340,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2013,6 +2021,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2108,6 +2120,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2455,6 +2471,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2582,6 +2602,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2719,6 +2743,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2857,6 +2885,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -2959,6 +2991,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3059,6 +3095,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3158,6 +3198,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3272,6 +3316,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3371,6 +3419,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3524,6 +3576,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3673,6 +3729,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3795,6 +3855,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -3866,6 +3930,224 @@ ] } }, + { + "type": "falsy_expression", + "named": true, + "fields": { + "left": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "argument", + "named": true + }, + { + "type": "binary_operation", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "dictionnary", + "named": true + }, + { + "type": "env_variable", + "named": true + }, + { + "type": "falsy_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "float_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_expression", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "literal_dictionary", + "named": true + }, + { + "type": "method_expression", + "named": true + }, + { + "type": "option", + "named": true + }, + { + "type": "register", + "named": true + }, + { + "type": "scope_dict", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "slice_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "unary_operation", + "named": true + } + ] + }, + "right": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "argument", + "named": true + }, + { + "type": "binary_operation", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "dictionnary", + "named": true + }, + { + "type": "env_variable", + "named": true + }, + { + "type": "falsy_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "float_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_expression", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "literal_dictionary", + "named": true + }, + { + "type": "method_expression", + "named": true + }, + { + "type": "option", + "named": true + }, + { + "type": "register", + "named": true + }, + { + "type": "scope_dict", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "slice_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "unary_operation", + "named": true + } + ] + } + } + }, { "type": "field_expression", "named": true, @@ -3912,6 +4194,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -4139,6 +4425,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -4885,6 +5175,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5015,6 +5309,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5117,6 +5415,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5237,6 +5539,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5341,6 +5647,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5448,6 +5758,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5547,6 +5861,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -5664,6 +5982,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -6166,6 +6488,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -6283,6 +6609,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -6924,6 +7254,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -7956,6 +8290,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -8058,6 +8396,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -8160,6 +8502,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -8640,6 +8986,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -8742,6 +9092,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -8844,6 +9198,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -8949,6 +9307,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -9350,6 +9712,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -9476,6 +9842,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -9940,6 +10310,10 @@ "type": "env_variable", "named": true }, + { + "type": "falsy_expression", + "named": true + }, { "type": "field_expression", "named": true @@ -10273,6 +10647,10 @@ "type": "?", "named": false }, + { + "type": "??", + "named": false + }, { "type": "@", "named": false @@ -11083,11 +11461,11 @@ }, { "type": "keyword", - "named": false + "named": true }, { "type": "keyword", - "named": true + "named": false }, { "type": "koi8", diff --git a/src/parser.c b/src/parser.c index 4897ca8..0765c9f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3219 +#define STATE_COUNT 3229 #define LARGE_STATE_COUNT 122 -#define SYMBOL_COUNT 908 +#define SYMBOL_COUNT 910 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 619 +#define TOKEN_COUNT 620 #define EXTERNAL_TOKEN_COUNT 110 #define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -314,632 +314,634 @@ enum { anon_sym_STAR2 = 287, anon_sym_unplace = 288, anon_sym_jump = 289, - anon_sym_POUND = 290, - anon_sym_PIPE_PIPE = 291, - anon_sym_AMP_AMP = 292, - anon_sym_DASH = 293, - anon_sym_DOT_DOT = 294, - anon_sym_EQ_EQ = 295, - anon_sym_BANG_EQ = 296, - anon_sym_GT2 = 297, - anon_sym_GT_EQ = 298, - anon_sym_LT_EQ = 299, - anon_sym_EQ_TILDE = 300, - anon_sym_BANG_TILDE = 301, - anon_sym_is = 302, - anon_sym_isnot = 303, - anon_sym_BANG2 = 304, - sym_float_literal = 305, - sym_integer_literal = 306, - anon_sym_LBRACK = 307, - anon_sym_RBRACK = 308, - anon_sym_LPAREN2 = 309, - anon_sym_DASH_GT = 310, - aux_sym_filename_token1 = 311, - aux_sym_filename_token2 = 312, - aux_sym_filename_token3 = 313, - aux_sym_filename_token4 = 314, - aux_sym_filename_token5 = 315, - aux_sym_filename_token6 = 316, - aux_sym_filename_token7 = 317, - aux_sym_filename_token8 = 318, - aux_sym_pattern_multi_token1 = 319, - aux_sym_pattern_multi_token2 = 320, - aux_sym_pattern_multi_token3 = 321, - aux_sym__pattern_ordinary_atom_token1 = 322, - aux_sym__pattern_ordinary_atom_token2 = 323, - anon_sym_BSLASH_LPAREN = 324, - anon_sym_BSLASH_RPAREN = 325, - anon_sym_BSLASH_PERCENT_LPAREN = 326, - anon_sym_BSLASHz_LPAREN = 327, - sym_register = 328, - sym_literal_key = 329, - anon_sym_POUND_LBRACE = 330, - anon_sym_keep = 331, - anon_sym_drop = 332, - anon_sym_PLUS_PLUS = 333, - anon_sym_ff = 334, - anon_sym_fileformat = 335, - anon_sym_enc = 336, - anon_sym_encoding = 337, - anon_sym_bin = 338, - anon_sym_binary = 339, - anon_sym_nobin = 340, - anon_sym_nobinary = 341, - anon_sym_bad = 342, - anon_sym_edit = 343, - aux_sym__plus_cmd_arg_token1 = 344, - sym_au_event = 345, - aux_sym__autocmd_pattern_token1 = 346, - sym_au_once = 347, - sym_au_nested = 348, - sym_command_name = 349, - anon_sym_arglist = 350, - anon_sym_augroup = 351, - anon_sym_buffer2 = 352, - anon_sym_behave = 353, - anon_sym_color = 354, - anon_sym_command = 355, - anon_sym_compiler = 356, - anon_sym_dir = 357, - anon_sym_environment = 358, - anon_sym_even = 359, - anon_sym_expression = 360, - anon_sym_file2 = 361, - anon_sym_file_in_path = 362, - anon_sym_filetype = 363, - anon_sym_function = 364, - anon_sym_help = 365, - anon_sym_highlight = 366, - anon_sym_history = 367, - anon_sym_local = 368, - anon_sym_lua = 369, - anon_sym_mapclear = 370, - anon_sym_mapping = 371, - anon_sym_menu = 372, - anon_sym_messages = 373, - anon_sym_option = 374, - anon_sym_packadd = 375, - anon_sym_shellcmd = 376, - anon_sym_sign = 377, - anon_sym_syntax = 378, - anon_sym_syntime = 379, - anon_sym_tag = 380, - anon_sym_tag_listfiles = 381, - anon_sym_user = 382, - anon_sym_var = 383, - anon_sym_custom = 384, - anon_sym_COMMA2 = 385, - anon_sym_customlist = 386, - anon_sym_lines = 387, - anon_sym_arguments = 388, - anon_sym_buffers = 389, - anon_sym_loaded_buffers = 390, - anon_sym_windows = 391, - anon_sym_tabs = 392, - anon_sym_quickfix = 393, - anon_sym_other = 394, - aux_sym__command_attribute_nargs_value_token1 = 395, - aux_sym__command_attribute_nargs_value_token2 = 396, - anon_sym_PERCENT2 = 397, - anon_sym_DASHnargs = 398, - anon_sym_DASHcomplete = 399, - anon_sym_DASHrange = 400, - anon_sym_DASHcount = 401, - anon_sym_DASHaddr = 402, - anon_sym_DASHbang = 403, - anon_sym_DASHbar = 404, - anon_sym_DASHregister = 405, - anon_sym_DASHbuffer = 406, - anon_sym_DASHkeepscript = 407, - aux_sym_command_statement_token1 = 408, - sym_hl_group = 409, - anon_sym_link = 410, - anon_sym_clear = 411, - anon_sym_NONE = 412, - sym__hl_none = 413, - anon_sym_bold = 414, - anon_sym_underline = 415, - anon_sym_undercurl = 416, - anon_sym_underdouble = 417, - anon_sym_underdotted = 418, - anon_sym_underdashed = 419, - anon_sym_strikethrough = 420, - anon_sym_reverse = 421, - anon_sym_inverse = 422, - anon_sym_italic = 423, - anon_sym_standout = 424, - anon_sym_nocombine = 425, - anon_sym_term = 426, - anon_sym_cterm = 427, - aux_sym__hl_term_list_token1 = 428, - anon_sym_start = 429, - anon_sym_stop = 430, - sym__hl_color_nr = 431, - anon_sym_ctermfg = 432, - anon_sym_ctermbg = 433, - anon_sym_gui = 434, - anon_sym_SQUOTE = 435, - aux_sym__hl_quoted_name_token1 = 436, - anon_sym_SQUOTE2 = 437, - anon_sym_bg = 438, - anon_sym_background = 439, - anon_sym_fg = 440, - anon_sym_foreground = 441, - aux_sym_color_token1 = 442, - aux_sym_color_token2 = 443, - anon_sym_guifg = 444, - anon_sym_guibg = 445, - anon_sym_guisp = 446, - aux_sym_font_token1 = 447, - anon_sym_font = 448, - anon_sym_blend = 449, - anon_sym_enable = 450, - anon_sym_reset = 451, - anon_sym_case = 452, - anon_sym_match = 453, - anon_sym_ignore = 454, - anon_sym_spell = 455, - anon_sym_toplevel = 456, - anon_sym_notoplevel = 457, - anon_sym_foldlevel = 458, - anon_sym_minimum = 459, - anon_sym_iskeyword = 460, - aux_sym__syn_iskeyword_token1 = 461, - anon_sym_conceal = 462, - anon_sym_cchar = 463, - anon_sym_contained = 464, - anon_sym_containedin = 465, - anon_sym_nextgroup = 466, - anon_sym_transparent = 467, - anon_sym_skipwhite = 468, - anon_sym_skipnl = 469, - anon_sym_skipempty = 470, - anon_sym_contains = 471, - anon_sym_fold = 472, - anon_sym_display = 473, - anon_sym_extend = 474, - anon_sym_keepend = 475, - anon_sym_excludenl = 476, - anon_sym_matchgroup = 477, - anon_sym_oneline = 478, - anon_sym_concealends = 479, - anon_sym_add = 480, - anon_sym_remove = 481, - anon_sym_ms = 482, - anon_sym_me = 483, - anon_sym_hs = 484, - anon_sym_he = 485, - anon_sym_rs = 486, - anon_sym_re = 487, - anon_sym_lc = 488, - aux_sym__syn_pattern_offset_token1 = 489, - aux_sym__syn_pattern_offset_token2 = 490, - anon_sym_keyword = 491, - aux_sym__syn_keyword_token1 = 492, - anon_sym_skip = 493, - anon_sym_end = 494, - anon_sym_region = 495, - anon_sym_cluster = 496, - anon_sym_include = 497, - anon_sym_minlines = 498, - anon_sym_maxlines = 499, - aux_sym__syn_sync_lines_token1 = 500, - anon_sym_sync = 501, - anon_sym_linebreaks = 502, - anon_sym_fromstart = 503, - anon_sym_ccomment = 504, - anon_sym_lines2 = 505, - anon_sym_grouphere = 506, - anon_sym_groupthere = 507, - anon_sym_linecont = 508, - sym__no = 509, - sym__inv = 510, - sym__newline_or_pipe = 511, - sym__line_continuation = 512, - sym__script_heredoc_marker = 513, - sym__let_heredoc_marker = 514, - sym__heredoc_end = 515, - sym__separator_first = 516, - sym__separator = 517, - sym__scope_dict = 518, - sym_scope = 519, - sym_string_literal = 520, - sym_comment = 521, - sym_line_continuation_comment = 522, - sym__bang_filter = 523, - sym__function = 524, - sym__endfunction = 525, - sym__for = 526, - sym__endfor = 527, - sym__while = 528, - sym__endwhile = 529, - sym__if = 530, - sym__elseif = 531, - sym__else = 532, - sym__endif = 533, - sym__try = 534, - sym__catch = 535, - sym__cnext = 536, - sym__cprevious = 537, - sym__cNext = 538, - sym__finally = 539, - sym__endtry = 540, - sym__const = 541, - sym__normal = 542, - sym__return = 543, - sym__perl = 544, - sym__lua = 545, - sym__ruby = 546, - sym__python = 547, - sym__throw = 548, - sym__execute = 549, - sym__autocmd = 550, - sym__silent = 551, - sym__echo = 552, - sym__echon = 553, - sym__echohl = 554, - sym__echomsg = 555, - sym__echoerr = 556, - sym__map = 557, - sym__nmap = 558, - sym__vmap = 559, - sym__xmap = 560, - sym__smap = 561, - sym__omap = 562, - sym__imap = 563, - sym__lmap = 564, - sym__cmap = 565, - sym__tmap = 566, - sym__noremap = 567, - sym__nnoremap = 568, - sym__vnoremap = 569, - sym__xnoremap = 570, - sym__snoremap = 571, - sym__onoremap = 572, - sym__inoremap = 573, - sym__lnoremap = 574, - sym__cnoremap = 575, - sym__tnoremap = 576, - sym__augroup = 577, - sym__highlight = 578, - sym__default = 579, - sym__syntax = 580, - sym__set = 581, - sym__setlocal = 582, - sym__setfiletype = 583, - sym__browse = 584, - sym__options = 585, - sym__startinsert = 586, - sym__stopinsert = 587, - sym__scriptencoding = 588, - sym__source = 589, - sym__global = 590, - sym__colorscheme = 591, - sym__command = 592, - sym__comclear = 593, - sym__delcommand = 594, - sym__runtime = 595, - sym__wincmd = 596, - sym__sign = 597, - sym__filetype = 598, - sym__let = 599, - sym__unlet = 600, - sym__call = 601, - sym__break = 602, - sym__continue = 603, - sym__vertical = 604, - sym__leftabove = 605, - sym__aboveleft = 606, - sym__rightbelow = 607, - sym__belowright = 608, - sym__topleft = 609, - sym__botright = 610, - sym__edit = 611, - sym__enew = 612, - sym__find = 613, - sym__ex = 614, - sym__visual = 615, - sym__view = 616, - sym__eval = 617, - sym_unknown_command_name = 618, - sym_script_file = 619, - sym__cmd_separator = 620, - aux_sym__separated_statements = 621, - sym__statement = 622, - sym_unknown_builtin_statement = 623, - sym_return_statement = 624, - sym_break_statement = 625, - sym_continue_statement = 626, - sym_scope_dict = 627, - sym_normal_statement = 628, - sym__filetype_immediate = 629, - sym_filetypes = 630, - sym_setfiletype_statement = 631, - sym_options_statement = 632, - sym_startinsert_statement = 633, - sym_stopinsert_statement = 634, - sym__immediate_file_format = 635, - sym_encoding = 636, - sym__immediate_encoding = 637, - sym_scriptencoding_statement = 638, - sym_cnext_statement = 639, - sym_cprevious_statement = 640, - sym__runtime_where = 641, - sym_runtime_statement = 642, - sym_wincmd_statement = 643, - sym_source_statement = 644, - sym_global_statement = 645, - sym__filetype_state = 646, - sym__filetype_enable = 647, - sym__filetype_detect = 648, - sym__filetype_plugin = 649, - sym__filetype_indent = 650, - sym_filetype_statement = 651, - sym_colorscheme_statement = 652, - sym_lua_statement = 653, - sym_ruby_statement = 654, - sym_python_statement = 655, - sym_perl_statement = 656, - sym_script = 657, - sym_for_loop = 658, - sym_while_loop = 659, - sym_if_statement = 660, - sym_elseif_statement = 661, - sym_else_statement = 662, - sym_try_statement = 663, - sym__au_pattern = 664, - sym_catch_statement = 665, - sym_finally_statement = 666, - sym_throw_statement = 667, - sym__bang_filter_bangs = 668, - sym__bang_filter_command_argument = 669, - sym__bang_filter_command = 670, - sym_bang_filter_statement = 671, - sym_scoped_identifier = 672, - sym_argument = 673, - sym__curly_braces_name_expression = 674, - sym__immediate_curly_braces_name_expression = 675, - sym_identifier = 676, - sym__immediate_identifier = 677, - sym__ident = 678, - sym__let_operator = 679, - sym__assignment_variable = 680, - sym__let_assignment = 681, - sym_let_statement = 682, - sym__const_assignment = 683, - sym_const_statement = 684, - sym__let_heredoc = 685, - sym__let_heredoc_parameter = 686, - sym_option_name = 687, - sym_no_option = 688, - sym_inv_option = 689, - sym_default_option = 690, - sym__set_option = 691, - sym__set_operator = 692, - sym__set_rhs = 693, - sym_set_item = 694, - sym_set_statement = 695, - sym_setlocal_statement = 696, - sym_unlet_statement = 697, - sym_call_statement = 698, - sym_echo_statement = 699, - sym_echon_statement = 700, - sym_echohl_statement = 701, - sym_echomsg_statement = 702, - sym_echoerr_statement = 703, - sym_execute_statement = 704, - sym_silent_statement = 705, - sym_vertical_statement = 706, - sym_topleft_statement = 707, - sym_botright_statement = 708, - sym_aboveleft_statement = 709, - sym_belowright_statement = 710, - sym_user_command = 711, - sym_command_argument = 712, - sym_function_definition = 713, - sym_function_declaration = 714, - sym_parameters = 715, - sym_default_parameter = 716, - sym_bang = 717, - sym_range_statement = 718, - sym__range = 719, - sym__range_explicit = 720, - sym__range_marker = 721, - sym_current_line = 722, - sym_next_line = 723, - sym_last_line = 724, - sym_previous_pattern = 725, - sym_register_statement = 726, - sym_map_statement = 727, - sym__map_definition = 728, - sym__keycode_in = 729, - sym__immediate_keycode = 730, - sym_keycode = 731, - sym__map_lhs = 732, - sym__map_rhs_statement = 733, - sym__map_rhs = 734, - sym__sign_name = 735, - sym__sign_define_arg_text = 736, - sym__sign_define_argument = 737, - sym__sign_define = 738, - sym__sign_undefine = 739, - sym__sign_list = 740, - sym__sign_place_place_argument = 741, - sym__sign_place_place = 742, - sym__sign_place_list_argument = 743, - aux_sym__sign_place_list = 744, - sym__sign_place = 745, - sym__sign_unplace_cursor_argument = 746, - sym__sign_unplace_cursor = 747, - sym__sign_unplace_id_argument = 748, - sym__sign_unplace_id = 749, - sym__sign_unplace = 750, - sym__sign_jump_argument = 751, - sym__sign_jump = 752, - sym_sign_statement = 753, - sym__variable = 754, - sym__expression = 755, - sym_ternary_expression = 756, - sym_match_case = 757, - sym_binary_operation = 758, - sym_unary_operation = 759, - sym_list = 760, - sym_list_assignment = 761, - sym_index_expression = 762, - sym_slice_expression = 763, - sym_field_expression = 764, - sym_call_expression = 765, - sym_eval_statement = 766, - sym__method_call_expression = 767, - sym_method_expression = 768, - sym_filename = 769, - sym_pattern_multi = 770, - aux_sym__pattern_ordinary_atom = 771, - sym__pattern_atom = 772, - sym__pattern_piece = 773, - aux_sym__pattern_concat = 774, - sym__pattern_branch = 775, - sym_pattern = 776, - sym_env_variable = 777, - sym_option = 778, - sym_dictionnary_entry = 779, - sym_dictionnary = 780, - sym__literal_dictionary_entry = 781, - sym_literal_dictionary = 782, - sym_lambda_expression = 783, - sym__immediate_lambda_expression = 784, - sym__plus_plus_opt_bad = 785, - sym_plus_plus_opt = 786, - aux_sym__plus_cmd_arg = 787, - sym__plus_cmd_number = 788, - sym__plus_cmd_command = 789, - sym__plus_cmd_pattern = 790, - sym_plus_cmd = 791, - sym_au_event_list = 792, - sym__augroup_name = 793, - sym__autocmd_pattern = 794, - sym__autocmd_command = 795, - sym__autocmd_define = 796, - sym__autocmd_remove = 797, - sym__autocmd_list = 798, - sym_autocmd_statement = 799, - sym_augroup_statement = 800, - sym__command_attribute_completion_behavior = 801, - sym__command_attribute_address_behavior = 802, - sym__command_attribute_nargs_value = 803, - sym__command_attribute_range_value = 804, - sym_command_attribute = 805, - sym_command_statement = 806, - sym_comclear_statement = 807, - sym_delcommand_statement = 808, - sym__hl_body_link = 809, - sym__hl_body_clear = 810, - sym__hl_body_none = 811, - sym__hl_attr_list = 812, - sym__hl_key_cterm = 813, - aux_sym__hl_term_list = 814, - sym__hl_key_start_stop = 815, - sym__hl_key_ctermfg_ctermbg = 816, - sym__hl_key_gui = 817, - sym__hl_quoted_name = 818, - sym_color = 819, - sym__hl_key_gui_color = 820, - sym_font = 821, - sym__hl_key_font = 822, - sym__hl_key_blend = 823, - sym_hl_attribute = 824, - sym__hl_body_keys = 825, - sym__hl_body = 826, - sym_highlight_statement = 827, - sym__syn_enable = 828, - sym__syn_case = 829, - sym__syn_spell = 830, - sym__syn_foldlevel = 831, - sym__syn_iskeyword = 832, - sym__syn_conceal = 833, - sym__syn_hl_pattern = 834, - sym_hl_groups = 835, - sym__syn_arguments_keyword = 836, - sym__syn_arguments_match = 837, - sym__syn_arguments_region = 838, - sym__syn_arguments_cluster = 839, - sym__syn_pattern_offset = 840, - sym__syn_keyword = 841, - sym__syn_match = 842, - sym__syn_region_start = 843, - sym__syn_region_skip = 844, - sym__syn_region_end = 845, - sym__syn_region = 846, - sym__syn_cluster = 847, - sym__syn_include = 848, - sym__syn_sync_lines = 849, - sym__syn_sync = 850, - sym__syn_list = 851, - sym__syn_clear = 852, - sym_syntax_statement = 853, - sym_edit_statement = 854, - sym_enew_statement = 855, - sym_find_statement = 856, - sym_ex_statement = 857, - sym_visual_statement = 858, - sym_view_statement = 859, - aux_sym__statement_repeat1 = 860, - aux_sym_unknown_builtin_statement_repeat1 = 861, - aux_sym_filetypes_repeat1 = 862, - aux_sym_runtime_statement_repeat1 = 863, - aux_sym_script_repeat1 = 864, - aux_sym_if_statement_repeat1 = 865, - aux_sym_try_statement_repeat1 = 866, - aux_sym__bang_filter_command_argument_repeat1 = 867, - aux_sym__bang_filter_command_repeat1 = 868, - aux_sym_identifier_repeat1 = 869, - aux_sym_let_statement_repeat1 = 870, - aux_sym__let_heredoc_repeat1 = 871, - aux_sym_set_statement_repeat1 = 872, - aux_sym_unlet_statement_repeat1 = 873, - aux_sym_function_definition_repeat1 = 874, - aux_sym_parameters_repeat1 = 875, - aux_sym_parameters_repeat2 = 876, - aux_sym_map_statement_repeat1 = 877, - aux_sym__map_lhs_repeat1 = 878, - aux_sym__map_rhs_statement_repeat1 = 879, - aux_sym__map_rhs_repeat1 = 880, - aux_sym__sign_define_repeat1 = 881, - aux_sym__sign_place_place_repeat1 = 882, - aux_sym__sign_unplace_id_repeat1 = 883, - aux_sym__sign_jump_repeat1 = 884, - aux_sym_list_repeat1 = 885, - aux_sym_filename_repeat1 = 886, - aux_sym__pattern_ordinary_atom_repeat1 = 887, - aux_sym__pattern_branch_repeat1 = 888, - aux_sym_pattern_repeat1 = 889, - aux_sym_dictionnary_repeat1 = 890, - aux_sym_literal_dictionary_repeat1 = 891, - aux_sym_au_event_list_repeat1 = 892, - aux_sym__autocmd_pattern_repeat1 = 893, - aux_sym_command_statement_repeat1 = 894, - aux_sym__hl_attr_list_repeat1 = 895, - aux_sym__hl_body_keys_repeat1 = 896, - aux_sym_hl_groups_repeat1 = 897, - aux_sym__syn_keyword_repeat1 = 898, - aux_sym__syn_keyword_repeat2 = 899, - aux_sym__syn_match_repeat1 = 900, - aux_sym__syn_match_repeat2 = 901, - aux_sym__syn_region_repeat1 = 902, - aux_sym__syn_region_repeat2 = 903, - aux_sym__syn_cluster_repeat1 = 904, - aux_sym__syn_sync_repeat1 = 905, - aux_sym_edit_statement_repeat1 = 906, - aux_sym_edit_statement_repeat2 = 907, - alias_sym_arguments = 908, - alias_sym_augroup_name = 909, - alias_sym_body = 910, - alias_sym_file = 911, - alias_sym_filenames = 912, - alias_sym_filter_command = 913, - alias_sym_name = 914, - alias_sym_range = 915, + anon_sym_QMARK_QMARK = 290, + anon_sym_POUND = 291, + anon_sym_PIPE_PIPE = 292, + anon_sym_AMP_AMP = 293, + anon_sym_DASH = 294, + anon_sym_DOT_DOT = 295, + anon_sym_EQ_EQ = 296, + anon_sym_BANG_EQ = 297, + anon_sym_GT2 = 298, + anon_sym_GT_EQ = 299, + anon_sym_LT_EQ = 300, + anon_sym_EQ_TILDE = 301, + anon_sym_BANG_TILDE = 302, + anon_sym_is = 303, + anon_sym_isnot = 304, + anon_sym_BANG2 = 305, + sym_float_literal = 306, + sym_integer_literal = 307, + anon_sym_LBRACK = 308, + anon_sym_RBRACK = 309, + anon_sym_LPAREN2 = 310, + anon_sym_DASH_GT = 311, + aux_sym_filename_token1 = 312, + aux_sym_filename_token2 = 313, + aux_sym_filename_token3 = 314, + aux_sym_filename_token4 = 315, + aux_sym_filename_token5 = 316, + aux_sym_filename_token6 = 317, + aux_sym_filename_token7 = 318, + aux_sym_filename_token8 = 319, + aux_sym_pattern_multi_token1 = 320, + aux_sym_pattern_multi_token2 = 321, + aux_sym_pattern_multi_token3 = 322, + aux_sym__pattern_ordinary_atom_token1 = 323, + aux_sym__pattern_ordinary_atom_token2 = 324, + anon_sym_BSLASH_LPAREN = 325, + anon_sym_BSLASH_RPAREN = 326, + anon_sym_BSLASH_PERCENT_LPAREN = 327, + anon_sym_BSLASHz_LPAREN = 328, + sym_register = 329, + sym_literal_key = 330, + anon_sym_POUND_LBRACE = 331, + anon_sym_keep = 332, + anon_sym_drop = 333, + anon_sym_PLUS_PLUS = 334, + anon_sym_ff = 335, + anon_sym_fileformat = 336, + anon_sym_enc = 337, + anon_sym_encoding = 338, + anon_sym_bin = 339, + anon_sym_binary = 340, + anon_sym_nobin = 341, + anon_sym_nobinary = 342, + anon_sym_bad = 343, + anon_sym_edit = 344, + aux_sym__plus_cmd_arg_token1 = 345, + sym_au_event = 346, + aux_sym__autocmd_pattern_token1 = 347, + sym_au_once = 348, + sym_au_nested = 349, + sym_command_name = 350, + anon_sym_arglist = 351, + anon_sym_augroup = 352, + anon_sym_buffer2 = 353, + anon_sym_behave = 354, + anon_sym_color = 355, + anon_sym_command = 356, + anon_sym_compiler = 357, + anon_sym_dir = 358, + anon_sym_environment = 359, + anon_sym_even = 360, + anon_sym_expression = 361, + anon_sym_file2 = 362, + anon_sym_file_in_path = 363, + anon_sym_filetype = 364, + anon_sym_function = 365, + anon_sym_help = 366, + anon_sym_highlight = 367, + anon_sym_history = 368, + anon_sym_local = 369, + anon_sym_lua = 370, + anon_sym_mapclear = 371, + anon_sym_mapping = 372, + anon_sym_menu = 373, + anon_sym_messages = 374, + anon_sym_option = 375, + anon_sym_packadd = 376, + anon_sym_shellcmd = 377, + anon_sym_sign = 378, + anon_sym_syntax = 379, + anon_sym_syntime = 380, + anon_sym_tag = 381, + anon_sym_tag_listfiles = 382, + anon_sym_user = 383, + anon_sym_var = 384, + anon_sym_custom = 385, + anon_sym_COMMA2 = 386, + anon_sym_customlist = 387, + anon_sym_lines = 388, + anon_sym_arguments = 389, + anon_sym_buffers = 390, + anon_sym_loaded_buffers = 391, + anon_sym_windows = 392, + anon_sym_tabs = 393, + anon_sym_quickfix = 394, + anon_sym_other = 395, + aux_sym__command_attribute_nargs_value_token1 = 396, + aux_sym__command_attribute_nargs_value_token2 = 397, + anon_sym_PERCENT2 = 398, + anon_sym_DASHnargs = 399, + anon_sym_DASHcomplete = 400, + anon_sym_DASHrange = 401, + anon_sym_DASHcount = 402, + anon_sym_DASHaddr = 403, + anon_sym_DASHbang = 404, + anon_sym_DASHbar = 405, + anon_sym_DASHregister = 406, + anon_sym_DASHbuffer = 407, + anon_sym_DASHkeepscript = 408, + aux_sym_command_statement_token1 = 409, + sym_hl_group = 410, + anon_sym_link = 411, + anon_sym_clear = 412, + anon_sym_NONE = 413, + sym__hl_none = 414, + anon_sym_bold = 415, + anon_sym_underline = 416, + anon_sym_undercurl = 417, + anon_sym_underdouble = 418, + anon_sym_underdotted = 419, + anon_sym_underdashed = 420, + anon_sym_strikethrough = 421, + anon_sym_reverse = 422, + anon_sym_inverse = 423, + anon_sym_italic = 424, + anon_sym_standout = 425, + anon_sym_nocombine = 426, + anon_sym_term = 427, + anon_sym_cterm = 428, + aux_sym__hl_term_list_token1 = 429, + anon_sym_start = 430, + anon_sym_stop = 431, + sym__hl_color_nr = 432, + anon_sym_ctermfg = 433, + anon_sym_ctermbg = 434, + anon_sym_gui = 435, + anon_sym_SQUOTE = 436, + aux_sym__hl_quoted_name_token1 = 437, + anon_sym_SQUOTE2 = 438, + anon_sym_bg = 439, + anon_sym_background = 440, + anon_sym_fg = 441, + anon_sym_foreground = 442, + aux_sym_color_token1 = 443, + aux_sym_color_token2 = 444, + anon_sym_guifg = 445, + anon_sym_guibg = 446, + anon_sym_guisp = 447, + aux_sym_font_token1 = 448, + anon_sym_font = 449, + anon_sym_blend = 450, + anon_sym_enable = 451, + anon_sym_reset = 452, + anon_sym_case = 453, + anon_sym_match = 454, + anon_sym_ignore = 455, + anon_sym_spell = 456, + anon_sym_toplevel = 457, + anon_sym_notoplevel = 458, + anon_sym_foldlevel = 459, + anon_sym_minimum = 460, + anon_sym_iskeyword = 461, + aux_sym__syn_iskeyword_token1 = 462, + anon_sym_conceal = 463, + anon_sym_cchar = 464, + anon_sym_contained = 465, + anon_sym_containedin = 466, + anon_sym_nextgroup = 467, + anon_sym_transparent = 468, + anon_sym_skipwhite = 469, + anon_sym_skipnl = 470, + anon_sym_skipempty = 471, + anon_sym_contains = 472, + anon_sym_fold = 473, + anon_sym_display = 474, + anon_sym_extend = 475, + anon_sym_keepend = 476, + anon_sym_excludenl = 477, + anon_sym_matchgroup = 478, + anon_sym_oneline = 479, + anon_sym_concealends = 480, + anon_sym_add = 481, + anon_sym_remove = 482, + anon_sym_ms = 483, + anon_sym_me = 484, + anon_sym_hs = 485, + anon_sym_he = 486, + anon_sym_rs = 487, + anon_sym_re = 488, + anon_sym_lc = 489, + aux_sym__syn_pattern_offset_token1 = 490, + aux_sym__syn_pattern_offset_token2 = 491, + anon_sym_keyword = 492, + aux_sym__syn_keyword_token1 = 493, + anon_sym_skip = 494, + anon_sym_end = 495, + anon_sym_region = 496, + anon_sym_cluster = 497, + anon_sym_include = 498, + anon_sym_minlines = 499, + anon_sym_maxlines = 500, + aux_sym__syn_sync_lines_token1 = 501, + anon_sym_sync = 502, + anon_sym_linebreaks = 503, + anon_sym_fromstart = 504, + anon_sym_ccomment = 505, + anon_sym_lines2 = 506, + anon_sym_grouphere = 507, + anon_sym_groupthere = 508, + anon_sym_linecont = 509, + sym__no = 510, + sym__inv = 511, + sym__newline_or_pipe = 512, + sym__line_continuation = 513, + sym__script_heredoc_marker = 514, + sym__let_heredoc_marker = 515, + sym__heredoc_end = 516, + sym__separator_first = 517, + sym__separator = 518, + sym__scope_dict = 519, + sym_scope = 520, + sym_string_literal = 521, + sym_comment = 522, + sym_line_continuation_comment = 523, + sym__bang_filter = 524, + sym__function = 525, + sym__endfunction = 526, + sym__for = 527, + sym__endfor = 528, + sym__while = 529, + sym__endwhile = 530, + sym__if = 531, + sym__elseif = 532, + sym__else = 533, + sym__endif = 534, + sym__try = 535, + sym__catch = 536, + sym__cnext = 537, + sym__cprevious = 538, + sym__cNext = 539, + sym__finally = 540, + sym__endtry = 541, + sym__const = 542, + sym__normal = 543, + sym__return = 544, + sym__perl = 545, + sym__lua = 546, + sym__ruby = 547, + sym__python = 548, + sym__throw = 549, + sym__execute = 550, + sym__autocmd = 551, + sym__silent = 552, + sym__echo = 553, + sym__echon = 554, + sym__echohl = 555, + sym__echomsg = 556, + sym__echoerr = 557, + sym__map = 558, + sym__nmap = 559, + sym__vmap = 560, + sym__xmap = 561, + sym__smap = 562, + sym__omap = 563, + sym__imap = 564, + sym__lmap = 565, + sym__cmap = 566, + sym__tmap = 567, + sym__noremap = 568, + sym__nnoremap = 569, + sym__vnoremap = 570, + sym__xnoremap = 571, + sym__snoremap = 572, + sym__onoremap = 573, + sym__inoremap = 574, + sym__lnoremap = 575, + sym__cnoremap = 576, + sym__tnoremap = 577, + sym__augroup = 578, + sym__highlight = 579, + sym__default = 580, + sym__syntax = 581, + sym__set = 582, + sym__setlocal = 583, + sym__setfiletype = 584, + sym__browse = 585, + sym__options = 586, + sym__startinsert = 587, + sym__stopinsert = 588, + sym__scriptencoding = 589, + sym__source = 590, + sym__global = 591, + sym__colorscheme = 592, + sym__command = 593, + sym__comclear = 594, + sym__delcommand = 595, + sym__runtime = 596, + sym__wincmd = 597, + sym__sign = 598, + sym__filetype = 599, + sym__let = 600, + sym__unlet = 601, + sym__call = 602, + sym__break = 603, + sym__continue = 604, + sym__vertical = 605, + sym__leftabove = 606, + sym__aboveleft = 607, + sym__rightbelow = 608, + sym__belowright = 609, + sym__topleft = 610, + sym__botright = 611, + sym__edit = 612, + sym__enew = 613, + sym__find = 614, + sym__ex = 615, + sym__visual = 616, + sym__view = 617, + sym__eval = 618, + sym_unknown_command_name = 619, + sym_script_file = 620, + sym__cmd_separator = 621, + aux_sym__separated_statements = 622, + sym__statement = 623, + sym_unknown_builtin_statement = 624, + sym_return_statement = 625, + sym_break_statement = 626, + sym_continue_statement = 627, + sym_scope_dict = 628, + sym_normal_statement = 629, + sym__filetype_immediate = 630, + sym_filetypes = 631, + sym_setfiletype_statement = 632, + sym_options_statement = 633, + sym_startinsert_statement = 634, + sym_stopinsert_statement = 635, + sym__immediate_file_format = 636, + sym_encoding = 637, + sym__immediate_encoding = 638, + sym_scriptencoding_statement = 639, + sym_cnext_statement = 640, + sym_cprevious_statement = 641, + sym__runtime_where = 642, + sym_runtime_statement = 643, + sym_wincmd_statement = 644, + sym_source_statement = 645, + sym_global_statement = 646, + sym__filetype_state = 647, + sym__filetype_enable = 648, + sym__filetype_detect = 649, + sym__filetype_plugin = 650, + sym__filetype_indent = 651, + sym_filetype_statement = 652, + sym_colorscheme_statement = 653, + sym_lua_statement = 654, + sym_ruby_statement = 655, + sym_python_statement = 656, + sym_perl_statement = 657, + sym_script = 658, + sym_for_loop = 659, + sym_while_loop = 660, + sym_if_statement = 661, + sym_elseif_statement = 662, + sym_else_statement = 663, + sym_try_statement = 664, + sym__au_pattern = 665, + sym_catch_statement = 666, + sym_finally_statement = 667, + sym_throw_statement = 668, + sym__bang_filter_bangs = 669, + sym__bang_filter_command_argument = 670, + sym__bang_filter_command = 671, + sym_bang_filter_statement = 672, + sym_scoped_identifier = 673, + sym_argument = 674, + sym__curly_braces_name_expression = 675, + sym__immediate_curly_braces_name_expression = 676, + sym_identifier = 677, + sym__immediate_identifier = 678, + sym__ident = 679, + sym__let_operator = 680, + sym__assignment_variable = 681, + sym__let_assignment = 682, + sym_let_statement = 683, + sym__const_assignment = 684, + sym_const_statement = 685, + sym__let_heredoc = 686, + sym__let_heredoc_parameter = 687, + sym_option_name = 688, + sym_no_option = 689, + sym_inv_option = 690, + sym_default_option = 691, + sym__set_option = 692, + sym__set_operator = 693, + sym__set_rhs = 694, + sym_set_item = 695, + sym_set_statement = 696, + sym_setlocal_statement = 697, + sym_unlet_statement = 698, + sym_call_statement = 699, + sym_echo_statement = 700, + sym_echon_statement = 701, + sym_echohl_statement = 702, + sym_echomsg_statement = 703, + sym_echoerr_statement = 704, + sym_execute_statement = 705, + sym_silent_statement = 706, + sym_vertical_statement = 707, + sym_topleft_statement = 708, + sym_botright_statement = 709, + sym_aboveleft_statement = 710, + sym_belowright_statement = 711, + sym_user_command = 712, + sym_command_argument = 713, + sym_function_definition = 714, + sym_function_declaration = 715, + sym_parameters = 716, + sym_default_parameter = 717, + sym_bang = 718, + sym_range_statement = 719, + sym__range = 720, + sym__range_explicit = 721, + sym__range_marker = 722, + sym_current_line = 723, + sym_next_line = 724, + sym_last_line = 725, + sym_previous_pattern = 726, + sym_register_statement = 727, + sym_map_statement = 728, + sym__map_definition = 729, + sym__keycode_in = 730, + sym__immediate_keycode = 731, + sym_keycode = 732, + sym__map_lhs = 733, + sym__map_rhs_statement = 734, + sym__map_rhs = 735, + sym__sign_name = 736, + sym__sign_define_arg_text = 737, + sym__sign_define_argument = 738, + sym__sign_define = 739, + sym__sign_undefine = 740, + sym__sign_list = 741, + sym__sign_place_place_argument = 742, + sym__sign_place_place = 743, + sym__sign_place_list_argument = 744, + aux_sym__sign_place_list = 745, + sym__sign_place = 746, + sym__sign_unplace_cursor_argument = 747, + sym__sign_unplace_cursor = 748, + sym__sign_unplace_id_argument = 749, + sym__sign_unplace_id = 750, + sym__sign_unplace = 751, + sym__sign_jump_argument = 752, + sym__sign_jump = 753, + sym_sign_statement = 754, + sym__variable = 755, + sym__expression = 756, + sym_ternary_expression = 757, + sym_falsy_expression = 758, + sym_match_case = 759, + sym_binary_operation = 760, + sym_unary_operation = 761, + sym_list = 762, + sym_list_assignment = 763, + sym_index_expression = 764, + sym_slice_expression = 765, + sym_field_expression = 766, + sym_call_expression = 767, + sym_eval_statement = 768, + sym__method_call_expression = 769, + sym_method_expression = 770, + sym_filename = 771, + sym_pattern_multi = 772, + aux_sym__pattern_ordinary_atom = 773, + sym__pattern_atom = 774, + sym__pattern_piece = 775, + aux_sym__pattern_concat = 776, + sym__pattern_branch = 777, + sym_pattern = 778, + sym_env_variable = 779, + sym_option = 780, + sym_dictionnary_entry = 781, + sym_dictionnary = 782, + sym__literal_dictionary_entry = 783, + sym_literal_dictionary = 784, + sym_lambda_expression = 785, + sym__immediate_lambda_expression = 786, + sym__plus_plus_opt_bad = 787, + sym_plus_plus_opt = 788, + aux_sym__plus_cmd_arg = 789, + sym__plus_cmd_number = 790, + sym__plus_cmd_command = 791, + sym__plus_cmd_pattern = 792, + sym_plus_cmd = 793, + sym_au_event_list = 794, + sym__augroup_name = 795, + sym__autocmd_pattern = 796, + sym__autocmd_command = 797, + sym__autocmd_define = 798, + sym__autocmd_remove = 799, + sym__autocmd_list = 800, + sym_autocmd_statement = 801, + sym_augroup_statement = 802, + sym__command_attribute_completion_behavior = 803, + sym__command_attribute_address_behavior = 804, + sym__command_attribute_nargs_value = 805, + sym__command_attribute_range_value = 806, + sym_command_attribute = 807, + sym_command_statement = 808, + sym_comclear_statement = 809, + sym_delcommand_statement = 810, + sym__hl_body_link = 811, + sym__hl_body_clear = 812, + sym__hl_body_none = 813, + sym__hl_attr_list = 814, + sym__hl_key_cterm = 815, + aux_sym__hl_term_list = 816, + sym__hl_key_start_stop = 817, + sym__hl_key_ctermfg_ctermbg = 818, + sym__hl_key_gui = 819, + sym__hl_quoted_name = 820, + sym_color = 821, + sym__hl_key_gui_color = 822, + sym_font = 823, + sym__hl_key_font = 824, + sym__hl_key_blend = 825, + sym_hl_attribute = 826, + sym__hl_body_keys = 827, + sym__hl_body = 828, + sym_highlight_statement = 829, + sym__syn_enable = 830, + sym__syn_case = 831, + sym__syn_spell = 832, + sym__syn_foldlevel = 833, + sym__syn_iskeyword = 834, + sym__syn_conceal = 835, + sym__syn_hl_pattern = 836, + sym_hl_groups = 837, + sym__syn_arguments_keyword = 838, + sym__syn_arguments_match = 839, + sym__syn_arguments_region = 840, + sym__syn_arguments_cluster = 841, + sym__syn_pattern_offset = 842, + sym__syn_keyword = 843, + sym__syn_match = 844, + sym__syn_region_start = 845, + sym__syn_region_skip = 846, + sym__syn_region_end = 847, + sym__syn_region = 848, + sym__syn_cluster = 849, + sym__syn_include = 850, + sym__syn_sync_lines = 851, + sym__syn_sync = 852, + sym__syn_list = 853, + sym__syn_clear = 854, + sym_syntax_statement = 855, + sym_edit_statement = 856, + sym_enew_statement = 857, + sym_find_statement = 858, + sym_ex_statement = 859, + sym_visual_statement = 860, + sym_view_statement = 861, + aux_sym__statement_repeat1 = 862, + aux_sym_unknown_builtin_statement_repeat1 = 863, + aux_sym_filetypes_repeat1 = 864, + aux_sym_runtime_statement_repeat1 = 865, + aux_sym_script_repeat1 = 866, + aux_sym_if_statement_repeat1 = 867, + aux_sym_try_statement_repeat1 = 868, + aux_sym__bang_filter_command_argument_repeat1 = 869, + aux_sym__bang_filter_command_repeat1 = 870, + aux_sym_identifier_repeat1 = 871, + aux_sym_let_statement_repeat1 = 872, + aux_sym__let_heredoc_repeat1 = 873, + aux_sym_set_statement_repeat1 = 874, + aux_sym_unlet_statement_repeat1 = 875, + aux_sym_function_definition_repeat1 = 876, + aux_sym_parameters_repeat1 = 877, + aux_sym_parameters_repeat2 = 878, + aux_sym_map_statement_repeat1 = 879, + aux_sym__map_lhs_repeat1 = 880, + aux_sym__map_rhs_statement_repeat1 = 881, + aux_sym__map_rhs_repeat1 = 882, + aux_sym__sign_define_repeat1 = 883, + aux_sym__sign_place_place_repeat1 = 884, + aux_sym__sign_unplace_id_repeat1 = 885, + aux_sym__sign_jump_repeat1 = 886, + aux_sym_list_repeat1 = 887, + aux_sym_filename_repeat1 = 888, + aux_sym__pattern_ordinary_atom_repeat1 = 889, + aux_sym__pattern_branch_repeat1 = 890, + aux_sym_pattern_repeat1 = 891, + aux_sym_dictionnary_repeat1 = 892, + aux_sym_literal_dictionary_repeat1 = 893, + aux_sym_au_event_list_repeat1 = 894, + aux_sym__autocmd_pattern_repeat1 = 895, + aux_sym_command_statement_repeat1 = 896, + aux_sym__hl_attr_list_repeat1 = 897, + aux_sym__hl_body_keys_repeat1 = 898, + aux_sym_hl_groups_repeat1 = 899, + aux_sym__syn_keyword_repeat1 = 900, + aux_sym__syn_keyword_repeat2 = 901, + aux_sym__syn_match_repeat1 = 902, + aux_sym__syn_match_repeat2 = 903, + aux_sym__syn_region_repeat1 = 904, + aux_sym__syn_region_repeat2 = 905, + aux_sym__syn_cluster_repeat1 = 906, + aux_sym__syn_sync_repeat1 = 907, + aux_sym_edit_statement_repeat1 = 908, + aux_sym_edit_statement_repeat2 = 909, + alias_sym_arguments = 910, + alias_sym_augroup_name = 911, + alias_sym_body = 912, + alias_sym_file = 913, + alias_sym_filenames = 914, + alias_sym_filter_command = 915, + alias_sym_name = 916, + alias_sym_range = 917, }; static const char * const ts_symbol_names[] = { @@ -1233,6 +1235,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_STAR2] = "*", [anon_sym_unplace] = "unplace", [anon_sym_jump] = "jump", + [anon_sym_QMARK_QMARK] = "\?\?", [anon_sym_POUND] = "#", [anon_sym_PIPE_PIPE] = "||", [anon_sym_AMP_AMP] = "&&", @@ -1700,6 +1703,7 @@ static const char * const ts_symbol_names[] = { [sym__variable] = "_variable", [sym__expression] = "_expression", [sym_ternary_expression] = "ternary_expression", + [sym_falsy_expression] = "falsy_expression", [sym_match_case] = "match_case", [sym_binary_operation] = "binary_operation", [sym_unary_operation] = "unary_operation", @@ -2152,6 +2156,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_STAR2] = anon_sym_STAR, [anon_sym_unplace] = anon_sym_unplace, [anon_sym_jump] = anon_sym_jump, + [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, [anon_sym_POUND] = anon_sym_POUND, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, @@ -2619,6 +2624,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__variable] = sym__variable, [sym__expression] = sym__expression, [sym_ternary_expression] = sym_ternary_expression, + [sym_falsy_expression] = sym_falsy_expression, [sym_match_case] = sym_match_case, [sym_binary_operation] = sym_binary_operation, [sym_unary_operation] = sym_unary_operation, @@ -3941,6 +3947,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_QMARK_QMARK] = { + .visible = true, + .named = false, + }, [anon_sym_POUND] = { .visible = true, .named = false, @@ -5809,6 +5819,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_falsy_expression] = { + .visible = true, + .named = true, + }, [sym_match_case] = { .visible = true, .named = true, @@ -7083,58 +7097,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 4, + [5] = 2, [6] = 3, [7] = 7, - [8] = 2, - [9] = 7, + [8] = 7, + [9] = 4, [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, [15] = 15, - [16] = 16, - [17] = 14, + [16] = 10, + [17] = 17, [18] = 18, [19] = 19, [20] = 20, [21] = 21, [22] = 22, - [23] = 14, - [24] = 24, - [25] = 24, - [26] = 21, + [23] = 23, + [24] = 22, + [25] = 25, + [26] = 20, [27] = 27, - [28] = 28, + [28] = 10, [29] = 29, - [30] = 14, - [31] = 14, - [32] = 14, - [33] = 14, - [34] = 20, - [35] = 18, + [30] = 30, + [31] = 10, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 10, [36] = 36, [37] = 37, - [38] = 36, + [38] = 38, [39] = 39, - [40] = 40, - [41] = 41, - [42] = 42, - [43] = 43, - [44] = 19, - [45] = 45, - [46] = 45, - [47] = 28, - [48] = 48, + [40] = 10, + [41] = 25, + [42] = 30, + [43] = 10, + [44] = 18, + [45] = 32, + [46] = 10, + [47] = 47, + [48] = 37, [49] = 49, - [50] = 42, - [51] = 39, - [52] = 14, - [53] = 29, - [54] = 22, - [55] = 43, - [56] = 41, + [50] = 38, + [51] = 33, + [52] = 21, + [53] = 49, + [54] = 23, + [55] = 34, + [56] = 27, [57] = 57, [58] = 57, [59] = 59, @@ -7146,56 +7160,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [65] = 65, [66] = 66, [67] = 67, - [68] = 61, + [68] = 68, [69] = 69, [70] = 65, - [71] = 67, - [72] = 72, + [71] = 71, + [72] = 61, [73] = 73, - [74] = 72, + [74] = 74, [75] = 75, - [76] = 73, + [76] = 76, [77] = 77, - [78] = 63, - [79] = 79, - [80] = 80, - [81] = 79, - [82] = 82, - [83] = 83, - [84] = 69, - [85] = 83, - [86] = 80, - [87] = 77, - [88] = 62, - [89] = 66, - [90] = 82, - [91] = 64, + [78] = 78, + [79] = 73, + [80] = 74, + [81] = 64, + [82] = 67, + [83] = 75, + [84] = 62, + [85] = 77, + [86] = 63, + [87] = 71, + [88] = 78, + [89] = 69, + [90] = 66, + [91] = 76, [92] = 92, [93] = 92, [94] = 94, [95] = 95, [96] = 96, [97] = 97, - [98] = 94, + [98] = 96, [99] = 95, - [100] = 96, - [101] = 101, + [100] = 94, + [101] = 97, [102] = 102, - [103] = 102, - [104] = 97, - [105] = 101, - [106] = 101, - [107] = 102, - [108] = 102, + [103] = 103, + [104] = 103, + [105] = 102, + [106] = 103, + [107] = 103, + [108] = 103, [109] = 102, - [110] = 101, - [111] = 101, + [110] = 102, + [111] = 103, [112] = 102, - [113] = 101, + [113] = 102, [114] = 102, - [115] = 101, + [115] = 103, [116] = 102, - [117] = 101, + [117] = 103, [118] = 118, [119] = 119, [120] = 120, @@ -7209,8 +7223,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [128] = 124, [129] = 120, [130] = 130, - [131] = 130, - [132] = 121, + [131] = 121, + [132] = 130, [133] = 133, [134] = 133, [135] = 135, @@ -7219,134 +7233,134 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [138] = 138, [139] = 138, [140] = 140, - [141] = 141, + [141] = 140, [142] = 142, [143] = 143, - [144] = 143, - [145] = 143, - [146] = 143, - [147] = 147, + [144] = 144, + [145] = 140, + [146] = 146, + [147] = 140, [148] = 148, - [149] = 143, - [150] = 150, - [151] = 151, - [152] = 152, + [149] = 149, + [150] = 142, + [151] = 140, + [152] = 140, [153] = 153, [154] = 154, - [155] = 155, + [155] = 143, [156] = 156, - [157] = 154, + [157] = 157, [158] = 158, - [159] = 155, + [159] = 159, [160] = 160, - [161] = 161, - [162] = 143, - [163] = 143, - [164] = 156, - [165] = 143, - [166] = 147, - [167] = 156, - [168] = 156, - [169] = 160, + [161] = 140, + [162] = 146, + [163] = 163, + [164] = 140, + [165] = 165, + [166] = 142, + [167] = 143, + [168] = 154, + [169] = 169, [170] = 170, - [171] = 171, - [172] = 172, - [173] = 154, - [174] = 161, - [175] = 141, - [176] = 176, - [177] = 171, - [178] = 150, - [179] = 170, - [180] = 171, + [171] = 156, + [172] = 146, + [173] = 170, + [174] = 143, + [175] = 175, + [176] = 158, + [177] = 142, + [178] = 170, + [179] = 163, + [180] = 157, [181] = 181, - [182] = 151, - [183] = 148, - [184] = 158, - [185] = 171, - [186] = 140, - [187] = 176, - [188] = 152, - [189] = 153, - [190] = 142, - [191] = 155, - [192] = 171, - [193] = 154, - [194] = 155, + [182] = 169, + [183] = 146, + [184] = 160, + [185] = 181, + [186] = 159, + [187] = 149, + [188] = 153, + [189] = 165, + [190] = 148, + [191] = 170, + [192] = 170, + [193] = 193, + [194] = 144, [195] = 195, [196] = 196, [197] = 197, [198] = 197, - [199] = 199, - [200] = 195, - [201] = 196, - [202] = 181, + [199] = 193, + [200] = 200, + [201] = 201, + [202] = 195, [203] = 195, - [204] = 199, + [204] = 204, [205] = 195, - [206] = 206, - [207] = 207, - [208] = 197, - [209] = 195, - [210] = 196, - [211] = 211, - [212] = 197, - [213] = 196, - [214] = 197, - [215] = 196, - [216] = 206, + [206] = 197, + [207] = 196, + [208] = 196, + [209] = 196, + [210] = 210, + [211] = 201, + [212] = 196, + [213] = 197, + [214] = 195, + [215] = 197, + [216] = 204, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 219, - [222] = 222, - [223] = 206, - [224] = 199, - [225] = 219, - [226] = 199, + [221] = 221, + [222] = 201, + [223] = 223, + [224] = 220, + [225] = 217, + [226] = 226, [227] = 218, - [228] = 228, - [229] = 218, - [230] = 228, - [231] = 222, - [232] = 219, - [233] = 219, - [234] = 234, - [235] = 228, - [236] = 218, + [228] = 204, + [229] = 223, + [230] = 221, + [231] = 210, + [232] = 217, + [233] = 220, + [234] = 217, + [235] = 219, + [236] = 236, [237] = 237, - [238] = 222, - [239] = 234, - [240] = 219, - [241] = 220, - [242] = 237, - [243] = 243, - [244] = 220, - [245] = 245, - [246] = 220, - [247] = 206, - [248] = 207, - [249] = 249, - [250] = 234, - [251] = 228, - [252] = 234, - [253] = 237, - [254] = 222, - [255] = 255, - [256] = 255, - [257] = 237, - [258] = 220, - [259] = 217, - [260] = 218, - [261] = 222, - [262] = 234, - [263] = 237, - [264] = 245, - [265] = 228, + [238] = 217, + [239] = 236, + [240] = 220, + [241] = 226, + [242] = 236, + [243] = 221, + [244] = 204, + [245] = 201, + [246] = 236, + [247] = 221, + [248] = 223, + [249] = 223, + [250] = 219, + [251] = 237, + [252] = 223, + [253] = 253, + [254] = 226, + [255] = 226, + [256] = 219, + [257] = 220, + [258] = 226, + [259] = 259, + [260] = 236, + [261] = 219, + [262] = 262, + [263] = 253, + [264] = 221, + [265] = 220, [266] = 266, [267] = 267, - [268] = 268, + [268] = 266, [269] = 269, [270] = 270, [271] = 271, @@ -7356,920 +7370,920 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [275] = 275, [276] = 276, [277] = 277, - [278] = 274, - [279] = 274, + [278] = 278, + [279] = 279, [280] = 280, [281] = 281, - [282] = 274, - [283] = 272, + [282] = 282, + [283] = 275, [284] = 284, - [285] = 281, - [286] = 268, - [287] = 274, - [288] = 281, - [289] = 274, - [290] = 281, - [291] = 274, + [285] = 285, + [286] = 270, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 285, [292] = 292, [293] = 293, - [294] = 280, - [295] = 293, - [296] = 281, + [294] = 294, + [295] = 269, + [296] = 296, [297] = 297, [298] = 298, [299] = 299, [300] = 300, - [301] = 274, - [302] = 281, - [303] = 274, - [304] = 281, - [305] = 305, - [306] = 274, - [307] = 281, - [308] = 274, - [309] = 305, - [310] = 310, - [311] = 311, + [301] = 296, + [302] = 302, + [303] = 303, + [304] = 300, + [305] = 300, + [306] = 290, + [307] = 303, + [308] = 300, + [309] = 290, + [310] = 289, + [311] = 285, [312] = 312, - [313] = 313, - [314] = 314, - [315] = 310, - [316] = 316, - [317] = 281, - [318] = 318, - [319] = 274, + [313] = 288, + [314] = 266, + [315] = 312, + [316] = 271, + [317] = 272, + [318] = 300, + [319] = 300, [320] = 320, - [321] = 292, - [322] = 266, + [321] = 274, + [322] = 276, [323] = 323, - [324] = 323, - [325] = 313, - [326] = 312, + [324] = 277, + [325] = 325, + [326] = 300, [327] = 327, - [328] = 274, - [329] = 273, - [330] = 284, - [331] = 281, + [328] = 290, + [329] = 277, + [330] = 300, + [331] = 290, [332] = 332, [333] = 333, - [334] = 334, - [335] = 274, - [336] = 336, - [337] = 277, + [334] = 300, + [335] = 290, + [336] = 300, + [337] = 302, [338] = 338, - [339] = 339, - [340] = 292, - [341] = 266, - [342] = 323, - [343] = 343, - [344] = 313, - [345] = 312, - [346] = 293, - [347] = 292, - [348] = 266, - [349] = 349, - [350] = 323, - [351] = 292, - [352] = 267, - [353] = 353, - [354] = 333, - [355] = 313, - [356] = 281, - [357] = 281, - [358] = 281, - [359] = 268, - [360] = 312, - [361] = 299, - [362] = 362, - [363] = 274, - [364] = 281, - [365] = 316, - [366] = 366, - [367] = 276, - [368] = 368, + [339] = 290, + [340] = 277, + [341] = 276, + [342] = 274, + [343] = 300, + [344] = 272, + [345] = 271, + [346] = 266, + [347] = 276, + [348] = 288, + [349] = 274, + [350] = 350, + [351] = 351, + [352] = 272, + [353] = 280, + [354] = 290, + [355] = 300, + [356] = 290, + [357] = 300, + [358] = 290, + [359] = 300, + [360] = 290, + [361] = 300, + [362] = 294, + [363] = 333, + [364] = 271, + [365] = 365, + [366] = 290, + [367] = 367, + [368] = 300, [369] = 369, [370] = 370, - [371] = 371, + [371] = 290, [372] = 372, - [373] = 338, - [374] = 297, - [375] = 332, - [376] = 274, - [377] = 310, - [378] = 281, - [379] = 269, - [380] = 380, - [381] = 316, - [382] = 382, - [383] = 268, + [373] = 373, + [374] = 277, + [375] = 375, + [376] = 276, + [377] = 274, + [378] = 378, + [379] = 272, + [380] = 271, + [381] = 292, + [382] = 266, + [383] = 383, [384] = 384, - [385] = 385, - [386] = 298, - [387] = 387, - [388] = 276, - [389] = 268, - [390] = 390, - [391] = 391, - [392] = 274, - [393] = 393, + [385] = 285, + [386] = 386, + [387] = 293, + [388] = 299, + [389] = 338, + [390] = 332, + [391] = 300, + [392] = 312, + [393] = 290, [394] = 394, - [395] = 312, - [396] = 272, - [397] = 276, - [398] = 313, - [399] = 338, - [400] = 274, - [401] = 310, - [402] = 402, + [395] = 395, + [396] = 378, + [397] = 299, + [398] = 338, + [399] = 300, + [400] = 312, + [401] = 285, + [402] = 290, [403] = 403, [404] = 404, - [405] = 338, - [406] = 281, - [407] = 269, - [408] = 316, - [409] = 276, - [410] = 323, + [405] = 279, + [406] = 406, + [407] = 378, + [408] = 299, + [409] = 338, + [410] = 410, [411] = 411, - [412] = 272, + [412] = 300, [413] = 413, [414] = 414, [415] = 415, - [416] = 416, + [416] = 312, [417] = 417, - [418] = 266, - [419] = 419, - [420] = 420, + [418] = 296, + [419] = 296, + [420] = 290, [421] = 421, - [422] = 316, - [423] = 338, + [422] = 422, + [423] = 423, [424] = 424, [425] = 425, - [426] = 272, - [427] = 274, - [428] = 310, + [426] = 279, + [427] = 427, + [428] = 279, [429] = 429, [430] = 430, - [431] = 281, + [431] = 288, [432] = 432, [433] = 433, [434] = 434, [435] = 435, - [436] = 271, + [436] = 378, [437] = 437, - [438] = 269, - [439] = 439, - [440] = 269, + [438] = 296, + [439] = 378, + [440] = 440, [441] = 441, - [442] = 293, - [443] = 293, - [444] = 444, + [442] = 442, + [443] = 290, + [444] = 279, [445] = 445, [446] = 446, [447] = 447, - [448] = 266, - [449] = 449, + [448] = 448, + [449] = 276, [450] = 450, [451] = 451, [452] = 452, - [453] = 446, - [454] = 437, - [455] = 414, - [456] = 403, - [457] = 402, - [458] = 394, - [459] = 393, - [460] = 391, - [461] = 385, - [462] = 384, - [463] = 382, - [464] = 380, - [465] = 445, - [466] = 372, - [467] = 371, - [468] = 421, - [469] = 334, - [470] = 452, - [471] = 451, - [472] = 311, - [473] = 370, - [474] = 450, - [475] = 369, - [476] = 314, - [477] = 449, - [478] = 368, - [479] = 424, - [480] = 429, - [481] = 366, - [482] = 353, - [483] = 420, - [484] = 430, - [485] = 432, - [486] = 433, - [487] = 419, - [488] = 425, - [489] = 327, - [490] = 444, - [491] = 318, - [492] = 417, - [493] = 300, - [494] = 416, - [495] = 415, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 299, + [457] = 338, + [458] = 288, + [459] = 441, + [460] = 323, + [461] = 351, + [462] = 425, + [463] = 415, + [464] = 455, + [465] = 448, + [466] = 447, + [467] = 442, + [468] = 440, + [469] = 437, + [470] = 435, + [471] = 434, + [472] = 433, + [473] = 432, + [474] = 454, + [475] = 453, + [476] = 430, + [477] = 422, + [478] = 429, + [479] = 445, + [480] = 427, + [481] = 267, + [482] = 423, + [483] = 452, + [484] = 421, + [485] = 417, + [486] = 414, + [487] = 413, + [488] = 411, + [489] = 367, + [490] = 383, + [491] = 287, + [492] = 384, + [493] = 404, + [494] = 403, + [495] = 369, [496] = 320, - [497] = 434, - [498] = 447, - [499] = 435, - [500] = 411, - [501] = 441, - [502] = 439, - [503] = 503, - [504] = 154, - [505] = 155, - [506] = 156, - [507] = 206, - [508] = 508, - [509] = 509, - [510] = 199, - [511] = 511, - [512] = 508, - [513] = 509, - [514] = 154, - [515] = 156, - [516] = 511, - [517] = 155, - [518] = 334, - [519] = 519, - [520] = 520, - [521] = 444, - [522] = 452, - [523] = 449, - [524] = 524, - [525] = 421, - [526] = 450, - [527] = 207, - [528] = 446, - [529] = 451, - [530] = 452, + [497] = 395, + [498] = 394, + [499] = 386, + [500] = 327, + [501] = 370, + [502] = 446, + [503] = 375, + [504] = 451, + [505] = 365, + [506] = 450, + [507] = 373, + [508] = 372, + [509] = 325, + [510] = 510, + [511] = 143, + [512] = 142, + [513] = 146, + [514] = 204, + [515] = 201, + [516] = 516, + [517] = 517, + [518] = 517, + [519] = 516, + [520] = 143, + [521] = 521, + [522] = 146, + [523] = 142, + [524] = 452, + [525] = 446, + [526] = 526, + [527] = 521, + [528] = 210, + [529] = 422, + [530] = 530, [531] = 451, - [532] = 414, - [533] = 445, - [534] = 334, - [535] = 207, - [536] = 207, - [537] = 206, - [538] = 199, - [539] = 539, - [540] = 155, - [541] = 541, - [542] = 542, - [543] = 154, - [544] = 424, - [545] = 156, - [546] = 414, - [547] = 419, - [548] = 435, - [549] = 437, - [550] = 439, - [551] = 402, - [552] = 424, - [553] = 441, - [554] = 554, - [555] = 156, - [556] = 394, - [557] = 311, - [558] = 327, - [559] = 393, - [560] = 560, - [561] = 424, - [562] = 450, - [563] = 154, - [564] = 421, - [565] = 314, - [566] = 433, - [567] = 449, - [568] = 318, - [569] = 446, - [570] = 366, - [571] = 368, - [572] = 320, - [573] = 432, - [574] = 369, - [575] = 429, - [576] = 370, - [577] = 434, - [578] = 155, - [579] = 447, - [580] = 415, - [581] = 416, - [582] = 417, - [583] = 430, - [584] = 444, - [585] = 539, - [586] = 425, - [587] = 391, - [588] = 403, - [589] = 420, - [590] = 371, - [591] = 541, - [592] = 372, - [593] = 445, - [594] = 380, - [595] = 411, - [596] = 382, - [597] = 385, - [598] = 384, - [599] = 206, - [600] = 542, - [601] = 601, - [602] = 602, - [603] = 554, - [604] = 199, + [532] = 453, + [533] = 454, + [534] = 534, + [535] = 454, + [536] = 267, + [537] = 453, + [538] = 452, + [539] = 445, + [540] = 415, + [541] = 450, + [542] = 210, + [543] = 201, + [544] = 210, + [545] = 204, + [546] = 546, + [547] = 425, + [548] = 143, + [549] = 142, + [550] = 146, + [551] = 429, + [552] = 417, + [553] = 325, + [554] = 327, + [555] = 422, + [556] = 142, + [557] = 415, + [558] = 435, + [559] = 455, + [560] = 365, + [561] = 450, + [562] = 445, + [563] = 427, + [564] = 323, + [565] = 423, + [566] = 421, + [567] = 425, + [568] = 568, + [569] = 267, + [570] = 367, + [571] = 369, + [572] = 143, + [573] = 437, + [574] = 370, + [575] = 546, + [576] = 372, + [577] = 430, + [578] = 425, + [579] = 414, + [580] = 440, + [581] = 413, + [582] = 320, + [583] = 146, + [584] = 411, + [585] = 404, + [586] = 441, + [587] = 373, + [588] = 434, + [589] = 375, + [590] = 446, + [591] = 383, + [592] = 384, + [593] = 432, + [594] = 386, + [595] = 394, + [596] = 395, + [597] = 597, + [598] = 433, + [599] = 451, + [600] = 448, + [601] = 403, + [602] = 447, + [603] = 442, + [604] = 201, [605] = 605, - [606] = 207, - [607] = 560, - [608] = 608, - [609] = 609, - [610] = 610, + [606] = 210, + [607] = 607, + [608] = 204, + [609] = 568, + [610] = 210, [611] = 611, - [612] = 609, - [613] = 613, - [614] = 614, - [615] = 609, - [616] = 616, - [617] = 617, - [618] = 617, - [619] = 616, - [620] = 609, + [612] = 612, + [613] = 612, + [614] = 597, + [615] = 615, + [616] = 201, + [617] = 612, + [618] = 618, + [619] = 607, + [620] = 605, [621] = 621, - [622] = 206, - [623] = 614, - [624] = 207, - [625] = 609, + [622] = 612, + [623] = 204, + [624] = 624, + [625] = 612, [626] = 626, - [627] = 199, - [628] = 628, - [629] = 626, - [630] = 630, - [631] = 452, + [627] = 627, + [628] = 325, + [629] = 629, + [630] = 453, + [631] = 367, [632] = 632, - [633] = 320, - [634] = 318, - [635] = 380, - [636] = 314, + [633] = 633, + [634] = 369, + [635] = 635, + [636] = 370, [637] = 327, - [638] = 311, - [639] = 639, - [640] = 366, - [641] = 368, - [642] = 642, + [638] = 638, + [639] = 372, + [640] = 323, + [641] = 373, + [642] = 320, [643] = 643, - [644] = 369, - [645] = 639, + [644] = 632, + [645] = 629, [646] = 646, - [647] = 646, - [648] = 630, - [649] = 370, - [650] = 650, - [651] = 371, + [647] = 647, + [648] = 648, + [649] = 375, + [650] = 629, + [651] = 651, [652] = 652, [653] = 653, - [654] = 372, - [655] = 650, - [656] = 445, + [654] = 383, + [655] = 415, + [656] = 384, [657] = 657, - [658] = 658, - [659] = 659, - [660] = 382, + [658] = 635, + [659] = 386, + [660] = 647, [661] = 661, [662] = 662, [663] = 663, - [664] = 384, - [665] = 665, - [666] = 385, - [667] = 391, - [668] = 668, - [669] = 669, - [670] = 650, - [671] = 393, - [672] = 661, - [673] = 394, - [674] = 402, - [675] = 403, - [676] = 411, - [677] = 414, - [678] = 643, - [679] = 420, - [680] = 419, - [681] = 661, - [682] = 682, - [683] = 425, - [684] = 421, - [685] = 424, - [686] = 417, - [687] = 416, - [688] = 415, - [689] = 689, - [690] = 690, - [691] = 643, - [692] = 643, - [693] = 643, - [694] = 650, - [695] = 447, - [696] = 441, - [697] = 439, - [698] = 444, - [699] = 437, - [700] = 435, - [701] = 434, - [702] = 433, - [703] = 432, - [704] = 430, - [705] = 705, + [664] = 664, + [665] = 422, + [666] = 425, + [667] = 667, + [668] = 394, + [669] = 629, + [670] = 670, + [671] = 395, + [672] = 403, + [673] = 647, + [674] = 647, + [675] = 632, + [676] = 632, + [677] = 653, + [678] = 664, + [679] = 679, + [680] = 404, + [681] = 411, + [682] = 413, + [683] = 414, + [684] = 417, + [685] = 421, + [686] = 686, + [687] = 632, + [688] = 445, + [689] = 423, + [690] = 647, + [691] = 629, + [692] = 446, + [693] = 693, + [694] = 638, + [695] = 695, + [696] = 427, + [697] = 633, + [698] = 698, + [699] = 267, + [700] = 429, + [701] = 430, + [702] = 432, + [703] = 433, + [704] = 704, + [705] = 434, [706] = 706, - [707] = 446, - [708] = 650, - [709] = 429, - [710] = 449, - [711] = 450, - [712] = 661, - [713] = 661, - [714] = 451, - [715] = 334, - [716] = 689, - [717] = 439, - [718] = 718, - [719] = 414, - [720] = 632, - [721] = 721, - [722] = 384, - [723] = 424, - [724] = 724, - [725] = 725, + [707] = 450, + [708] = 435, + [709] = 437, + [710] = 440, + [711] = 441, + [712] = 442, + [713] = 447, + [714] = 448, + [715] = 661, + [716] = 451, + [717] = 698, + [718] = 455, + [719] = 452, + [720] = 454, + [721] = 365, + [722] = 452, + [723] = 327, + [724] = 415, + [725] = 395, [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 652, - [731] = 729, - [732] = 729, - [733] = 690, - [734] = 669, - [735] = 721, - [736] = 421, - [737] = 737, - [738] = 653, - [739] = 739, + [727] = 325, + [728] = 726, + [729] = 450, + [730] = 323, + [731] = 451, + [732] = 320, + [733] = 726, + [734] = 706, + [735] = 670, + [736] = 704, + [737] = 453, + [738] = 726, + [739] = 454, [740] = 740, - [741] = 334, - [742] = 429, - [743] = 728, - [744] = 727, - [745] = 452, - [746] = 746, - [747] = 451, - [748] = 311, - [749] = 430, - [750] = 432, - [751] = 433, - [752] = 450, - [753] = 314, - [754] = 725, - [755] = 449, - [756] = 318, - [757] = 320, - [758] = 724, - [759] = 658, - [760] = 718, - [761] = 434, - [762] = 435, - [763] = 437, - [764] = 729, - [765] = 718, - [766] = 441, - [767] = 447, - [768] = 415, - [769] = 416, - [770] = 417, - [771] = 771, - [772] = 729, - [773] = 657, - [774] = 705, - [775] = 370, - [776] = 369, - [777] = 777, - [778] = 368, - [779] = 542, - [780] = 729, - [781] = 718, - [782] = 729, - [783] = 740, - [784] = 444, - [785] = 425, - [786] = 419, - [787] = 420, - [788] = 739, - [789] = 411, - [790] = 403, - [791] = 402, - [792] = 394, - [793] = 393, - [794] = 682, - [795] = 659, - [796] = 662, - [797] = 726, - [798] = 366, - [799] = 446, - [800] = 382, - [801] = 718, - [802] = 327, - [803] = 718, - [804] = 665, - [805] = 380, - [806] = 729, + [741] = 740, + [742] = 365, + [743] = 267, + [744] = 422, + [745] = 367, + [746] = 369, + [747] = 370, + [748] = 372, + [749] = 373, + [750] = 455, + [751] = 726, + [752] = 375, + [753] = 446, + [754] = 383, + [755] = 384, + [756] = 386, + [757] = 448, + [758] = 447, + [759] = 394, + [760] = 442, + [761] = 652, + [762] = 762, + [763] = 763, + [764] = 441, + [765] = 440, + [766] = 437, + [767] = 435, + [768] = 434, + [769] = 433, + [770] = 432, + [771] = 430, + [772] = 429, + [773] = 773, + [774] = 425, + [775] = 740, + [776] = 726, + [777] = 445, + [778] = 427, + [779] = 423, + [780] = 421, + [781] = 726, + [782] = 662, + [783] = 663, + [784] = 417, + [785] = 414, + [786] = 413, + [787] = 411, + [788] = 404, + [789] = 726, + [790] = 740, + [791] = 791, + [792] = 679, + [793] = 793, + [794] = 651, + [795] = 686, + [796] = 740, + [797] = 797, + [798] = 693, + [799] = 695, + [800] = 740, + [801] = 646, + [802] = 403, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, [807] = 807, - [808] = 706, - [809] = 391, - [810] = 385, - [811] = 668, - [812] = 445, - [813] = 372, - [814] = 371, - [815] = 815, - [816] = 816, - [817] = 817, + [808] = 808, + [809] = 808, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 763, + [815] = 807, + [816] = 803, + [817] = 806, [818] = 818, [819] = 819, - [820] = 542, - [821] = 821, + [820] = 820, + [821] = 804, [822] = 822, [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 826, - [828] = 828, - [829] = 829, + [824] = 803, + [825] = 597, + [826] = 822, + [827] = 803, + [828] = 806, + [829] = 822, [830] = 830, - [831] = 815, - [832] = 832, - [833] = 829, - [834] = 834, - [835] = 835, - [836] = 836, + [831] = 830, + [832] = 822, + [833] = 833, + [834] = 810, + [835] = 830, + [836] = 806, [837] = 837, - [838] = 815, - [839] = 737, - [840] = 840, - [841] = 829, - [842] = 842, - [843] = 830, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 815, - [850] = 815, - [851] = 815, - [852] = 846, - [853] = 815, - [854] = 817, - [855] = 835, - [856] = 836, - [857] = 829, - [858] = 858, - [859] = 845, - [860] = 860, - [861] = 156, - [862] = 840, - [863] = 818, - [864] = 829, - [865] = 817, - [866] = 828, - [867] = 867, - [868] = 815, + [838] = 803, + [839] = 803, + [840] = 830, + [841] = 823, + [842] = 810, + [843] = 822, + [844] = 803, + [845] = 830, + [846] = 822, + [847] = 822, + [848] = 818, + [849] = 822, + [850] = 803, + [851] = 823, + [852] = 822, + [853] = 853, + [854] = 812, + [855] = 762, + [856] = 803, + [857] = 857, + [858] = 819, + [859] = 807, + [860] = 822, + [861] = 810, + [862] = 818, + [863] = 822, + [864] = 803, + [865] = 808, + [866] = 803, + [867] = 818, + [868] = 868, [869] = 869, - [870] = 829, - [871] = 871, - [872] = 872, - [873] = 821, - [874] = 845, - [875] = 875, - [876] = 815, - [877] = 877, - [878] = 878, - [879] = 846, - [880] = 826, - [881] = 845, - [882] = 828, - [883] = 815, - [884] = 829, - [885] = 657, - [886] = 886, - [887] = 826, - [888] = 828, - [889] = 840, - [890] = 830, - [891] = 822, - [892] = 815, - [893] = 829, + [870] = 803, + [871] = 822, + [872] = 823, + [873] = 873, + [874] = 874, + [875] = 822, + [876] = 806, + [877] = 822, + [878] = 803, + [879] = 818, + [880] = 822, + [881] = 822, + [882] = 822, + [883] = 773, + [884] = 805, + [885] = 874, + [886] = 822, + [887] = 823, + [888] = 888, + [889] = 807, + [890] = 808, + [891] = 803, + [892] = 892, + [893] = 803, [894] = 894, - [895] = 829, - [896] = 815, - [897] = 815, - [898] = 840, - [899] = 815, - [900] = 900, - [901] = 901, - [902] = 846, - [903] = 830, - [904] = 829, - [905] = 815, - [906] = 817, - [907] = 836, - [908] = 835, - [909] = 909, - [910] = 829, - [911] = 829, - [912] = 815, - [913] = 829, - [914] = 815, - [915] = 846, - [916] = 829, - [917] = 818, + [895] = 892, + [896] = 822, + [897] = 897, + [898] = 810, + [899] = 894, + [900] = 888, + [901] = 808, + [902] = 807, + [903] = 803, + [904] = 803, + [905] = 905, + [906] = 873, + [907] = 597, + [908] = 908, + [909] = 143, + [910] = 910, + [911] = 911, + [912] = 911, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 913, [918] = 918, - [919] = 829, - [920] = 830, - [921] = 815, - [922] = 818, - [923] = 815, - [924] = 818, - [925] = 840, - [926] = 817, - [927] = 829, - [928] = 829, - [929] = 826, + [919] = 919, + [920] = 914, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 913, + [925] = 911, + [926] = 914, + [927] = 927, + [928] = 928, + [929] = 929, [930] = 930, - [931] = 835, - [932] = 828, - [933] = 836, - [934] = 844, - [935] = 878, + [931] = 931, + [932] = 911, + [933] = 913, + [934] = 914, + [935] = 928, [936] = 936, - [937] = 608, + [937] = 937, [938] = 938, - [939] = 657, - [940] = 940, - [941] = 941, - [942] = 930, - [943] = 936, - [944] = 605, - [945] = 945, - [946] = 941, - [947] = 947, - [948] = 948, - [949] = 940, + [939] = 939, + [940] = 929, + [941] = 916, + [942] = 942, + [943] = 762, + [944] = 944, + [945] = 928, + [946] = 946, + [947] = 928, + [948] = 942, + [949] = 922, [950] = 950, [951] = 951, - [952] = 601, - [953] = 816, - [954] = 936, - [955] = 155, - [956] = 909, - [957] = 945, - [958] = 958, - [959] = 936, - [960] = 842, - [961] = 746, - [962] = 958, - [963] = 940, - [964] = 948, - [965] = 945, - [966] = 958, - [967] = 941, - [968] = 886, - [969] = 154, - [970] = 948, - [971] = 860, - [972] = 941, - [973] = 948, - [974] = 940, - [975] = 958, - [976] = 945, - [977] = 977, - [978] = 930, - [979] = 835, - [980] = 836, - [981] = 836, - [982] = 947, - [983] = 983, - [984] = 900, - [985] = 901, - [986] = 199, - [987] = 845, - [988] = 835, - [989] = 989, - [990] = 835, - [991] = 950, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 845, - [996] = 845, - [997] = 836, - [998] = 836, - [999] = 628, - [1000] = 951, - [1001] = 938, - [1002] = 860, - [1003] = 835, - [1004] = 886, - [1005] = 845, - [1006] = 1006, - [1007] = 941, - [1008] = 847, - [1009] = 1009, - [1010] = 941, - [1011] = 948, - [1012] = 945, - [1013] = 940, - [1014] = 1014, - [1015] = 958, - [1016] = 940, - [1017] = 948, - [1018] = 848, - [1019] = 941, - [1020] = 1020, - [1021] = 601, - [1022] = 1022, - [1023] = 605, - [1024] = 894, + [952] = 762, + [953] = 953, + [954] = 954, + [955] = 937, + [956] = 956, + [957] = 868, + [958] = 611, + [959] = 931, + [960] = 915, + [961] = 615, + [962] = 627, + [963] = 963, + [964] = 936, + [965] = 921, + [966] = 956, + [967] = 951, + [968] = 951, + [969] = 908, + [970] = 963, + [971] = 953, + [972] = 950, + [973] = 951, + [974] = 950, + [975] = 956, + [976] = 956, + [977] = 963, + [978] = 953, + [979] = 963, + [980] = 142, + [981] = 981, + [982] = 146, + [983] = 953, + [984] = 984, + [985] = 985, + [986] = 950, + [987] = 987, + [988] = 981, + [989] = 914, + [990] = 931, + [991] = 914, + [992] = 913, + [993] = 918, + [994] = 915, + [995] = 995, + [996] = 996, + [997] = 204, + [998] = 914, + [999] = 913, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 911, + [1004] = 667, + [1005] = 984, + [1006] = 914, + [1007] = 942, + [1008] = 923, + [1009] = 911, + [1010] = 911, + [1011] = 913, + [1012] = 1012, + [1013] = 911, + [1014] = 913, + [1015] = 954, + [1016] = 985, + [1017] = 951, + [1018] = 950, + [1019] = 951, + [1020] = 956, + [1021] = 1021, + [1022] = 910, + [1023] = 1023, + [1024] = 915, [1025] = 1025, - [1026] = 608, - [1027] = 875, - [1028] = 945, - [1029] = 860, - [1030] = 930, - [1031] = 1031, - [1032] = 1032, - [1033] = 945, - [1034] = 958, - [1035] = 958, - [1036] = 958, - [1037] = 872, - [1038] = 871, - [1039] = 869, - [1040] = 832, - [1041] = 837, - [1042] = 1022, - [1043] = 1043, - [1044] = 886, - [1045] = 941, - [1046] = 948, - [1047] = 940, - [1048] = 1048, - [1049] = 1049, - [1050] = 948, - [1051] = 206, - [1052] = 945, - [1053] = 940, - [1054] = 746, - [1055] = 930, - [1056] = 1043, - [1057] = 1009, - [1058] = 1058, - [1059] = 1014, - [1060] = 1020, - [1061] = 1032, + [1026] = 950, + [1027] = 951, + [1028] = 950, + [1029] = 938, + [1030] = 951, + [1031] = 963, + [1032] = 956, + [1033] = 944, + [1034] = 953, + [1035] = 939, + [1036] = 201, + [1037] = 1037, + [1038] = 905, + [1039] = 919, + [1040] = 927, + [1041] = 1041, + [1042] = 1042, + [1043] = 963, + [1044] = 627, + [1045] = 950, + [1046] = 956, + [1047] = 953, + [1048] = 956, + [1049] = 963, + [1050] = 1050, + [1051] = 953, + [1052] = 615, + [1053] = 953, + [1054] = 946, + [1055] = 931, + [1056] = 1056, + [1057] = 1056, + [1058] = 611, + [1059] = 963, + [1060] = 942, + [1061] = 930, [1062] = 1062, [1063] = 1063, - [1064] = 1048, - [1065] = 601, - [1066] = 1049, - [1067] = 1067, - [1068] = 1067, + [1064] = 1023, + [1065] = 1065, + [1066] = 1066, + [1067] = 627, + [1068] = 1063, [1069] = 1069, - [1070] = 1058, + [1070] = 667, [1071] = 1071, - [1072] = 605, - [1073] = 628, - [1074] = 886, - [1075] = 608, - [1076] = 1049, - [1077] = 930, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1079, - [1082] = 1080, + [1072] = 1037, + [1073] = 1041, + [1074] = 942, + [1075] = 1066, + [1076] = 915, + [1077] = 1077, + [1078] = 1062, + [1079] = 611, + [1080] = 1025, + [1081] = 868, + [1082] = 1065, [1083] = 1083, - [1084] = 1080, - [1085] = 1079, - [1086] = 1080, - [1087] = 886, - [1088] = 628, - [1089] = 900, - [1090] = 901, - [1091] = 1079, - [1092] = 746, - [1093] = 1093, - [1094] = 1094, - [1095] = 605, - [1096] = 900, - [1097] = 901, - [1098] = 1093, - [1099] = 848, - [1100] = 886, - [1101] = 1101, - [1102] = 1078, - [1103] = 1103, - [1104] = 601, - [1105] = 837, - [1106] = 894, - [1107] = 608, - [1108] = 930, - [1109] = 1083, - [1110] = 875, - [1111] = 1111, - [1112] = 832, - [1113] = 1094, - [1114] = 1101, - [1115] = 836, - [1116] = 835, - [1117] = 1079, - [1118] = 1118, - [1119] = 1079, - [1120] = 1080, - [1121] = 832, - [1122] = 1101, - [1123] = 1123, - [1124] = 1080, - [1125] = 1079, - [1126] = 1080, - [1127] = 628, - [1128] = 1128, - [1129] = 1111, - [1130] = 835, - [1131] = 1062, - [1132] = 1103, - [1133] = 836, - [1134] = 894, - [1135] = 1135, - [1136] = 119, - [1137] = 845, - [1138] = 845, - [1139] = 848, - [1140] = 875, - [1141] = 1079, - [1142] = 1142, - [1143] = 837, - [1144] = 1080, - [1145] = 1145, - [1146] = 875, - [1147] = 1147, - [1148] = 958, - [1149] = 945, - [1150] = 1150, - [1151] = 1111, - [1152] = 832, - [1153] = 894, - [1154] = 1128, - [1155] = 837, + [1084] = 1021, + [1085] = 615, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1087, + [1090] = 1086, + [1091] = 1091, + [1092] = 1086, + [1093] = 923, + [1094] = 667, + [1095] = 1095, + [1096] = 1062, + [1097] = 942, + [1098] = 1087, + [1099] = 915, + [1100] = 918, + [1101] = 868, + [1102] = 1087, + [1103] = 1086, + [1104] = 1095, + [1105] = 615, + [1106] = 930, + [1107] = 1107, + [1108] = 1108, + [1109] = 1088, + [1110] = 1091, + [1111] = 611, + [1112] = 915, + [1113] = 942, + [1114] = 1114, + [1115] = 910, + [1116] = 627, + [1117] = 944, + [1118] = 923, + [1119] = 918, + [1120] = 1120, + [1121] = 938, + [1122] = 939, + [1123] = 913, + [1124] = 1124, + [1125] = 914, + [1126] = 1087, + [1127] = 119, + [1128] = 1114, + [1129] = 667, + [1130] = 1114, + [1131] = 1120, + [1132] = 1086, + [1133] = 1133, + [1134] = 1087, + [1135] = 1086, + [1136] = 939, + [1137] = 914, + [1138] = 944, + [1139] = 1139, + [1140] = 913, + [1141] = 911, + [1142] = 1087, + [1143] = 1086, + [1144] = 938, + [1145] = 911, + [1146] = 1107, + [1147] = 910, + [1148] = 1148, + [1149] = 1086, + [1150] = 1087, + [1151] = 1108, + [1152] = 930, + [1153] = 1153, + [1154] = 1069, + [1155] = 953, [1156] = 1156, - [1157] = 1157, - [1158] = 1135, - [1159] = 1118, - [1160] = 945, - [1161] = 1101, - [1162] = 1123, - [1163] = 1163, - [1164] = 1062, - [1165] = 1157, - [1166] = 1163, - [1167] = 941, - [1168] = 940, - [1169] = 948, - [1170] = 958, - [1171] = 1171, - [1172] = 941, - [1173] = 940, - [1174] = 948, - [1175] = 848, - [1176] = 1176, - [1177] = 836, - [1178] = 1178, - [1179] = 1145, - [1180] = 1156, + [1157] = 1139, + [1158] = 944, + [1159] = 1159, + [1160] = 930, + [1161] = 950, + [1162] = 951, + [1163] = 956, + [1164] = 953, + [1165] = 1114, + [1166] = 1159, + [1167] = 950, + [1168] = 1168, + [1169] = 1069, + [1170] = 1107, + [1171] = 939, + [1172] = 951, + [1173] = 938, + [1174] = 963, + [1175] = 956, + [1176] = 1133, + [1177] = 1177, + [1178] = 910, + [1179] = 1124, + [1180] = 963, [1181] = 1181, [1182] = 1182, - [1183] = 601, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, + [1183] = 1183, + [1184] = 1153, + [1185] = 1183, + [1186] = 942, [1187] = 1187, - [1188] = 1147, - [1189] = 1189, + [1188] = 1188, + [1189] = 1177, [1190] = 1190, - [1191] = 1191, + [1191] = 615, [1192] = 1192, [1193] = 1193, [1194] = 1194, @@ -8278,1131 +8292,1131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 605, + [1200] = 1168, [1201] = 1201, [1202] = 1202, [1203] = 1203, - [1204] = 835, + [1204] = 1204, [1205] = 1205, - [1206] = 836, - [1207] = 845, + [1206] = 1206, + [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, [1211] = 1211, - [1212] = 886, + [1212] = 1212, [1213] = 1213, - [1214] = 1171, - [1215] = 1215, - [1216] = 1210, - [1217] = 1205, - [1218] = 1218, - [1219] = 1189, - [1220] = 1220, - [1221] = 835, - [1222] = 1191, - [1223] = 1223, - [1224] = 1224, - [1225] = 1199, - [1226] = 1226, - [1227] = 845, - [1228] = 608, - [1229] = 1190, - [1230] = 1150, - [1231] = 1193, - [1232] = 1176, - [1233] = 948, - [1234] = 940, - [1235] = 1235, - [1236] = 958, - [1237] = 945, - [1238] = 1201, - [1239] = 1199, - [1240] = 1226, - [1241] = 1190, - [1242] = 836, - [1243] = 1192, - [1244] = 1244, - [1245] = 845, - [1246] = 1246, - [1247] = 1189, - [1248] = 1194, - [1249] = 1198, - [1250] = 1202, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 1190, - [1255] = 1203, - [1256] = 1256, - [1257] = 1208, - [1258] = 1211, - [1259] = 1259, - [1260] = 1199, - [1261] = 1220, - [1262] = 1205, - [1263] = 1210, - [1264] = 1252, - [1265] = 1182, - [1266] = 1178, - [1267] = 1253, - [1268] = 886, - [1269] = 608, - [1270] = 1244, - [1271] = 1181, - [1272] = 605, - [1273] = 601, - [1274] = 941, - [1275] = 119, - [1276] = 845, - [1277] = 835, - [1278] = 1223, - [1279] = 1224, - [1280] = 941, - [1281] = 948, - [1282] = 940, - [1283] = 1256, - [1284] = 958, - [1285] = 1195, - [1286] = 1244, - [1287] = 1210, - [1288] = 1259, - [1289] = 1251, - [1290] = 945, - [1291] = 836, - [1292] = 835, - [1293] = 1218, - [1294] = 1101, - [1295] = 1205, - [1296] = 1235, - [1297] = 1189, - [1298] = 1184, - [1299] = 1299, - [1300] = 1246, - [1301] = 1196, - [1302] = 1197, - [1303] = 1244, - [1304] = 1189, - [1305] = 1210, - [1306] = 1205, - [1307] = 1187, - [1308] = 1190, - [1309] = 1246, - [1310] = 1215, - [1311] = 1213, - [1312] = 1199, - [1313] = 1186, - [1314] = 1246, - [1315] = 1185, - [1316] = 1209, - [1317] = 628, - [1318] = 119, - [1319] = 1319, - [1320] = 1299, - [1321] = 1321, - [1322] = 1319, - [1323] = 1323, - [1324] = 1324, - [1325] = 156, + [1214] = 1214, + [1215] = 627, + [1216] = 1216, + [1217] = 913, + [1218] = 1210, + [1219] = 1219, + [1220] = 913, + [1221] = 1221, + [1222] = 1208, + [1223] = 1204, + [1224] = 611, + [1225] = 1182, + [1226] = 1181, + [1227] = 1227, + [1228] = 911, + [1229] = 1206, + [1230] = 1207, + [1231] = 1231, + [1232] = 911, + [1233] = 1233, + [1234] = 1234, + [1235] = 914, + [1236] = 1236, + [1237] = 1237, + [1238] = 1211, + [1239] = 1156, + [1240] = 914, + [1241] = 1216, + [1242] = 911, + [1243] = 963, + [1244] = 1209, + [1245] = 611, + [1246] = 1219, + [1247] = 953, + [1248] = 956, + [1249] = 951, + [1250] = 950, + [1251] = 942, + [1252] = 1237, + [1253] = 1233, + [1254] = 1207, + [1255] = 119, + [1256] = 615, + [1257] = 1210, + [1258] = 1258, + [1259] = 911, + [1260] = 1206, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1199, + [1265] = 1204, + [1266] = 1266, + [1267] = 1212, + [1268] = 1208, + [1269] = 1208, + [1270] = 1204, + [1271] = 1221, + [1272] = 1213, + [1273] = 1214, + [1274] = 1188, + [1275] = 1261, + [1276] = 1210, + [1277] = 913, + [1278] = 627, + [1279] = 1279, + [1280] = 1261, + [1281] = 914, + [1282] = 1258, + [1283] = 1262, + [1284] = 950, + [1285] = 1263, + [1286] = 1266, + [1287] = 951, + [1288] = 1236, + [1289] = 1231, + [1290] = 1206, + [1291] = 1207, + [1292] = 1194, + [1293] = 1227, + [1294] = 1193, + [1295] = 1258, + [1296] = 1205, + [1297] = 1279, + [1298] = 956, + [1299] = 1234, + [1300] = 953, + [1301] = 1202, + [1302] = 1302, + [1303] = 1201, + [1304] = 1304, + [1305] = 1190, + [1306] = 1187, + [1307] = 667, + [1308] = 963, + [1309] = 1210, + [1310] = 1198, + [1311] = 1197, + [1312] = 1196, + [1313] = 1208, + [1314] = 1204, + [1315] = 914, + [1316] = 1114, + [1317] = 913, + [1318] = 1261, + [1319] = 1302, + [1320] = 1258, + [1321] = 1206, + [1322] = 1207, + [1323] = 1203, + [1324] = 1192, + [1325] = 1304, [1326] = 1326, - [1327] = 945, - [1328] = 154, - [1329] = 628, - [1330] = 1321, + [1327] = 1195, + [1328] = 146, + [1329] = 1329, + [1330] = 950, [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 958, - [1335] = 1324, - [1336] = 875, - [1337] = 155, + [1334] = 951, + [1335] = 1204, + [1336] = 956, + [1337] = 1208, [1338] = 1338, - [1339] = 941, - [1340] = 1190, - [1341] = 154, - [1342] = 948, - [1343] = 1199, - [1344] = 940, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1189, - [1350] = 155, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 910, + [1343] = 1326, + [1344] = 1344, + [1345] = 1210, + [1346] = 1206, + [1347] = 1207, + [1348] = 146, + [1349] = 1349, + [1350] = 1350, [1351] = 1351, - [1352] = 1199, - [1353] = 1190, - [1354] = 156, - [1355] = 1355, - [1356] = 1331, - [1357] = 1357, - [1358] = 1355, + [1352] = 953, + [1353] = 143, + [1354] = 142, + [1355] = 963, + [1356] = 1356, + [1357] = 963, + [1358] = 1329, [1359] = 1359, - [1360] = 940, - [1361] = 948, - [1362] = 941, - [1363] = 1210, - [1364] = 1321, - [1365] = 1205, - [1366] = 848, - [1367] = 1347, - [1368] = 958, - [1369] = 945, - [1370] = 1210, - [1371] = 1205, - [1372] = 1372, - [1373] = 1189, - [1374] = 1333, - [1375] = 1359, - [1376] = 1321, - [1377] = 156, - [1378] = 1378, - [1379] = 1333, + [1360] = 1356, + [1361] = 143, + [1362] = 953, + [1363] = 142, + [1364] = 146, + [1365] = 1365, + [1366] = 1329, + [1367] = 1341, + [1368] = 1207, + [1369] = 142, + [1370] = 143, + [1371] = 1371, + [1372] = 1331, + [1373] = 951, + [1374] = 1374, + [1375] = 119, + [1376] = 956, + [1377] = 1333, + [1378] = 1329, + [1379] = 944, [1380] = 1380, - [1381] = 155, - [1382] = 1345, - [1383] = 1331, - [1384] = 1333, - [1385] = 154, - [1386] = 1331, - [1387] = 1346, - [1388] = 1357, - [1389] = 1244, - [1390] = 1244, - [1391] = 1323, - [1392] = 1392, - [1393] = 1079, - [1394] = 1394, - [1395] = 1080, - [1396] = 1396, + [1381] = 1333, + [1382] = 1338, + [1383] = 1204, + [1384] = 1384, + [1385] = 1208, + [1386] = 1206, + [1387] = 667, + [1388] = 1210, + [1389] = 1356, + [1390] = 1390, + [1391] = 950, + [1392] = 1340, + [1393] = 1344, + [1394] = 1384, + [1395] = 1356, + [1396] = 1333, [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1400, + [1400] = 1261, [1401] = 1401, - [1402] = 1323, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 1338, - [1407] = 1326, - [1408] = 1351, - [1409] = 1409, - [1410] = 1410, + [1402] = 1402, + [1403] = 143, + [1404] = 1206, + [1405] = 1207, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 415, + [1410] = 1397, [1411] = 1411, - [1412] = 1246, + [1412] = 1412, [1413] = 1413, - [1414] = 1414, - [1415] = 1401, - [1416] = 1189, - [1417] = 1417, - [1418] = 1079, - [1419] = 1414, - [1420] = 1404, + [1414] = 1412, + [1415] = 1415, + [1416] = 1351, + [1417] = 1210, + [1418] = 1418, + [1419] = 1261, + [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 1080, - [1424] = 1205, - [1425] = 1392, - [1426] = 1210, - [1427] = 1427, + [1423] = 1423, + [1424] = 1398, + [1425] = 1332, + [1426] = 422, + [1427] = 1406, [1428] = 1428, [1429] = 1429, - [1430] = 1346, - [1431] = 1417, + [1430] = 1406, + [1431] = 1420, [1432] = 1432, - [1433] = 1433, - [1434] = 1246, - [1435] = 1435, - [1436] = 1246, - [1437] = 1401, - [1438] = 1414, + [1433] = 1204, + [1434] = 1208, + [1435] = 1411, + [1436] = 1436, + [1437] = 1398, + [1438] = 142, [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1357, + [1440] = 1087, + [1441] = 1406, + [1442] = 1442, [1443] = 1443, - [1444] = 1326, + [1444] = 1413, [1445] = 1445, - [1446] = 1190, - [1447] = 1199, - [1448] = 1348, - [1449] = 1244, - [1450] = 156, - [1451] = 1378, - [1452] = 1199, - [1453] = 1432, - [1454] = 875, - [1455] = 1394, - [1456] = 1190, - [1457] = 155, - [1458] = 1458, + [1446] = 1412, + [1447] = 1350, + [1448] = 1398, + [1449] = 1365, + [1450] = 1415, + [1451] = 1451, + [1452] = 1452, + [1453] = 1208, + [1454] = 1454, + [1455] = 1086, + [1456] = 1210, + [1457] = 1407, + [1458] = 1429, [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1210, - [1463] = 848, - [1464] = 421, - [1465] = 1461, - [1466] = 156, - [1467] = 1205, - [1468] = 1410, - [1469] = 1244, - [1470] = 155, - [1471] = 1471, - [1472] = 1435, - [1473] = 156, + [1460] = 1398, + [1461] = 1398, + [1462] = 1349, + [1463] = 1350, + [1464] = 1464, + [1465] = 143, + [1466] = 1359, + [1467] = 1432, + [1468] = 1398, + [1469] = 1408, + [1470] = 143, + [1471] = 1445, + [1472] = 1421, + [1473] = 142, [1474] = 1474, - [1475] = 1475, - [1476] = 1409, - [1477] = 1400, - [1478] = 1246, - [1479] = 1398, - [1480] = 1189, - [1481] = 154, - [1482] = 1413, - [1483] = 1483, - [1484] = 1460, - [1485] = 1485, - [1486] = 1394, - [1487] = 1475, - [1488] = 1396, - [1489] = 1422, - [1490] = 1397, - [1491] = 1394, - [1492] = 1475, - [1493] = 1493, - [1494] = 1475, + [1475] = 1258, + [1476] = 1398, + [1477] = 1477, + [1478] = 146, + [1479] = 1442, + [1480] = 1415, + [1481] = 1087, + [1482] = 1086, + [1483] = 1349, + [1484] = 1380, + [1485] = 910, + [1486] = 1398, + [1487] = 1459, + [1488] = 1488, + [1489] = 1412, + [1490] = 1204, + [1491] = 146, + [1492] = 1390, + [1493] = 1261, + [1494] = 1494, [1495] = 1495, - [1496] = 1372, - [1497] = 1401, - [1498] = 1394, - [1499] = 1411, - [1500] = 1414, + [1496] = 1374, + [1497] = 1371, + [1498] = 1498, + [1499] = 1371, + [1500] = 1500, [1501] = 1501, - [1502] = 1502, - [1503] = 1394, - [1504] = 1394, - [1505] = 1380, - [1506] = 1394, - [1507] = 1439, - [1508] = 1394, - [1509] = 154, - [1510] = 1394, - [1511] = 154, - [1512] = 1394, - [1513] = 1403, - [1514] = 155, - [1515] = 1394, - [1516] = 1394, - [1517] = 1394, - [1518] = 1440, - [1519] = 1441, - [1520] = 414, + [1502] = 1398, + [1503] = 1374, + [1504] = 1258, + [1505] = 1505, + [1506] = 142, + [1507] = 1398, + [1508] = 1498, + [1509] = 1398, + [1510] = 1398, + [1511] = 1423, + [1512] = 1428, + [1513] = 1258, + [1514] = 1402, + [1515] = 1443, + [1516] = 1261, + [1517] = 1517, + [1518] = 1518, + [1519] = 1436, + [1520] = 1206, [1521] = 1521, - [1522] = 1522, + [1522] = 1207, [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1333, - [1528] = 1405, - [1529] = 1529, - [1530] = 1523, - [1531] = 1333, - [1532] = 1532, - [1533] = 1523, - [1534] = 1534, - [1535] = 1529, - [1536] = 1399, - [1537] = 1357, - [1538] = 1346, - [1539] = 1539, - [1540] = 1540, - [1541] = 1523, - [1542] = 1539, - [1543] = 1429, - [1544] = 1321, - [1545] = 421, - [1546] = 1331, - [1547] = 1443, - [1548] = 1548, - [1549] = 1549, + [1524] = 944, + [1525] = 146, + [1526] = 1418, + [1527] = 1258, + [1528] = 1422, + [1529] = 1398, + [1530] = 1415, + [1531] = 1531, + [1532] = 1349, + [1533] = 1533, + [1534] = 1500, + [1535] = 1535, + [1536] = 1536, + [1537] = 1452, + [1538] = 1454, + [1539] = 1356, + [1540] = 1494, + [1541] = 1536, + [1542] = 1542, + [1543] = 1543, + [1544] = 1505, + [1545] = 1536, + [1546] = 1546, + [1547] = 1536, + [1548] = 1501, + [1549] = 1495, [1550] = 1550, - [1551] = 1523, - [1552] = 1532, - [1553] = 1326, - [1554] = 1323, - [1555] = 1523, - [1556] = 1556, - [1557] = 1331, + [1551] = 1505, + [1552] = 1536, + [1553] = 1553, + [1554] = 1521, + [1555] = 1495, + [1556] = 1333, + [1557] = 1474, [1558] = 1558, - [1559] = 1559, + [1559] = 1477, [1560] = 1560, - [1561] = 1331, - [1562] = 1562, - [1563] = 1563, - [1564] = 1523, - [1565] = 1333, - [1566] = 1523, - [1567] = 1333, - [1568] = 1568, - [1569] = 1521, - [1570] = 1485, - [1571] = 1474, - [1572] = 1471, + [1561] = 1523, + [1562] = 1517, + [1563] = 1536, + [1564] = 1333, + [1565] = 1565, + [1566] = 1566, + [1567] = 1536, + [1568] = 1464, + [1569] = 1535, + [1570] = 1210, + [1571] = 1571, + [1572] = 1572, [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1495, - [1577] = 1577, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1433, - [1582] = 1502, + [1574] = 1208, + [1575] = 1204, + [1576] = 1454, + [1577] = 1350, + [1578] = 1573, + [1579] = 1333, + [1580] = 1542, + [1581] = 1581, + [1582] = 1439, [1583] = 1583, - [1584] = 1584, - [1585] = 1501, - [1586] = 1495, - [1587] = 451, - [1588] = 452, - [1589] = 334, - [1590] = 1526, - [1591] = 1493, - [1592] = 1459, - [1593] = 1523, - [1594] = 1502, - [1595] = 1458, - [1596] = 1445, - [1597] = 1445, + [1584] = 1536, + [1585] = 1329, + [1586] = 1586, + [1587] = 1206, + [1588] = 1207, + [1589] = 1536, + [1590] = 1590, + [1591] = 204, + [1592] = 1356, + [1593] = 1593, + [1594] = 1356, + [1595] = 1536, + [1596] = 1596, + [1597] = 1586, [1598] = 1598, - [1599] = 206, - [1600] = 119, - [1601] = 414, - [1602] = 199, - [1603] = 206, + [1599] = 1599, + [1600] = 1600, + [1601] = 204, + [1602] = 201, + [1603] = 1603, [1604] = 1604, - [1605] = 199, + [1605] = 201, [1606] = 1606, - [1607] = 1607, + [1607] = 1536, [1608] = 1608, - [1609] = 1189, - [1610] = 1421, - [1611] = 1523, - [1612] = 1321, - [1613] = 1523, - [1614] = 1190, - [1615] = 1199, - [1616] = 206, - [1617] = 1205, - [1618] = 1321, - [1619] = 199, - [1620] = 1321, - [1621] = 1523, - [1622] = 1331, - [1623] = 1523, - [1624] = 1210, - [1625] = 1523, - [1626] = 1502, - [1627] = 1627, - [1628] = 1568, - [1629] = 199, - [1630] = 1630, - [1631] = 1525, - [1632] = 1607, - [1633] = 1608, - [1634] = 1634, - [1635] = 1635, - [1636] = 1573, - [1637] = 1627, - [1638] = 1627, - [1639] = 1639, + [1609] = 415, + [1610] = 201, + [1611] = 1611, + [1612] = 1536, + [1613] = 1613, + [1614] = 1614, + [1615] = 1356, + [1616] = 1518, + [1617] = 204, + [1618] = 1618, + [1619] = 454, + [1620] = 453, + [1621] = 1621, + [1622] = 452, + [1623] = 1371, + [1624] = 1560, + [1625] = 1374, + [1626] = 119, + [1627] = 422, + [1628] = 1329, + [1629] = 1536, + [1630] = 1329, + [1631] = 1451, + [1632] = 1632, + [1633] = 1329, + [1634] = 1333, + [1635] = 1536, + [1636] = 1550, + [1637] = 1553, + [1638] = 1638, + [1639] = 204, [1640] = 1640, [1641] = 1641, - [1642] = 1627, - [1643] = 1627, - [1644] = 1627, - [1645] = 1574, - [1646] = 1634, - [1647] = 1575, - [1648] = 1578, - [1649] = 1525, - [1650] = 1627, - [1651] = 1651, - [1652] = 1652, + [1642] = 1565, + [1643] = 1643, + [1644] = 1546, + [1645] = 1641, + [1646] = 1454, + [1647] = 1647, + [1648] = 1640, + [1649] = 1640, + [1650] = 1558, + [1651] = 1640, + [1652] = 119, [1653] = 1653, - [1654] = 1627, - [1655] = 1604, - [1656] = 1627, - [1657] = 1580, - [1658] = 1080, - [1659] = 1079, - [1660] = 1627, - [1661] = 1579, - [1662] = 1662, - [1663] = 1522, - [1664] = 1664, - [1665] = 1627, - [1666] = 1583, - [1667] = 1651, - [1668] = 206, - [1669] = 1669, - [1670] = 1670, - [1671] = 1651, - [1672] = 206, - [1673] = 1627, - [1674] = 1445, - [1675] = 1675, - [1676] = 1577, - [1677] = 1627, - [1678] = 1678, - [1679] = 1540, - [1680] = 1675, - [1681] = 1548, + [1654] = 1654, + [1655] = 1655, + [1656] = 1640, + [1657] = 201, + [1658] = 1572, + [1659] = 1640, + [1660] = 1660, + [1661] = 1641, + [1662] = 1495, + [1663] = 1640, + [1664] = 119, + [1665] = 204, + [1666] = 1600, + [1667] = 1667, + [1668] = 1668, + [1669] = 1505, + [1670] = 1621, + [1671] = 1611, + [1672] = 1640, + [1673] = 1640, + [1674] = 1581, + [1675] = 1640, + [1676] = 1618, + [1677] = 1583, + [1678] = 1641, + [1679] = 1679, + [1680] = 1614, + [1681] = 1643, [1682] = 1682, - [1683] = 119, - [1684] = 1684, - [1685] = 1627, - [1686] = 1651, - [1687] = 1651, - [1688] = 199, - [1689] = 1606, - [1690] = 1690, - [1691] = 1079, - [1692] = 1080, - [1693] = 1495, - [1694] = 119, - [1695] = 1548, - [1696] = 1534, - [1697] = 1598, - [1698] = 1584, - [1699] = 199, - [1700] = 206, - [1701] = 1701, - [1702] = 992, - [1703] = 1703, - [1704] = 1189, - [1705] = 1079, - [1706] = 1080, + [1683] = 1606, + [1684] = 1604, + [1685] = 1685, + [1686] = 1603, + [1687] = 1687, + [1688] = 1688, + [1689] = 1689, + [1690] = 1598, + [1691] = 1640, + [1692] = 1640, + [1693] = 1598, + [1694] = 1640, + [1695] = 1086, + [1696] = 1647, + [1697] = 1087, + [1698] = 1533, + [1699] = 1590, + [1700] = 204, + [1701] = 201, + [1702] = 1702, + [1703] = 1572, + [1704] = 201, + [1705] = 1641, + [1706] = 1571, [1707] = 1640, - [1708] = 1652, - [1709] = 1709, + [1708] = 1086, + [1709] = 1087, [1710] = 1710, [1711] = 1711, - [1712] = 1323, - [1713] = 1326, - [1714] = 1525, - [1715] = 1715, - [1716] = 1716, - [1717] = 1664, - [1718] = 1718, - [1719] = 1719, - [1720] = 1641, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1668, + [1716] = 1688, + [1717] = 1667, + [1718] = 996, + [1719] = 1350, + [1720] = 1720, [1721] = 1721, - [1722] = 119, + [1722] = 1572, [1723] = 1723, - [1724] = 207, - [1725] = 1630, - [1726] = 1726, - [1727] = 1726, - [1728] = 1190, - [1729] = 1729, - [1730] = 1006, - [1731] = 1199, - [1732] = 1690, - [1733] = 1733, - [1734] = 119, - [1735] = 1709, - [1736] = 989, - [1737] = 156, - [1738] = 353, - [1739] = 155, - [1740] = 1740, - [1741] = 1741, - [1742] = 1548, - [1743] = 154, - [1744] = 1744, - [1745] = 1635, - [1746] = 1746, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1079, - [1751] = 1639, - [1752] = 1080, - [1753] = 1718, + [1724] = 119, + [1725] = 1725, + [1726] = 1687, + [1727] = 1727, + [1728] = 1728, + [1729] = 1702, + [1730] = 1653, + [1731] = 1086, + [1732] = 1087, + [1733] = 1349, + [1734] = 1654, + [1735] = 119, + [1736] = 1598, + [1737] = 1737, + [1738] = 1210, + [1739] = 1739, + [1740] = 1654, + [1741] = 1653, + [1742] = 1000, + [1743] = 1743, + [1744] = 1660, + [1745] = 146, + [1746] = 1723, + [1747] = 142, + [1748] = 143, + [1749] = 1727, + [1750] = 1750, + [1751] = 1725, + [1752] = 1679, + [1753] = 1753, [1754] = 1754, [1755] = 1755, [1756] = 1756, [1757] = 1757, - [1758] = 1653, - [1759] = 1749, - [1760] = 1357, + [1758] = 210, + [1759] = 1759, + [1760] = 1760, [1761] = 1761, [1762] = 1762, - [1763] = 1684, - [1764] = 1346, - [1765] = 1210, - [1766] = 994, - [1767] = 1205, - [1768] = 1639, - [1769] = 1635, + [1763] = 1208, + [1764] = 1001, + [1765] = 1765, + [1766] = 1766, + [1767] = 1204, + [1768] = 995, + [1769] = 1655, [1770] = 1770, - [1771] = 1771, - [1772] = 1747, - [1773] = 1773, + [1771] = 1728, + [1772] = 1712, + [1773] = 287, [1774] = 1774, - [1775] = 1715, + [1775] = 1775, [1776] = 1776, - [1777] = 977, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1741, - [1784] = 1445, + [1777] = 1012, + [1778] = 1087, + [1779] = 1770, + [1780] = 1086, + [1781] = 1374, + [1782] = 1207, + [1783] = 1206, + [1784] = 1784, [1785] = 1785, - [1786] = 1786, + [1786] = 1371, [1787] = 1787, [1788] = 1788, - [1789] = 1789, + [1789] = 1743, [1790] = 1790, [1791] = 1791, [1792] = 1792, [1793] = 1793, - [1794] = 1794, - [1795] = 1744, - [1796] = 1754, - [1797] = 1740, + [1794] = 143, + [1795] = 1795, + [1796] = 1796, + [1797] = 1797, [1798] = 1798, [1799] = 1799, - [1800] = 1792, - [1801] = 1801, - [1802] = 207, - [1803] = 1774, + [1800] = 1800, + [1801] = 1454, + [1802] = 1802, + [1803] = 287, [1804] = 1804, - [1805] = 1746, - [1806] = 156, + [1805] = 1805, + [1806] = 210, [1807] = 1807, - [1808] = 1748, - [1809] = 1809, - [1810] = 1810, - [1811] = 1723, - [1812] = 1812, - [1813] = 1773, - [1814] = 1716, - [1815] = 1755, - [1816] = 1816, - [1817] = 1756, - [1818] = 155, - [1819] = 1770, - [1820] = 1776, - [1821] = 1205, + [1808] = 119, + [1809] = 142, + [1810] = 1797, + [1811] = 1811, + [1812] = 1208, + [1813] = 1776, + [1814] = 1814, + [1815] = 1815, + [1816] = 1204, + [1817] = 1817, + [1818] = 1720, + [1819] = 1819, + [1820] = 1721, + [1821] = 1784, [1822] = 1822, - [1823] = 1210, - [1824] = 1824, - [1825] = 1792, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, + [1823] = 1765, + [1824] = 1753, + [1825] = 1825, + [1826] = 146, + [1827] = 1785, + [1828] = 1739, [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1721, - [1833] = 1733, - [1834] = 1834, - [1835] = 1762, - [1836] = 1635, + [1830] = 1714, + [1831] = 1711, + [1832] = 1832, + [1833] = 1788, + [1834] = 1804, + [1835] = 1756, + [1836] = 1799, [1837] = 1837, - [1838] = 1719, - [1839] = 1639, - [1840] = 353, - [1841] = 1502, - [1842] = 1837, - [1843] = 1703, - [1844] = 1710, - [1845] = 1781, - [1846] = 1701, - [1847] = 1778, - [1848] = 1189, + [1838] = 1761, + [1839] = 1760, + [1840] = 1759, + [1841] = 1653, + [1842] = 1800, + [1843] = 1843, + [1844] = 1654, + [1845] = 1845, + [1846] = 1846, + [1847] = 1847, + [1848] = 1848, [1849] = 1849, - [1850] = 1830, - [1851] = 1826, + [1850] = 1755, + [1851] = 1851, [1852] = 1852, - [1853] = 1495, - [1854] = 1854, - [1855] = 1190, - [1856] = 1199, - [1857] = 1857, - [1858] = 1858, - [1859] = 1792, - [1860] = 1757, - [1861] = 1861, - [1862] = 1729, - [1863] = 1780, - [1864] = 1864, - [1865] = 119, - [1866] = 1771, - [1867] = 154, - [1868] = 1868, - [1869] = 119, - [1870] = 119, - [1871] = 424, - [1872] = 1872, - [1873] = 1873, - [1874] = 1798, - [1875] = 1062, - [1876] = 1876, - [1877] = 1877, - [1878] = 1548, - [1879] = 1816, - [1880] = 1787, + [1853] = 1853, + [1854] = 1775, + [1855] = 1737, + [1856] = 1754, + [1857] = 1787, + [1858] = 1799, + [1859] = 1859, + [1860] = 1860, + [1861] = 1210, + [1862] = 1862, + [1863] = 1774, + [1864] = 1766, + [1865] = 1207, + [1866] = 1206, + [1867] = 1495, + [1868] = 1750, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 1757, + [1873] = 1807, + [1874] = 1874, + [1875] = 1792, + [1876] = 1799, + [1877] = 1505, + [1878] = 1878, + [1879] = 1802, + [1880] = 1795, [1881] = 1881, - [1882] = 1788, - [1883] = 1525, - [1884] = 199, - [1885] = 1885, - [1886] = 1791, - [1887] = 1799, - [1888] = 1888, - [1889] = 1793, - [1890] = 1831, - [1891] = 1827, - [1892] = 1246, - [1893] = 119, - [1894] = 1894, - [1895] = 1849, + [1882] = 1882, + [1883] = 1814, + [1884] = 1884, + [1885] = 119, + [1886] = 1886, + [1887] = 1848, + [1888] = 1817, + [1889] = 1852, + [1890] = 1258, + [1891] = 1815, + [1892] = 1884, + [1893] = 1859, + [1894] = 1261, + [1895] = 1860, [1896] = 1896, [1897] = 1897, - [1898] = 1779, + [1898] = 1261, [1899] = 1899, [1900] = 1790, - [1901] = 1854, - [1902] = 1902, - [1903] = 206, - [1904] = 1678, - [1905] = 1071, - [1906] = 1858, - [1907] = 1897, - [1908] = 119, - [1909] = 1909, - [1910] = 1910, + [1901] = 1897, + [1902] = 1071, + [1903] = 119, + [1904] = 201, + [1905] = 1905, + [1906] = 1906, + [1907] = 1598, + [1908] = 425, + [1909] = 1869, + [1910] = 1682, [1911] = 1911, - [1912] = 1909, - [1913] = 1913, - [1914] = 1914, - [1915] = 1864, - [1916] = 1916, - [1917] = 1834, - [1918] = 1807, + [1912] = 1912, + [1913] = 1851, + [1914] = 1870, + [1915] = 1825, + [1916] = 1822, + [1917] = 1811, + [1918] = 204, [1919] = 1919, - [1920] = 1911, - [1921] = 1899, - [1922] = 1804, - [1923] = 1812, - [1924] = 1810, - [1925] = 1925, - [1926] = 1246, - [1927] = 1785, - [1928] = 1868, - [1929] = 1786, - [1930] = 1809, - [1931] = 1789, - [1932] = 1857, - [1933] = 1069, - [1934] = 1829, - [1935] = 1063, - [1936] = 1244, - [1937] = 1885, - [1938] = 1902, - [1939] = 1852, - [1940] = 1782, - [1941] = 1244, + [1920] = 1258, + [1921] = 1921, + [1922] = 1896, + [1923] = 1923, + [1924] = 1798, + [1925] = 1881, + [1926] = 1796, + [1927] = 1845, + [1928] = 1572, + [1929] = 1083, + [1930] = 1930, + [1931] = 119, + [1932] = 1843, + [1933] = 1847, + [1934] = 1934, + [1935] = 119, + [1936] = 1886, + [1937] = 1937, + [1938] = 1871, + [1939] = 1846, + [1940] = 1940, + [1941] = 1862, [1942] = 1942, - [1943] = 1943, - [1944] = 1333, - [1945] = 1321, - [1946] = 1946, - [1947] = 1877, - [1948] = 119, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1872, - [1954] = 1910, - [1955] = 1913, - [1956] = 1678, - [1957] = 1957, - [1958] = 1958, + [1943] = 1853, + [1944] = 1077, + [1945] = 1793, + [1946] = 1069, + [1947] = 1819, + [1948] = 1948, + [1949] = 1919, + [1950] = 1878, + [1951] = 1791, + [1952] = 1921, + [1953] = 1953, + [1954] = 119, + [1955] = 119, + [1956] = 1956, + [1957] = 142, + [1958] = 1956, [1959] = 1959, - [1960] = 1333, - [1961] = 1062, - [1962] = 119, - [1963] = 1950, - [1964] = 1873, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1960, + [1964] = 1964, [1965] = 1965, - [1966] = 206, + [1966] = 1333, [1967] = 1967, - [1968] = 1968, - [1969] = 1969, + [1968] = 1069, + [1969] = 1934, [1970] = 1970, - [1971] = 1914, - [1972] = 1916, - [1973] = 1973, - [1974] = 1974, + [1971] = 146, + [1972] = 1682, + [1973] = 1653, + [1974] = 1940, [1975] = 1975, - [1976] = 1952, - [1977] = 1977, - [1978] = 1978, - [1979] = 424, + [1976] = 1356, + [1977] = 1956, + [1978] = 1329, + [1979] = 1979, [1980] = 1980, - [1981] = 199, - [1982] = 1977, + [1981] = 1344, + [1982] = 1982, [1983] = 1983, - [1984] = 1984, + [1984] = 1905, [1985] = 1985, [1986] = 1986, [1987] = 1987, - [1988] = 1951, - [1989] = 1989, - [1990] = 154, - [1991] = 155, - [1992] = 1992, - [1993] = 1993, + [1988] = 1906, + [1989] = 1979, + [1990] = 425, + [1991] = 1980, + [1992] = 204, + [1993] = 1911, [1994] = 1994, - [1995] = 1995, - [1996] = 1983, + [1995] = 1965, + [1996] = 1985, [1997] = 1997, - [1998] = 1942, - [1999] = 1975, - [2000] = 119, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, [2001] = 2001, - [2002] = 1069, - [2003] = 156, + [2002] = 2002, + [2003] = 143, [2004] = 2004, - [2005] = 1355, - [2006] = 1331, - [2007] = 1975, - [2008] = 2008, + [2005] = 201, + [2006] = 1997, + [2007] = 1329, + [2008] = 2001, [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 1894, + [2010] = 1077, + [2011] = 1923, + [2012] = 2012, [2013] = 2013, - [2014] = 1968, + [2014] = 1953, [2015] = 2015, [2016] = 2016, [2017] = 2017, [2018] = 2018, - [2019] = 1975, - [2020] = 1896, - [2021] = 1975, - [2022] = 1967, - [2023] = 2023, + [2019] = 1987, + [2020] = 2020, + [2021] = 2021, + [2022] = 2022, + [2023] = 1654, [2024] = 2024, - [2025] = 2025, - [2026] = 1978, - [2027] = 2027, - [2028] = 1985, + [2025] = 1956, + [2026] = 2026, + [2027] = 1912, + [2028] = 1882, [2029] = 2029, [2030] = 2030, - [2031] = 1986, + [2031] = 2031, [2032] = 2032, - [2033] = 1639, - [2034] = 1635, - [2035] = 1980, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 1331, - [2040] = 1876, - [2041] = 1925, - [2042] = 1881, - [2043] = 2043, - [2044] = 2044, + [2037] = 119, + [2038] = 1948, + [2039] = 1930, + [2040] = 2040, + [2041] = 2041, + [2042] = 2040, + [2043] = 1983, + [2044] = 1356, [2045] = 2045, - [2046] = 2046, - [2047] = 1321, - [2048] = 1946, - [2049] = 119, - [2050] = 1974, + [2046] = 1333, + [2047] = 2047, + [2048] = 2016, + [2049] = 2049, + [2050] = 2050, [2051] = 2051, - [2052] = 119, + [2052] = 1956, [2053] = 2053, - [2054] = 1992, - [2055] = 2055, - [2056] = 2056, + [2054] = 119, + [2055] = 1986, + [2056] = 1942, [2057] = 2057, [2058] = 2058, - [2059] = 96, - [2060] = 1246, - [2061] = 119, - [2062] = 1997, - [2063] = 154, - [2064] = 94, - [2065] = 2065, - [2066] = 1244, - [2067] = 1989, - [2068] = 1957, - [2069] = 1973, + [2059] = 2059, + [2060] = 2059, + [2061] = 1970, + [2062] = 2015, + [2063] = 2013, + [2064] = 1961, + [2065] = 2053, + [2066] = 2066, + [2067] = 146, + [2068] = 2024, + [2069] = 119, [2070] = 2070, - [2071] = 2071, - [2072] = 2072, + [2071] = 2030, + [2072] = 1962, [2073] = 2073, - [2074] = 119, + [2074] = 2074, [2075] = 2075, - [2076] = 155, - [2077] = 2036, - [2078] = 2078, + [2076] = 2076, + [2077] = 2077, + [2078] = 1832, [2079] = 2079, [2080] = 2080, - [2081] = 2029, - [2082] = 2032, - [2083] = 2015, - [2084] = 2038, - [2085] = 2016, - [2086] = 2017, - [2087] = 1958, - [2088] = 1244, - [2089] = 2027, - [2090] = 2090, - [2091] = 1246, - [2092] = 1970, - [2093] = 2025, + [2081] = 1069, + [2082] = 2004, + [2083] = 2083, + [2084] = 2002, + [2085] = 142, + [2086] = 2086, + [2087] = 143, + [2088] = 1258, + [2089] = 2000, + [2090] = 1999, + [2091] = 119, + [2092] = 119, + [2093] = 2093, [2094] = 2094, - [2095] = 156, - [2096] = 1943, + [2095] = 1344, + [2096] = 2017, [2097] = 2097, - [2098] = 1355, - [2099] = 1969, - [2100] = 2100, + [2098] = 1077, + [2099] = 1994, + [2100] = 2041, [2101] = 2101, - [2102] = 95, + [2102] = 2102, [2103] = 2103, - [2104] = 1069, - [2105] = 1828, - [2106] = 1994, + [2104] = 2104, + [2105] = 2105, + [2106] = 95, [2107] = 2107, [2108] = 2108, - [2109] = 1965, + [2109] = 2109, [2110] = 2110, - [2111] = 2111, - [2112] = 119, - [2113] = 2004, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 1984, - [2119] = 2119, - [2120] = 2120, - [2121] = 1959, - [2122] = 1062, - [2123] = 2123, - [2124] = 1801, + [2111] = 2080, + [2112] = 2050, + [2113] = 2009, + [2114] = 96, + [2115] = 2058, + [2116] = 1261, + [2117] = 1261, + [2118] = 2118, + [2119] = 2036, + [2120] = 2035, + [2121] = 2121, + [2122] = 2122, + [2123] = 2034, + [2124] = 2033, [2125] = 2125, - [2126] = 2008, - [2127] = 1949, - [2128] = 2094, + [2126] = 2126, + [2127] = 2031, + [2128] = 2128, [2129] = 2129, [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2130, - [2134] = 1995, - [2135] = 2013, - [2136] = 2123, + [2131] = 1967, + [2132] = 1959, + [2133] = 2133, + [2134] = 94, + [2135] = 2135, + [2136] = 2136, [2137] = 2137, - [2138] = 2101, - [2139] = 2139, + [2138] = 1829, + [2139] = 2057, [2140] = 2140, - [2141] = 2141, - [2142] = 2100, - [2143] = 95, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, + [2141] = 2012, + [2142] = 1258, + [2143] = 2143, + [2144] = 2102, + [2145] = 2125, + [2146] = 119, [2147] = 2147, - [2148] = 2137, - [2149] = 2149, - [2150] = 2141, - [2151] = 2147, - [2152] = 2140, - [2153] = 2097, - [2154] = 2137, + [2148] = 1261, + [2149] = 2101, + [2150] = 2105, + [2151] = 2151, + [2152] = 2108, + [2153] = 1832, + [2154] = 2121, [2155] = 2155, - [2156] = 2147, - [2157] = 2137, - [2158] = 2079, - [2159] = 2155, - [2160] = 2129, - [2161] = 2147, - [2162] = 2078, - [2163] = 2065, - [2164] = 2137, - [2165] = 2137, - [2166] = 2070, - [2167] = 2155, - [2168] = 2147, - [2169] = 2120, - [2170] = 2170, - [2171] = 2149, - [2172] = 2145, - [2173] = 2173, - [2174] = 1244, - [2175] = 2147, - [2176] = 2173, - [2177] = 2137, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2115, - [2182] = 2144, - [2183] = 2146, - [2184] = 1333, - [2185] = 1331, - [2186] = 2119, - [2187] = 2155, - [2188] = 2137, - [2189] = 2189, - [2190] = 2058, - [2191] = 2155, - [2192] = 2192, - [2193] = 2189, - [2194] = 2189, - [2195] = 2144, - [2196] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 1333, + [2160] = 96, + [2161] = 2075, + [2162] = 2162, + [2163] = 2163, + [2164] = 2162, + [2165] = 2163, + [2166] = 2162, + [2167] = 2163, + [2168] = 2137, + [2169] = 2162, + [2170] = 2163, + [2171] = 2171, + [2172] = 2162, + [2173] = 2163, + [2174] = 2162, + [2175] = 2163, + [2176] = 2155, + [2177] = 2162, + [2178] = 2163, + [2179] = 2155, + [2180] = 2162, + [2181] = 2083, + [2182] = 2162, + [2183] = 2163, + [2184] = 2155, + [2185] = 2110, + [2186] = 2162, + [2187] = 2103, + [2188] = 2163, + [2189] = 2156, + [2190] = 2155, + [2191] = 2157, + [2192] = 2104, + [2193] = 2070, + [2194] = 2194, + [2195] = 2195, + [2196] = 2162, [2197] = 2197, - [2198] = 2198, - [2199] = 2192, - [2200] = 2137, - [2201] = 2201, - [2202] = 2202, - [2203] = 2147, - [2204] = 1246, - [2205] = 2055, - [2206] = 97, - [2207] = 2117, - [2208] = 2116, - [2209] = 2125, - [2210] = 2210, - [2211] = 1246, - [2212] = 2212, - [2213] = 2140, - [2214] = 2212, - [2215] = 2147, - [2216] = 2201, - [2217] = 2141, - [2218] = 2053, - [2219] = 1828, - [2220] = 1321, - [2221] = 2147, + [2198] = 2163, + [2199] = 2140, + [2200] = 2158, + [2201] = 2157, + [2202] = 2156, + [2203] = 2155, + [2204] = 2157, + [2205] = 2133, + [2206] = 2129, + [2207] = 2126, + [2208] = 2208, + [2209] = 2194, + [2210] = 2195, + [2211] = 1258, + [2212] = 2162, + [2213] = 2163, + [2214] = 2158, + [2215] = 2128, + [2216] = 2216, + [2217] = 2156, + [2218] = 2155, + [2219] = 2157, + [2220] = 2220, + [2221] = 2221, [2222] = 2222, - [2223] = 96, - [2224] = 2141, - [2225] = 2072, - [2226] = 2110, - [2227] = 2140, - [2228] = 2111, - [2229] = 2071, - [2230] = 2170, - [2231] = 1244, - [2232] = 1801, - [2233] = 2137, - [2234] = 2234, - [2235] = 2155, - [2236] = 2147, - [2237] = 2237, - [2238] = 2238, - [2239] = 2147, - [2240] = 2137, - [2241] = 1321, - [2242] = 2144, - [2243] = 2192, - [2244] = 1333, - [2245] = 2189, - [2246] = 119, - [2247] = 2247, - [2248] = 2144, - [2249] = 2249, - [2250] = 2155, - [2251] = 2251, - [2252] = 2252, - [2253] = 206, - [2254] = 2057, - [2255] = 2189, - [2256] = 2147, - [2257] = 2137, - [2258] = 2192, - [2259] = 1331, - [2260] = 2137, - [2261] = 2147, + [2223] = 2194, + [2224] = 2195, + [2225] = 2162, + [2226] = 2226, + [2227] = 1261, + [2228] = 2118, + [2229] = 2229, + [2230] = 2163, + [2231] = 2158, + [2232] = 2156, + [2233] = 2155, + [2234] = 1329, + [2235] = 2136, + [2236] = 1333, + [2237] = 2157, + [2238] = 95, + [2239] = 2239, + [2240] = 2240, + [2241] = 2194, + [2242] = 2195, + [2243] = 2226, + [2244] = 2229, + [2245] = 2245, + [2246] = 2246, + [2247] = 2143, + [2248] = 2077, + [2249] = 2074, + [2250] = 2246, + [2251] = 2163, + [2252] = 2162, + [2253] = 2253, + [2254] = 2245, + [2255] = 2253, + [2256] = 2163, + [2257] = 2171, + [2258] = 2158, + [2259] = 2156, + [2260] = 2155, + [2261] = 2261, [2262] = 2262, - [2263] = 199, - [2264] = 2141, - [2265] = 2147, - [2266] = 2140, - [2267] = 94, - [2268] = 2132, - [2269] = 2137, - [2270] = 2192, - [2271] = 2189, - [2272] = 2155, - [2273] = 2144, - [2274] = 2108, - [2275] = 2107, - [2276] = 2276, - [2277] = 2277, + [2263] = 201, + [2264] = 2264, + [2265] = 2239, + [2266] = 1356, + [2267] = 2267, + [2268] = 2268, + [2269] = 1258, + [2270] = 1829, + [2271] = 97, + [2272] = 94, + [2273] = 204, + [2274] = 2274, + [2275] = 2086, + [2276] = 2073, + [2277] = 2109, [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2283, + [2279] = 2079, + [2280] = 1356, + [2281] = 2194, + [2282] = 2195, + [2283] = 119, [2284] = 2284, - [2285] = 2285, + [2285] = 1329, [2286] = 2286, [2287] = 2287, [2288] = 2288, - [2289] = 2289, + [2289] = 1329, [2290] = 2290, [2291] = 2291, - [2292] = 2292, - [2293] = 2293, + [2292] = 2290, + [2293] = 2290, [2294] = 2294, - [2295] = 2295, + [2295] = 2290, [2296] = 2296, [2297] = 2297, [2298] = 2298, [2299] = 2299, - [2300] = 2283, + [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, [2305] = 2305, - [2306] = 2306, + [2306] = 1333, [2307] = 2307, - [2308] = 2308, + [2308] = 2300, [2309] = 2309, - [2310] = 2294, + [2310] = 2310, [2311] = 2311, - [2312] = 2210, + [2312] = 2312, [2313] = 2313, [2314] = 2314, [2315] = 2315, [2316] = 2316, [2317] = 2317, - [2318] = 2299, + [2318] = 2318, [2319] = 2319, - [2320] = 2280, + [2320] = 2320, [2321] = 2321, - [2322] = 2315, - [2323] = 2323, - [2324] = 206, + [2322] = 2322, + [2323] = 2313, + [2324] = 2324, [2325] = 2325, [2326] = 2326, [2327] = 2327, @@ -9415,47 +9429,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 2337, - [2338] = 2281, + [2337] = 2291, + [2338] = 2338, [2339] = 2339, [2340] = 2340, [2341] = 2341, - [2342] = 2342, + [2342] = 2264, [2343] = 2343, [2344] = 2344, - [2345] = 2345, + [2345] = 2220, [2346] = 2346, [2347] = 2347, [2348] = 2348, [2349] = 2349, - [2350] = 2350, - [2351] = 2281, - [2352] = 2352, - [2353] = 2234, + [2350] = 2313, + [2351] = 2313, + [2352] = 2221, + [2353] = 2222, [2354] = 2354, [2355] = 2355, [2356] = 2356, [2357] = 2357, [2358] = 2358, [2359] = 2359, - [2360] = 2311, - [2361] = 2339, + [2360] = 2360, + [2361] = 2313, [2362] = 2362, [2363] = 2363, [2364] = 2364, - [2365] = 2311, + [2365] = 2365, [2366] = 2366, [2367] = 2367, [2368] = 2368, [2369] = 2369, [2370] = 2370, [2371] = 2371, - [2372] = 1333, - [2373] = 2281, + [2372] = 2316, + [2373] = 2373, [2374] = 2374, [2375] = 2375, [2376] = 2376, - [2377] = 2309, + [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, @@ -9468,105 +9482,105 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 2390, - [2391] = 2281, + [2390] = 2296, + [2391] = 2391, [2392] = 2392, [2393] = 2393, [2394] = 2394, [2395] = 2395, [2396] = 2396, [2397] = 2397, - [2398] = 2398, - [2399] = 1331, + [2398] = 2397, + [2399] = 2399, [2400] = 2400, [2401] = 2401, [2402] = 2402, [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 2283, + [2404] = 2341, + [2405] = 204, + [2406] = 2406, [2407] = 2407, [2408] = 2408, - [2409] = 2409, + [2409] = 2363, [2410] = 2410, [2411] = 2411, - [2412] = 2307, + [2412] = 2412, [2413] = 2413, [2414] = 2414, - [2415] = 2294, - [2416] = 2354, - [2417] = 2249, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, [2418] = 2418, - [2419] = 2306, - [2420] = 2281, - [2421] = 2305, + [2419] = 2419, + [2420] = 2420, + [2421] = 2268, [2422] = 2422, - [2423] = 2251, - [2424] = 2252, + [2423] = 2423, + [2424] = 2385, [2425] = 2425, - [2426] = 1333, + [2426] = 2290, [2427] = 2427, - [2428] = 2428, - [2429] = 2305, - [2430] = 2309, - [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2434, + [2428] = 2403, + [2429] = 2429, + [2430] = 2402, + [2431] = 2267, + [2432] = 2399, + [2433] = 2147, + [2434] = 1356, [2435] = 2435, - [2436] = 2306, - [2437] = 2437, + [2436] = 2436, + [2437] = 2316, [2438] = 2438, [2439] = 2439, [2440] = 2440, - [2441] = 2307, + [2441] = 2441, [2442] = 2442, [2443] = 2443, [2444] = 2444, - [2445] = 2309, - [2446] = 2446, + [2445] = 2384, + [2446] = 2385, [2447] = 2447, - [2448] = 2307, - [2449] = 2449, - [2450] = 2311, - [2451] = 2306, + [2448] = 2448, + [2449] = 1356, + [2450] = 2384, + [2451] = 2451, [2452] = 2452, - [2453] = 2339, + [2453] = 2453, [2454] = 2454, - [2455] = 2305, + [2455] = 2455, [2456] = 2456, - [2457] = 2356, + [2457] = 2457, [2458] = 2458, [2459] = 2459, - [2460] = 2237, - [2461] = 2461, + [2460] = 2397, + [2461] = 2399, [2462] = 2462, - [2463] = 2463, - [2464] = 1321, - [2465] = 2465, - [2466] = 2315, - [2467] = 199, - [2468] = 2294, - [2469] = 2469, + [2463] = 2402, + [2464] = 2313, + [2465] = 2403, + [2466] = 2341, + [2467] = 2240, + [2468] = 2468, + [2469] = 2407, [2470] = 2470, [2471] = 2471, [2472] = 2472, - [2473] = 2473, - [2474] = 2474, + [2473] = 2363, + [2474] = 2414, [2475] = 2475, [2476] = 2476, [2477] = 2477, [2478] = 2478, [2479] = 2479, - [2480] = 2480, + [2480] = 201, [2481] = 2481, [2482] = 2482, - [2483] = 2299, + [2483] = 2483, [2484] = 2484, - [2485] = 2283, - [2486] = 2339, - [2487] = 2280, - [2488] = 1321, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, [2489] = 2489, [2490] = 2490, [2491] = 2491, @@ -9574,381 +9588,381 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2493] = 2493, [2494] = 2494, [2495] = 2495, - [2496] = 2496, + [2496] = 2348, [2497] = 2497, - [2498] = 2498, - [2499] = 2428, + [2498] = 2294, + [2499] = 2499, [2500] = 2500, [2501] = 2501, [2502] = 2502, [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, - [2508] = 2508, + [2504] = 2297, + [2505] = 2299, + [2506] = 2301, + [2507] = 2302, + [2508] = 2303, [2509] = 2509, - [2510] = 2510, + [2510] = 2316, [2511] = 2511, [2512] = 2512, [2513] = 2513, [2514] = 2514, [2515] = 2515, - [2516] = 2516, + [2516] = 2307, [2517] = 2517, [2518] = 2518, [2519] = 2519, - [2520] = 2315, + [2520] = 2520, [2521] = 2521, [2522] = 2522, [2523] = 2523, [2524] = 2524, [2525] = 2525, [2526] = 2526, - [2527] = 2321, + [2527] = 2527, [2528] = 2528, - [2529] = 2299, - [2530] = 2530, + [2529] = 2384, + [2530] = 2407, [2531] = 2531, - [2532] = 2532, + [2532] = 2385, [2533] = 2533, - [2534] = 2534, + [2534] = 1329, [2535] = 2535, - [2536] = 2303, - [2537] = 2282, - [2538] = 2279, - [2539] = 2332, + [2536] = 2536, + [2537] = 2327, + [2538] = 2538, + [2539] = 2397, [2540] = 2540, [2541] = 2541, - [2542] = 2506, - [2543] = 2543, - [2544] = 2544, - [2545] = 2337, - [2546] = 2299, - [2547] = 2547, - [2548] = 2280, - [2549] = 2339, + [2542] = 2399, + [2543] = 2402, + [2544] = 2403, + [2545] = 2545, + [2546] = 2408, + [2547] = 2416, + [2548] = 2262, + [2549] = 2341, [2550] = 2550, - [2551] = 2281, + [2551] = 2551, [2552] = 2552, [2553] = 2553, [2554] = 2554, - [2555] = 2555, - [2556] = 2556, - [2557] = 2554, - [2558] = 2558, - [2559] = 2559, - [2560] = 2555, + [2555] = 2407, + [2556] = 2363, + [2557] = 2557, + [2558] = 2414, + [2559] = 2363, + [2560] = 2414, [2561] = 2561, - [2562] = 2280, - [2563] = 2299, - [2564] = 1331, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, [2565] = 2565, - [2566] = 2498, - [2567] = 2497, - [2568] = 2315, + [2566] = 2566, + [2567] = 2567, + [2568] = 2568, [2569] = 2569, - [2570] = 2570, - [2571] = 2496, - [2572] = 2572, - [2573] = 2556, - [2574] = 2530, + [2570] = 2313, + [2571] = 2571, + [2572] = 2414, + [2573] = 2363, + [2574] = 2574, [2575] = 2575, - [2576] = 2495, - [2577] = 2238, - [2578] = 2578, - [2579] = 2437, - [2580] = 2329, - [2581] = 2570, - [2582] = 2582, - [2583] = 2281, - [2584] = 2283, - [2585] = 2494, - [2586] = 2586, + [2576] = 2576, + [2577] = 97, + [2578] = 2407, + [2579] = 2261, + [2580] = 2298, + [2581] = 2581, + [2582] = 2326, + [2583] = 2566, + [2584] = 2319, + [2585] = 2318, + [2586] = 2316, [2587] = 2587, [2588] = 2588, - [2589] = 2409, - [2590] = 2428, - [2591] = 2311, + [2589] = 2447, + [2590] = 2590, + [2591] = 2591, [2592] = 2592, - [2593] = 2400, - [2594] = 2594, - [2595] = 2595, + [2593] = 2593, + [2594] = 2304, + [2595] = 2305, [2596] = 2596, - [2597] = 2309, - [2598] = 2428, - [2599] = 2307, - [2600] = 2306, - [2601] = 2305, - [2602] = 2180, - [2603] = 2179, + [2597] = 2597, + [2598] = 2598, + [2599] = 1333, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 2471, [2604] = 2604, [2605] = 2605, [2606] = 2606, [2607] = 2607, - [2608] = 2608, - [2609] = 2428, - [2610] = 2605, + [2608] = 2341, + [2609] = 2384, + [2610] = 2610, [2611] = 2611, - [2612] = 2178, + [2612] = 2385, [2613] = 2613, - [2614] = 2614, + [2614] = 2367, [2615] = 2615, [2616] = 2616, - [2617] = 97, - [2618] = 2618, + [2617] = 2313, + [2618] = 2403, [2619] = 2619, [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2302, + [2621] = 2402, + [2622] = 2399, + [2623] = 2397, + [2624] = 2624, [2625] = 2625, [2626] = 2626, [2627] = 2627, - [2628] = 2294, + [2628] = 2628, [2629] = 2629, - [2630] = 2493, - [2631] = 2484, - [2632] = 2620, + [2630] = 2630, + [2631] = 2631, + [2632] = 2632, [2633] = 2633, - [2634] = 2285, + [2634] = 2634, [2635] = 2635, - [2636] = 2293, - [2637] = 2540, + [2636] = 2636, + [2637] = 2565, [2638] = 2638, - [2639] = 2295, - [2640] = 2286, - [2641] = 2325, - [2642] = 2535, - [2643] = 2431, - [2644] = 2521, - [2645] = 2432, - [2646] = 2621, - [2647] = 2622, - [2648] = 2623, - [2649] = 2649, - [2650] = 2501, - [2651] = 2297, - [2652] = 2625, - [2653] = 2525, - [2654] = 2298, - [2655] = 2507, + [2639] = 2639, + [2640] = 2640, + [2641] = 2527, + [2642] = 2528, + [2643] = 2540, + [2644] = 2541, + [2645] = 2497, + [2646] = 2381, + [2647] = 2462, + [2648] = 2354, + [2649] = 2429, + [2650] = 2650, + [2651] = 2640, + [2652] = 2519, + [2653] = 2356, + [2654] = 2357, + [2655] = 2606, [2656] = 2656, [2657] = 2657, - [2658] = 2528, - [2659] = 2659, - [2660] = 2316, - [2661] = 2330, - [2662] = 2608, - [2663] = 2604, - [2664] = 2664, - [2665] = 2665, - [2666] = 2550, - [2667] = 2558, - [2668] = 2552, - [2669] = 2433, - [2670] = 2670, - [2671] = 2328, - [2672] = 2333, - [2673] = 2526, - [2674] = 2434, - [2675] = 2334, - [2676] = 2435, - [2677] = 2459, - [2678] = 2347, - [2679] = 2336, - [2680] = 2335, - [2681] = 2331, - [2682] = 2582, - [2683] = 2656, - [2684] = 2629, - [2685] = 2627, - [2686] = 2532, - [2687] = 2438, - [2688] = 2626, - [2689] = 2326, - [2690] = 2341, - [2691] = 2278, + [2658] = 2331, + [2659] = 2605, + [2660] = 2489, + [2661] = 2358, + [2662] = 2332, + [2663] = 2359, + [2664] = 2360, + [2665] = 2487, + [2666] = 2650, + [2667] = 2347, + [2668] = 2333, + [2669] = 2669, + [2670] = 2448, + [2671] = 2346, + [2672] = 2452, + [2673] = 2344, + [2674] = 2365, + [2675] = 2366, + [2676] = 2335, + [2677] = 2339, + [2678] = 2502, + [2679] = 2607, + [2680] = 2343, + [2681] = 2681, + [2682] = 2338, + [2683] = 2336, + [2684] = 2615, + [2685] = 2334, + [2686] = 2616, + [2687] = 2453, + [2688] = 2328, + [2689] = 2500, + [2690] = 2340, + [2691] = 2545, [2692] = 2692, - [2693] = 2693, - [2694] = 2342, - [2695] = 2695, - [2696] = 2614, - [2697] = 2289, - [2698] = 2638, - [2699] = 2619, - [2700] = 2291, - [2701] = 2618, - [2702] = 2659, - [2703] = 2292, - [2704] = 2476, - [2705] = 2439, - [2706] = 2440, - [2707] = 2442, - [2708] = 2344, - [2709] = 2616, - [2710] = 2596, - [2711] = 2348, - [2712] = 2345, - [2713] = 2657, - [2714] = 2425, - [2715] = 2665, - [2716] = 2443, - [2717] = 2444, - [2718] = 2615, - [2719] = 2594, - [2720] = 2720, - [2721] = 2721, - [2722] = 2613, - [2723] = 2721, - [2724] = 2724, - [2725] = 2611, - [2726] = 2446, - [2727] = 2449, - [2728] = 2392, - [2729] = 2607, - [2730] = 2277, - [2731] = 2304, - [2732] = 2606, - [2733] = 2313, + [2693] = 2330, + [2694] = 2329, + [2695] = 2531, + [2696] = 2696, + [2697] = 2620, + [2698] = 2382, + [2699] = 2362, + [2700] = 2383, + [2701] = 2389, + [2702] = 2488, + [2703] = 2501, + [2704] = 2324, + [2705] = 2705, + [2706] = 2321, + [2707] = 2707, + [2708] = 2369, + [2709] = 2709, + [2710] = 2355, + [2711] = 2711, + [2712] = 2435, + [2713] = 2438, + [2714] = 2286, + [2715] = 2624, + [2716] = 2627, + [2717] = 2628, + [2718] = 2314, + [2719] = 2370, + [2720] = 2320, + [2721] = 2550, + [2722] = 2371, + [2723] = 2640, + [2724] = 2439, + [2725] = 2657, + [2726] = 2630, + [2727] = 2631, + [2728] = 2373, + [2729] = 2729, + [2730] = 2374, + [2731] = 2375, + [2732] = 2451, + [2733] = 2376, [2734] = 2734, - [2735] = 2314, - [2736] = 2588, - [2737] = 2734, - [2738] = 2454, - [2739] = 2587, - [2740] = 2458, - [2741] = 2586, - [2742] = 2572, - [2743] = 2592, - [2744] = 2346, - [2745] = 2350, - [2746] = 2561, - [2747] = 2352, - [2748] = 2355, - [2749] = 2362, - [2750] = 2534, - [2751] = 2367, - [2752] = 2752, - [2753] = 2559, - [2754] = 2461, - [2755] = 2357, - [2756] = 2414, - [2757] = 2462, - [2758] = 2397, - [2759] = 2463, - [2760] = 2358, - [2761] = 2359, - [2762] = 2413, - [2763] = 2720, - [2764] = 2363, - [2765] = 2375, - [2766] = 2465, - [2767] = 2470, - [2768] = 2287, - [2769] = 2471, - [2770] = 2472, - [2771] = 2771, - [2772] = 2411, - [2773] = 2547, - [2774] = 2724, - [2775] = 2695, - [2776] = 2544, - [2777] = 2364, - [2778] = 2343, - [2779] = 2384, - [2780] = 2394, - [2781] = 2398, - [2782] = 2368, - [2783] = 2519, - [2784] = 2369, - [2785] = 2408, - [2786] = 2473, - [2787] = 2418, - [2788] = 2407, - [2789] = 2370, - [2790] = 2523, - [2791] = 2522, - [2792] = 2404, - [2793] = 2633, - [2794] = 2395, - [2795] = 2403, - [2796] = 2366, - [2797] = 2474, - [2798] = 2402, - [2799] = 2427, - [2800] = 2657, - [2801] = 2447, - [2802] = 2802, - [2803] = 2456, - [2804] = 2518, - [2805] = 2578, - [2806] = 2349, - [2807] = 2516, - [2808] = 2515, - [2809] = 2692, - [2810] = 2390, - [2811] = 2514, - [2812] = 2396, - [2813] = 1355, - [2814] = 2512, - [2815] = 2511, - [2816] = 2509, - [2817] = 2505, - [2818] = 2513, - [2819] = 2376, - [2820] = 2565, - [2821] = 2504, - [2822] = 2510, - [2823] = 2502, - [2824] = 2500, - [2825] = 2401, - [2826] = 2492, - [2827] = 2323, - [2828] = 2828, - [2829] = 2374, - [2830] = 2491, - [2831] = 2378, - [2832] = 2452, - [2833] = 2422, - [2834] = 2475, - [2835] = 2752, - [2836] = 2575, - [2837] = 2541, - [2838] = 2387, - [2839] = 2490, - [2840] = 2380, - [2841] = 2477, - [2842] = 2317, - [2843] = 2386, - [2844] = 2382, - [2845] = 2569, - [2846] = 2489, - [2847] = 2657, - [2848] = 2478, - [2849] = 2385, - [2850] = 2276, - [2851] = 2381, - [2852] = 2383, - [2853] = 2319, - [2854] = 2479, - [2855] = 2379, - [2856] = 2480, - [2857] = 2481, - [2858] = 2482, - [2859] = 2859, + [2735] = 2427, + [2736] = 2639, + [2737] = 2638, + [2738] = 2636, + [2739] = 2386, + [2740] = 2635, + [2741] = 2741, + [2742] = 2456, + [2743] = 2741, + [2744] = 2592, + [2745] = 2468, + [2746] = 2596, + [2747] = 2470, + [2748] = 2634, + [2749] = 2749, + [2750] = 2633, + [2751] = 2455, + [2752] = 2552, + [2753] = 2425, + [2754] = 2440, + [2755] = 2755, + [2756] = 2476, + [2757] = 2478, + [2758] = 2485, + [2759] = 2711, + [2760] = 2486, + [2761] = 2503, + [2762] = 2509, + [2763] = 2492, + [2764] = 2632, + [2765] = 2380, + [2766] = 2766, + [2767] = 2629, + [2768] = 2491, + [2769] = 2626, + [2770] = 2511, + [2771] = 2553, + [2772] = 2705, + [2773] = 2515, + [2774] = 2490, + [2775] = 2494, + [2776] = 2625, + [2777] = 2619, + [2778] = 2734, + [2779] = 2613, + [2780] = 2611, + [2781] = 2495, + [2782] = 2526, + [2783] = 2499, + [2784] = 2766, + [2785] = 2518, + [2786] = 2520, + [2787] = 2755, + [2788] = 2481, + [2789] = 2525, + [2790] = 2423, + [2791] = 2422, + [2792] = 2669, + [2793] = 2484, + [2794] = 2457, + [2795] = 2483, + [2796] = 2610, + [2797] = 2458, + [2798] = 2420, + [2799] = 2419, + [2800] = 2482, + [2801] = 2418, + [2802] = 2512, + [2803] = 2417, + [2804] = 2524, + [2805] = 2513, + [2806] = 2413, + [2807] = 2604, + [2808] = 2412, + [2809] = 2396, + [2810] = 2640, + [2811] = 2411, + [2812] = 2436, + [2813] = 2533, + [2814] = 2814, + [2815] = 2379, + [2816] = 2535, + [2817] = 2378, + [2818] = 2536, + [2819] = 2387, + [2820] = 2459, + [2821] = 2410, + [2822] = 2454, + [2823] = 2538, + [2824] = 2554, + [2825] = 2388, + [2826] = 2287, + [2827] = 2581, + [2828] = 2563, + [2829] = 2567, + [2830] = 2568, + [2831] = 2391, + [2832] = 2707, + [2833] = 2557, + [2834] = 2575, + [2835] = 2587, + [2836] = 2514, + [2837] = 2392, + [2838] = 2561, + [2839] = 2588, + [2840] = 2393, + [2841] = 2590, + [2842] = 2523, + [2843] = 2591, + [2844] = 2844, + [2845] = 2564, + [2846] = 1344, + [2847] = 2521, + [2848] = 2401, + [2849] = 2709, + [2850] = 2394, + [2851] = 2602, + [2852] = 2377, + [2853] = 2576, + [2854] = 2571, + [2855] = 2395, + [2856] = 2574, + [2857] = 2569, + [2858] = 2601, + [2859] = 2551, [2860] = 2860, - [2861] = 2861, - [2862] = 2862, - [2863] = 2863, - [2864] = 2864, - [2865] = 2865, - [2866] = 2866, - [2867] = 2867, - [2868] = 2868, + [2861] = 2522, + [2862] = 2696, + [2863] = 2472, + [2864] = 2600, + [2865] = 2400, + [2866] = 2598, + [2867] = 2597, + [2868] = 2593, [2869] = 2869, - [2870] = 2859, + [2870] = 2870, [2871] = 2871, [2872] = 2872, [2873] = 2873, @@ -9962,8 +9976,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2881] = 2881, [2882] = 2882, [2883] = 2883, - [2884] = 2882, - [2885] = 2869, + [2884] = 2877, + [2885] = 2885, [2886] = 2886, [2887] = 2887, [2888] = 2888, @@ -9971,332 +9985,342 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2890] = 2890, [2891] = 2891, [2892] = 2892, - [2893] = 2893, - [2894] = 2894, + [2893] = 2891, + [2894] = 2874, [2895] = 2895, [2896] = 2896, - [2897] = 2892, + [2897] = 2877, [2898] = 2898, - [2899] = 2899, - [2900] = 2862, - [2901] = 2859, + [2899] = 2898, + [2900] = 2869, + [2901] = 2901, [2902] = 2902, [2903] = 2903, - [2904] = 2890, + [2904] = 2904, [2905] = 2905, - [2906] = 2906, - [2907] = 119, - [2908] = 2908, - [2909] = 2887, - [2910] = 2910, - [2911] = 2886, + [2906] = 2885, + [2907] = 2907, + [2908] = 2901, + [2909] = 2909, + [2910] = 2898, + [2911] = 2902, [2912] = 2912, - [2913] = 2859, - [2914] = 2871, - [2915] = 2872, - [2916] = 2869, - [2917] = 2882, + [2913] = 2869, + [2914] = 2914, + [2915] = 2915, + [2916] = 2916, + [2917] = 2917, [2918] = 2918, - [2919] = 2919, + [2919] = 2896, [2920] = 2920, - [2921] = 2921, - [2922] = 2893, - [2923] = 2923, - [2924] = 2924, - [2925] = 2925, - [2926] = 2926, - [2927] = 2878, + [2921] = 2895, + [2922] = 2874, + [2923] = 2875, + [2924] = 2876, + [2925] = 2877, + [2926] = 2891, + [2927] = 2927, [2928] = 2928, - [2929] = 2880, + [2929] = 2929, [2930] = 2930, - [2931] = 2931, - [2932] = 2880, + [2931] = 2889, + [2932] = 2932, [2933] = 2933, [2934] = 2934, - [2935] = 2878, - [2936] = 2882, - [2937] = 2869, - [2938] = 2886, - [2939] = 2877, + [2935] = 2935, + [2936] = 2936, + [2937] = 2883, + [2938] = 2938, + [2939] = 2934, [2940] = 2940, [2941] = 2941, - [2942] = 2942, - [2943] = 2877, - [2944] = 2862, - [2945] = 2945, - [2946] = 2946, - [2947] = 2859, - [2948] = 2871, - [2949] = 2872, - [2950] = 2878, - [2951] = 2880, + [2942] = 2889, + [2943] = 2883, + [2944] = 2944, + [2945] = 2882, + [2946] = 2891, + [2947] = 2874, + [2948] = 2895, + [2949] = 2949, + [2950] = 2950, + [2951] = 2878, [2952] = 2952, - [2953] = 2882, - [2954] = 2869, - [2955] = 2886, + [2953] = 2953, + [2954] = 2898, + [2955] = 2955, [2956] = 2956, - [2957] = 2957, - [2958] = 2873, - [2959] = 2872, - [2960] = 2862, - [2961] = 2871, - [2962] = 2871, - [2963] = 2872, - [2964] = 2878, - [2965] = 2880, - [2966] = 2894, - [2967] = 2882, - [2968] = 2869, - [2969] = 2886, - [2970] = 2970, - [2971] = 2971, - [2972] = 2894, - [2973] = 2973, - [2974] = 2862, - [2975] = 2975, - [2976] = 2871, - [2977] = 2977, - [2978] = 2869, - [2979] = 2886, - [2980] = 2980, - [2981] = 2878, - [2982] = 2862, - [2983] = 2862, - [2984] = 2860, - [2985] = 2871, - [2986] = 2869, - [2987] = 2886, - [2988] = 2988, - [2989] = 2989, - [2990] = 2898, - [2991] = 2862, - [2992] = 2893, - [2993] = 2869, - [2994] = 2886, - [2995] = 2971, - [2996] = 2892, - [2997] = 2890, - [2998] = 2862, - [2999] = 2999, - [3000] = 2869, - [3001] = 2886, - [3002] = 3002, - [3003] = 3003, - [3004] = 2887, - [3005] = 2862, - [3006] = 3006, - [3007] = 2886, - [3008] = 3008, - [3009] = 2898, - [3010] = 2886, - [3011] = 2862, - [3012] = 3012, - [3013] = 2886, + [2957] = 2875, + [2958] = 2876, + [2959] = 2877, + [2960] = 2883, + [2961] = 2889, + [2962] = 2962, + [2963] = 2891, + [2964] = 2874, + [2965] = 2895, + [2966] = 2876, + [2967] = 2902, + [2968] = 2968, + [2969] = 2969, + [2970] = 2898, + [2971] = 2878, + [2972] = 2876, + [2973] = 2877, + [2974] = 2883, + [2975] = 2889, + [2976] = 2885, + [2977] = 2891, + [2978] = 2874, + [2979] = 2895, + [2980] = 2876, + [2981] = 2875, + [2982] = 2982, + [2983] = 2983, + [2984] = 2898, + [2985] = 2985, + [2986] = 2876, + [2987] = 2987, + [2988] = 2874, + [2989] = 2895, + [2990] = 2990, + [2991] = 2904, + [2992] = 2992, + [2993] = 2898, + [2994] = 2870, + [2995] = 2876, + [2996] = 2874, + [2997] = 2895, + [2998] = 2998, + [2999] = 2935, + [3000] = 3000, + [3001] = 2898, + [3002] = 2898, + [3003] = 2874, + [3004] = 2895, + [3005] = 3005, + [3006] = 2891, + [3007] = 3007, + [3008] = 2898, + [3009] = 2901, + [3010] = 2874, + [3011] = 2895, + [3012] = 2901, + [3013] = 2874, [3014] = 3014, - [3015] = 3015, - [3016] = 3016, - [3017] = 2862, - [3018] = 2869, - [3019] = 2882, - [3020] = 3020, - [3021] = 2892, - [3022] = 2890, - [3023] = 3023, - [3024] = 3024, + [3015] = 2898, + [3016] = 2904, + [3017] = 2895, + [3018] = 3018, + [3019] = 3019, + [3020] = 2902, + [3021] = 2898, + [3022] = 2990, + [3023] = 2895, + [3024] = 2869, [3025] = 3025, [3026] = 3026, - [3027] = 3027, - [3028] = 3028, - [3029] = 3012, - [3030] = 2925, - [3031] = 2882, - [3032] = 2869, - [3033] = 2880, - [3034] = 2887, + [3027] = 2898, + [3028] = 2896, + [3029] = 3029, + [3030] = 2896, + [3031] = 3031, + [3032] = 3032, + [3033] = 2895, + [3034] = 2895, [3035] = 3035, [3036] = 3036, - [3037] = 3037, - [3038] = 2898, - [3039] = 2945, - [3040] = 2928, - [3041] = 3041, - [3042] = 2891, - [3043] = 3043, - [3044] = 3024, - [3045] = 2886, - [3046] = 2989, - [3047] = 3047, + [3037] = 2874, + [3038] = 3038, + [3039] = 2891, + [3040] = 3040, + [3041] = 2873, + [3042] = 3042, + [3043] = 2896, + [3044] = 2869, + [3045] = 2902, + [3046] = 3046, + [3047] = 2889, [3048] = 3048, - [3049] = 2887, - [3050] = 3050, + [3049] = 2955, + [3050] = 2938, [3051] = 3051, - [3052] = 2895, - [3053] = 2864, - [3054] = 2865, - [3055] = 2866, - [3056] = 2867, - [3057] = 2868, - [3058] = 2874, - [3059] = 2875, - [3060] = 2880, - [3061] = 2899, - [3062] = 2903, + [3052] = 2882, + [3053] = 3053, + [3054] = 2987, + [3055] = 2883, + [3056] = 2920, + [3057] = 3057, + [3058] = 3058, + [3059] = 2879, + [3060] = 2885, + [3061] = 3061, + [3062] = 3062, [3063] = 3063, [3064] = 3064, - [3065] = 2970, - [3066] = 2973, - [3067] = 2980, - [3068] = 2988, - [3069] = 3014, - [3070] = 3016, - [3071] = 3036, - [3072] = 3035, - [3073] = 3050, - [3074] = 3041, - [3075] = 3075, - [3076] = 2879, - [3077] = 2890, - [3078] = 2941, - [3079] = 3079, + [3065] = 3065, + [3066] = 3066, + [3067] = 3067, + [3068] = 3068, + [3069] = 3069, + [3070] = 3018, + [3071] = 3071, + [3072] = 3072, + [3073] = 2917, + [3074] = 2904, + [3075] = 3035, + [3076] = 2969, + [3077] = 3077, + [3078] = 3078, + [3079] = 3036, [3080] = 3080, [3081] = 3081, - [3082] = 3082, - [3083] = 2957, + [3082] = 2992, + [3083] = 3083, [3084] = 3084, - [3085] = 3051, - [3086] = 3048, - [3087] = 3028, - [3088] = 3027, - [3089] = 3026, - [3090] = 3025, - [3091] = 3091, + [3085] = 3046, + [3086] = 3029, + [3087] = 3087, + [3088] = 3088, + [3089] = 2998, + [3090] = 3090, + [3091] = 2892, [3092] = 3092, - [3093] = 3023, - [3094] = 2910, - [3095] = 2892, + [3093] = 3093, + [3094] = 3094, + [3095] = 3095, [3096] = 3096, - [3097] = 2940, - [3098] = 2952, - [3099] = 2999, - [3100] = 3092, + [3097] = 3097, + [3098] = 3098, + [3099] = 3099, + [3100] = 3051, [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3104, - [3105] = 119, - [3106] = 3084, - [3107] = 3107, - [3108] = 2934, - [3109] = 2862, + [3102] = 3053, + [3103] = 3087, + [3104] = 2914, + [3105] = 3032, + [3106] = 3099, + [3107] = 3019, + [3108] = 3058, + [3109] = 3109, [3110] = 3110, - [3111] = 3063, - [3112] = 3104, - [3113] = 2878, - [3114] = 3014, - [3115] = 3016, - [3116] = 3036, - [3117] = 3082, - [3118] = 3075, - [3119] = 3119, - [3120] = 3079, - [3121] = 3081, - [3122] = 2877, - [3123] = 2952, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, + [3111] = 3025, + [3112] = 2890, + [3113] = 3113, + [3114] = 2905, + [3115] = 3080, + [3116] = 3109, + [3117] = 3077, + [3118] = 3118, + [3119] = 3098, + [3120] = 3081, + [3121] = 2886, + [3122] = 2915, + [3123] = 2934, + [3124] = 3036, + [3125] = 3080, + [3126] = 3081, [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 2975, - [3131] = 3037, - [3132] = 3132, - [3133] = 3014, - [3134] = 3016, - [3135] = 3036, - [3136] = 3136, - [3137] = 3075, - [3138] = 2894, - [3139] = 3079, - [3140] = 2906, - [3141] = 2952, - [3142] = 2905, - [3143] = 2931, - [3144] = 2861, - [3145] = 3145, - [3146] = 3103, - [3147] = 3147, - [3148] = 2893, - [3149] = 3149, - [3150] = 3014, - [3151] = 3016, - [3152] = 3036, - [3153] = 3153, - [3154] = 3075, - [3155] = 3079, - [3156] = 3156, - [3157] = 3157, - [3158] = 2898, - [3159] = 3081, - [3160] = 3160, - [3161] = 3079, - [3162] = 2859, - [3163] = 2920, - [3164] = 3164, - [3165] = 3079, - [3166] = 2908, - [3167] = 2923, - [3168] = 2930, - [3169] = 3015, - [3170] = 2977, - [3171] = 2886, - [3172] = 3008, + [3128] = 3046, + [3129] = 3038, + [3130] = 2998, + [3131] = 2892, + [3132] = 2883, + [3133] = 3058, + [3134] = 2882, + [3135] = 119, + [3136] = 3062, + [3137] = 3137, + [3138] = 3138, + [3139] = 2940, + [3140] = 2907, + [3141] = 3141, + [3142] = 2889, + [3143] = 3036, + [3144] = 3080, + [3145] = 3081, + [3146] = 3063, + [3147] = 3046, + [3148] = 2871, + [3149] = 2998, + [3150] = 3064, + [3151] = 3058, + [3152] = 2872, + [3153] = 3007, + [3154] = 3065, + [3155] = 2901, + [3156] = 3066, + [3157] = 3067, + [3158] = 3014, + [3159] = 3159, + [3160] = 3036, + [3161] = 3080, + [3162] = 3081, + [3163] = 3068, + [3164] = 3046, + [3165] = 2998, + [3166] = 3166, + [3167] = 3069, + [3168] = 3168, + [3169] = 2898, + [3170] = 3097, + [3171] = 2998, + [3172] = 2953, [3173] = 3173, - [3174] = 2934, - [3175] = 3110, - [3176] = 3047, - [3177] = 3177, - [3178] = 3075, - [3179] = 3179, - [3180] = 3124, - [3181] = 3126, - [3182] = 3128, - [3183] = 3129, - [3184] = 3132, - [3185] = 3102, - [3186] = 3006, - [3187] = 3179, - [3188] = 3153, - [3189] = 2889, - [3190] = 2873, + [3174] = 2895, + [3175] = 2998, + [3176] = 2916, + [3177] = 3057, + [3178] = 2928, + [3179] = 2950, + [3180] = 119, + [3181] = 3040, + [3182] = 2949, + [3183] = 2968, + [3184] = 3071, + [3185] = 3185, + [3186] = 2982, + [3187] = 3187, + [3188] = 3096, + [3189] = 3189, + [3190] = 3083, [3191] = 3191, - [3192] = 3160, - [3193] = 3002, - [3194] = 2876, - [3195] = 3177, - [3196] = 2871, - [3197] = 3079, - [3198] = 2873, - [3199] = 3199, - [3200] = 2926, - [3201] = 2863, - [3202] = 3091, - [3203] = 3156, - [3204] = 3064, - [3205] = 3205, - [3206] = 3149, - [3207] = 2872, - [3208] = 3173, - [3209] = 2871, - [3210] = 2918, - [3211] = 3164, - [3212] = 3199, - [3213] = 2956, - [3214] = 2942, - [3215] = 2872, - [3216] = 3147, - [3217] = 3080, - [3218] = 2862, + [3192] = 3192, + [3193] = 3193, + [3194] = 3005, + [3195] = 2930, + [3196] = 2941, + [3197] = 3095, + [3198] = 2929, + [3199] = 2933, + [3200] = 3094, + [3201] = 2878, + [3202] = 3093, + [3203] = 2932, + [3204] = 2875, + [3205] = 3185, + [3206] = 3092, + [3207] = 2877, + [3208] = 3187, + [3209] = 3189, + [3210] = 2936, + [3211] = 3048, + [3212] = 3191, + [3213] = 3192, + [3214] = 3061, + [3215] = 3078, + [3216] = 2944, + [3217] = 3193, + [3218] = 2876, + [3219] = 3042, + [3220] = 2918, + [3221] = 3113, + [3222] = 3110, + [3223] = 2962, + [3224] = 3026, + [3225] = 3072, + [3226] = 2875, + [3227] = 3090, + [3228] = 2903, }; static inline bool aux_sym_identifier_token2_character_set_1(int32_t c) { @@ -10885,29 +10909,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(814); if (lookahead == '\n') ADVANCE(914); if (lookahead == '!') ADVANCE(2166); - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2971); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2973); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '\'') ADVANCE(3256); - if (lookahead == '(') ADVANCE(2463); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2415); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2968); - if (lookahead == '-') ADVANCE(2422); + if (lookahead == '\'') ADVANCE(3258); + if (lookahead == '(') ADVANCE(2465); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2416); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2970); + if (lookahead == '-') ADVANCE(2424); if (lookahead == '.') ADVANCE(828); - if (lookahead == '/') ADVANCE(2215); - if (lookahead == ':') ADVANCE(2175); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2333); - if (lookahead == '=') ADVANCE(2174); - if (lookahead == '>') ADVANCE(2338); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '@') ADVANCE(2196); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == '\\') ADVANCE(2346); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == '/') ADVANCE(2216); + if (lookahead == ':') ADVANCE(2176); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2334); + if (lookahead == '=') ADVANCE(2175); + if (lookahead == '>') ADVANCE(2339); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '@') ADVANCE(2197); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == '\\') ADVANCE(2347); + if (lookahead == ']') ADVANCE(2464); if (lookahead == '_') ADVANCE(977); if (lookahead == '{') ADVANCE(996); if (lookahead == '|') ADVANCE(933); @@ -10925,18 +10949,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1: if (lookahead == '\t') SKIP(1) - if (lookahead == ' ') ADVANCE(2186); + if (lookahead == ' ') ADVANCE(2187); END_STATE(); case 2: if (lookahead == '\t') SKIP(1) - if (lookahead == ' ') ADVANCE(2186); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == ' ') ADVANCE(2187); + if (lookahead == '\\') ADVANCE(2186); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2184); + lookahead != '\n') ADVANCE(2185); END_STATE(); case 3: if (lookahead == '\t') SKIP(1) - if (lookahead == ' ') ADVANCE(2186); + if (lookahead == ' ') ADVANCE(2187); if (lookahead == 'A' || lookahead == 'a') ADVANCE(939); if (lookahead == 'B' || @@ -10978,215 +11002,215 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 4: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(95) - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2532); - if (lookahead == '\\') ADVANCE(2346); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2534); + if (lookahead == '\\') ADVANCE(2347); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(992); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 5: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(96) - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(992); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 6: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(121) - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2532); - if (lookahead == '\\') ADVANCE(2346); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2534); + if (lookahead == '\\') ADVANCE(2347); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(992); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 7: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(122) - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(992); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 8: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(97) - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '<') ADVANCE(2532); - if (lookahead == '\\') ADVANCE(2346); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '<') ADVANCE(2534); + if (lookahead == '\\') ADVANCE(2347); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 9: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(123) - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '<') ADVANCE(2532); - if (lookahead == '\\') ADVANCE(2346); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '<') ADVANCE(2534); + if (lookahead == '\\') ADVANCE(2347); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 10: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(98) - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 11: - if (lookahead == '\t') ADVANCE(2531); + if (lookahead == '\t') ADVANCE(2533); if (lookahead == ' ') SKIP(124) - if (lookahead == '*') ADVANCE(2531); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '*') ADVANCE(2533); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2531); + lookahead == '}') ADVANCE(2533); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2531); + lookahead == '~') ADVANCE(2533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2531); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2533); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2531); + lookahead != '\n') ADVANCE(2533); END_STATE(); case 12: if (lookahead == '\t') SKIP(13) - if (lookahead == ' ') ADVANCE(2186); + if (lookahead == ' ') ADVANCE(2187); if (lookahead == '!') ADVANCE(2166); if (lookahead == '&') ADVANCE(2169); if (lookahead == '+') ADVANCE(233); if (lookahead == '-') ADVANCE(234); - if (lookahead == ':') ADVANCE(2175); + if (lookahead == ':') ADVANCE(2176); if (lookahead == '<') ADVANCE(672); - if (lookahead == '=') ADVANCE(2174); + if (lookahead == '=') ADVANCE(2175); if (lookahead == '?') ADVANCE(2173); if (lookahead == '\\') ADVANCE(650); if (lookahead == '^') ADVANCE(235); @@ -11197,94 +11221,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '\t') SKIP(13) - if (lookahead == ' ') ADVANCE(2186); + if (lookahead == ' ') ADVANCE(2187); if (lookahead == '&') ADVANCE(2169); if (lookahead == '<') ADVANCE(672); if (lookahead == '?') ADVANCE(2173); if (lookahead == '\\') ADVANCE(650); END_STATE(); case 14: - if (lookahead == '\t') SKIP(15) - if (lookahead == ' ') ADVANCE(2186); + if (lookahead == '\t') SKIP(14) + if (lookahead == ' ') ADVANCE(2200); + if (lookahead == '<') ADVANCE(2209); + if (lookahead == '\\') ADVANCE(2208); + if (lookahead == 'c') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2203); + if (lookahead == 'l') ADVANCE(2205); + if (lookahead == 'n') ADVANCE(2206); + if (lookahead == 't') ADVANCE(2204); + if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(2199); + END_STATE(); + case 15: + if (lookahead == '\t') SKIP(16) + if (lookahead == ' ') ADVANCE(2187); if (lookahead == '+') ADVANCE(233); if (lookahead == '-') ADVANCE(234); - if (lookahead == ':') ADVANCE(2175); + if (lookahead == ':') ADVANCE(2176); if (lookahead == '<') ADVANCE(672); - if (lookahead == '=') ADVANCE(2174); + if (lookahead == '=') ADVANCE(2175); if (lookahead == '\\') ADVANCE(650); if (lookahead == '^') ADVANCE(235); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 15: - if (lookahead == '\t') SKIP(15) - if (lookahead == ' ') ADVANCE(2186); + case 16: + if (lookahead == '\t') SKIP(16) + if (lookahead == ' ') ADVANCE(2187); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 16: - if (lookahead == '\t') SKIP(16) - if (lookahead == ' ') ADVANCE(2199); - if (lookahead == '<') ADVANCE(2208); - if (lookahead == '\\') ADVANCE(2207); - if (lookahead == 'c') ADVANCE(2205); - if (lookahead == 'i') ADVANCE(2202); - if (lookahead == 'l') ADVANCE(2204); - if (lookahead == 'n') ADVANCE(2206); - if (lookahead == 't') ADVANCE(2203); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(2198); - END_STATE(); case 17: if (lookahead == '\t') SKIP(17) - if (lookahead == ' ') ADVANCE(2200); - if (lookahead == 'c') ADVANCE(2205); - if (lookahead == 'i') ADVANCE(2202); - if (lookahead == 'l') ADVANCE(2204); + if (lookahead == ' ') ADVANCE(2201); + if (lookahead == 'c') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2203); + if (lookahead == 'l') ADVANCE(2205); if (lookahead == 'n') ADVANCE(2206); - if (lookahead == 't') ADVANCE(2203); + if (lookahead == 't') ADVANCE(2204); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(2198); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(2199); END_STATE(); case 18: - if (lookahead == '\t') SKIP(18) - if (lookahead == ' ') ADVANCE(2186); - if (lookahead == '<') ADVANCE(672); - if (lookahead == '\\') ADVANCE(650); + if (lookahead == '\t') ADVANCE(3280); + if (lookahead == ' ') SKIP(18) + if (lookahead == '<') ADVANCE(3290); + if (lookahead == '\\') ADVANCE(3288); + if (lookahead == 'c') ADVANCE(3286); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(3293); END_STATE(); case 19: - if (lookahead == '\t') SKIP(18) - if (lookahead == ' ') ADVANCE(2186); - if (lookahead == '<') ADVANCE(2182); - if (lookahead == '\\') ADVANCE(2180); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2184); + if (lookahead == '\t') SKIP(19) + if (lookahead == ' ') ADVANCE(2187); + if (lookahead == '<') ADVANCE(672); + if (lookahead == '\\') ADVANCE(650); END_STATE(); case 20: - if (lookahead == '\t') ADVANCE(3278); - if (lookahead == ' ') SKIP(20) - if (lookahead == '<') ADVANCE(3288); - if (lookahead == '\\') ADVANCE(3286); - if (lookahead == 'c') ADVANCE(3284); + if (lookahead == '\t') SKIP(19) + if (lookahead == ' ') ADVANCE(2187); + if (lookahead == '<') ADVANCE(2183); + if (lookahead == '\\') ADVANCE(2181); if (lookahead != 0 && - lookahead != '\n') ADVANCE(3291); + lookahead != '\n') ADVANCE(2185); END_STATE(); case 21: - if (lookahead == '\t') ADVANCE(3279); + if (lookahead == '\t') ADVANCE(3281); if (lookahead == ' ') SKIP(21) - if (lookahead == 'c') ADVANCE(3284); + if (lookahead == 'c') ADVANCE(3286); if (lookahead != 0 && - lookahead != '\n') ADVANCE(3291); + lookahead != '\n') ADVANCE(3293); END_STATE(); case 22: if (lookahead == '\t') SKIP(22) - if (lookahead == ' ') ADVANCE(2201); + if (lookahead == ' ') ADVANCE(2202); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(2198); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(2199); END_STATE(); case 23: if (lookahead == '\t') SKIP(23) @@ -11294,32 +11318,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t') SKIP(23) if (lookahead == ' ') ADVANCE(817); if (lookahead == '!') ADVANCE(2166); - if (lookahead == '\'') ADVANCE(3256); - if (lookahead == 'N') ADVANCE(3272); + if (lookahead == '\'') ADVANCE(3258); + if (lookahead == 'N') ADVANCE(3274); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3273); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3275); END_STATE(); case 25: if (lookahead == '\t') SKIP(23) if (lookahead == ' ') ADVANCE(817); - if (lookahead == '*') ADVANCE(2494); - if (lookahead == '\\') ADVANCE(2493); + if (lookahead == '*') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2495); if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 26: if (lookahead == '\n') ADVANCE(912); @@ -11333,9 +11357,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 28: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -11344,22 +11368,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 29: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(100) @@ -11367,50 +11391,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 30: if (lookahead == '!') ADVANCE(2166); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); + if (lookahead == '$') ADVANCE(2228); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2424); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2426); if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(2453); + if (lookahead == '0') ADVANCE(2455); if (lookahead == '?') ADVANCE(246); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1000); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 31: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '%') ADVANCE(2971); - if (lookahead == '\'') ADVANCE(3258); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == '%') ADVANCE(2973); + if (lookahead == '\'') ADVANCE(3260); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '.') ADVANCE(828); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == ';') ADVANCE(2213); if (lookahead == '<') ADVANCE(672); - if (lookahead == '?') ADVANCE(2216); + if (lookahead == '?') ADVANCE(2217); if (lookahead == '\\') ADVANCE(108); if (lookahead == 'e') ADVANCE(2120); if (lookahead == 'u') ADVANCE(1990); @@ -11423,137 +11447,137 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 32: if (lookahead == '!') ADVANCE(2166); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '.') ADVANCE(154); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '0') ADVANCE(2458); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || lookahead == ' ') SKIP(114) if (('+' <= lookahead && lookahead <= '-')) ADVANCE(157); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 33: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2501); + lookahead == ' ') ADVANCE(2503); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 34: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2502); + lookahead == ' ') ADVANCE(2504); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 35: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2501); + lookahead == ' ') ADVANCE(2503); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 36: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2502); + lookahead == ' ') ADVANCE(2504); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 37: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2503); + lookahead == ' ') ADVANCE(2505); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 38: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2504); + lookahead == ' ') ADVANCE(2506); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 39: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); + if (lookahead == '*') ADVANCE(2417); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2503); + lookahead == ' ') ADVANCE(2505); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 40: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2416); + if (lookahead == '*') ADVANCE(2417); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2504); + lookahead == ' ') ADVANCE(2506); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 41: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -11562,20 +11586,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 42: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(126) @@ -11583,19 +11607,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 43: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2479); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -11604,23 +11628,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 44: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == 'A') ADVANCE(2467); - if (lookahead == 'O') ADVANCE(2468); - if (lookahead == 'P') ADVANCE(2466); - if (lookahead == 'S') ADVANCE(2469); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == 'A') ADVANCE(2469); + if (lookahead == 'O') ADVANCE(2470); + if (lookahead == 'P') ADVANCE(2468); + if (lookahead == 'S') ADVANCE(2471); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(130) @@ -11628,19 +11652,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 45: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2479); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(132) @@ -11648,19 +11672,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 46: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '<') ADVANCE(920); if (lookahead == '\\') ADVANCE(929); if (lookahead == '\t' || @@ -11669,22 +11693,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r') ADVANCE(919); END_STATE(); case 47: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '\\') ADVANCE(930); if (lookahead == '\t' || lookahead == ' ') SKIP(267) @@ -11692,132 +11716,132 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r') ADVANCE(919); END_STATE(); case 48: if (lookahead == '!') ADVANCE(2166); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2522); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2509); + lookahead == ' ') ADVANCE(2511); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 49: if (lookahead == '!') ADVANCE(2166); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2510); + lookahead == ' ') ADVANCE(2512); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 50: if (lookahead == '!') ADVANCE(2166); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2522); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2509); + lookahead == ' ') ADVANCE(2511); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 51: if (lookahead == '!') ADVANCE(2166); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2510); + lookahead == ' ') ADVANCE(2512); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 52: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2522); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2511); + lookahead == ' ') ADVANCE(2513); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 53: if (lookahead == '!') ADVANCE(2166); - if (lookahead == '/') ADVANCE(2215); + if (lookahead == '/') ADVANCE(2216); if (lookahead == ':') ADVANCE(815); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2512); + lookahead == ' ') ADVANCE(2514); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 54: if (lookahead == '!') ADVANCE(2166); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2522); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2511); + lookahead == ' ') ADVANCE(2513); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 55: if (lookahead == '!') ADVANCE(2166); if (lookahead == ':') ADVANCE(815); - if (lookahead == '?') ADVANCE(2216); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '?') ADVANCE(2217); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2512); + lookahead == ' ') ADVANCE(2514); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 56: if (lookahead == '!') ADVANCE(2166); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3100); - if (lookahead == 'l') ADVANCE(3074); + if (lookahead == 'c') ADVANCE(3102); + if (lookahead == 'l') ADVANCE(3076); if (lookahead == '\t' || - lookahead == ' ') SKIP(203) + lookahead == ' ') SKIP(202) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 57: if (lookahead == '!') ADVANCE(2166); @@ -11839,19 +11863,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(919); END_STATE(); case 59: - if (lookahead == '!') ADVANCE(2449); + if (lookahead == '!') ADVANCE(2451); if (lookahead == '#') ADVANCE(948); - if (lookahead == '$') ADVANCE(2227); + if (lookahead == '$') ADVANCE(2228); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2424); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2426); if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(2333); + if (lookahead == '<') ADVANCE(2334); if (lookahead == '@') ADVANCE(978); if (lookahead == 'A') ADVANCE(938); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == 'a') ADVANCE(935); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || @@ -11899,18 +11923,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 60: - if (lookahead == '!') ADVANCE(2449); + if (lookahead == '!') ADVANCE(2451); if (lookahead == '#') ADVANCE(948); - if (lookahead == '$') ADVANCE(2227); + if (lookahead == '$') ADVANCE(2228); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2424); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2426); if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(2333); + if (lookahead == '<') ADVANCE(2334); if (lookahead == '@') ADVANCE(978); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == 'a') ADVANCE(947); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || @@ -11924,97 +11948,97 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 61: - if (lookahead == '!') ADVANCE(2449); + if (lookahead == '!') ADVANCE(2451); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); + if (lookahead == '$') ADVANCE(2228); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2424); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2426); if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(2453); + if (lookahead == '0') ADVANCE(2455); if (lookahead == '?') ADVANCE(246); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1000); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 62: - if (lookahead == '!') ADVANCE(2449); + if (lookahead == '!') ADVANCE(2451); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); + if (lookahead == '$') ADVANCE(2228); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2424); - if (lookahead == '0') ADVANCE(2453); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2426); + if (lookahead == '0') ADVANCE(2455); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1000); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || lookahead == ' ') SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 63: - if (lookahead == '!') ADVANCE(2449); - if (lookahead == '#') ADVANCE(2419); - if (lookahead == '$') ADVANCE(2227); + if (lookahead == '!') ADVANCE(2451); + if (lookahead == '#') ADVANCE(2421); + if (lookahead == '$') ADVANCE(2228); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2423); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2425); if (lookahead == '.') ADVANCE(154); - if (lookahead == '0') ADVANCE(2453); + if (lookahead == '0') ADVANCE(2455); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == ';') ADVANCE(2213); if (lookahead == '<') ADVANCE(672); if (lookahead == '=') ADVANCE(2150); if (lookahead == '?') ADVANCE(2173); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'a') ADVANCE(1000); if (lookahead == '{') ADVANCE(993); if (lookahead == '}') ADVANCE(995); if (lookahead == '\t' || lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 64: - if (lookahead == '!') ADVANCE(2450); + if (lookahead == '!') ADVANCE(2452); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2170); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2423); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2453); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2425); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2455); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); @@ -12022,60 +12046,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(651); if (lookahead == '\t' || lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 65: - if (lookahead == '!') ADVANCE(2450); + if (lookahead == '!') ADVANCE(2452); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2170); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2423); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2453); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2425); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2455); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); if (lookahead == '{') ADVANCE(993); if (lookahead == '|') ADVANCE(651); if (lookahead == '\t' || lookahead == ' ') SKIP(65) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 66: - if (lookahead == '!') ADVANCE(2450); + if (lookahead == '!') ADVANCE(2452); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2170); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2423); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2425); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '0') ADVANCE(989); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(980); if (lookahead == 'i') ADVANCE(982); @@ -12089,24 +12113,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z')) ADVANCE(984); END_STATE(); case 67: - if (lookahead == '!') ADVANCE(2450); + if (lookahead == '!') ADVANCE(2452); if (lookahead == '#') ADVANCE(648); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2170); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2423); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2425); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '0') ADVANCE(989); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(980); if (lookahead == 'i') ADVANCE(982); if (lookahead == '{') ADVANCE(993); @@ -12119,24 +12143,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z')) ADVANCE(984); END_STATE(); case 68: - if (lookahead == '!') ADVANCE(2450); + if (lookahead == '!') ADVANCE(2452); if (lookahead == '#') ADVANCE(1984); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2170); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2423); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2425); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '0') ADVANCE(1529); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(1521); if (lookahead == 'i') ADVANCE(1523); @@ -12150,24 +12174,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1525); END_STATE(); case 69: - if (lookahead == '!') ADVANCE(2450); + if (lookahead == '!') ADVANCE(2452); if (lookahead == '#') ADVANCE(1984); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2170); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2225); - if (lookahead == '-') ADVANCE(2423); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2226); + if (lookahead == '-') ADVANCE(2425); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '0') ADVANCE(1529); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == '@') ADVANCE(807); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1521); if (lookahead == 'i') ADVANCE(1523); if (lookahead == '{') ADVANCE(996); @@ -12181,8 +12205,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 70: if (lookahead == '!') ADVANCE(2168); - if (lookahead == '<') ADVANCE(2584); - if (lookahead == '\\') ADVANCE(2553); + if (lookahead == '<') ADVANCE(2586); + if (lookahead == '\\') ADVANCE(2555); if (lookahead == '{') ADVANCE(994); if (lookahead == '\t' || lookahead == ' ') SKIP(223) @@ -12225,7 +12249,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 71: if (lookahead == '!') ADVANCE(2168); @@ -12271,17 +12295,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 72: if (lookahead == '!') ADVANCE(2167); - if (lookahead == '<') ADVANCE(2190); - if (lookahead == '\\') ADVANCE(2188); + if (lookahead == '<') ADVANCE(2191); + if (lookahead == '\\') ADVANCE(2189); if (lookahead == '\t' || lookahead == ' ') SKIP(229) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(2192); + lookahead != '\r') ADVANCE(2193); END_STATE(); case 73: if (lookahead == '!') ADVANCE(2167); @@ -12289,28 +12313,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(654) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(2192); + lookahead != '\r') ADVANCE(2193); END_STATE(); case 74: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'i') ADVANCE(986); if (lookahead == '|') ADVANCE(651); if (lookahead == '}') ADVANCE(995); @@ -12323,24 +12347,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 75: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'i') ADVANCE(593); if (lookahead == '|') ADVANCE(651); if (lookahead == '}') ADVANCE(995); @@ -12349,24 +12373,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 76: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'i') ADVANCE(487); if (lookahead == '|') ADVANCE(651); if (lookahead == '}') ADVANCE(995); @@ -12375,76 +12399,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 77: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'i') ADVANCE(487); if (lookahead == '|') ADVANCE(651); if (lookahead == '}') ADVANCE(995); if (lookahead == '\t' || lookahead == ' ') SKIP(76) if (lookahead == 'e' || - lookahead == 's') ADVANCE(3371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + lookahead == 's') ADVANCE(3373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); END_STATE(); case 78: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == 'N') ADVANCE(255); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'b') ADVANCE(465); + if (lookahead == 'b') ADVANCE(464); if (lookahead == 'c') ADVANCE(613); - if (lookahead == 'f') ADVANCE(532); - if (lookahead == 'g') ADVANCE(626); + if (lookahead == 'f') ADVANCE(534); + if (lookahead == 'g') ADVANCE(624); if (lookahead == 'i') ADVANCE(593); if (lookahead == 's') ADVANCE(601); - if (lookahead == 't') ADVANCE(387); + if (lookahead == 't') ADVANCE(360); if (lookahead == '|') ADVANCE(651); if (lookahead == '\t' || lookahead == ' ') SKIP(78) END_STATE(); case 79: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); @@ -12458,19 +12482,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 80: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(980); if (lookahead == 'i') ADVANCE(982); @@ -12485,19 +12509,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 81: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'i') ADVANCE(986); if (lookahead == '|') ADVANCE(651); @@ -12510,19 +12534,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 82: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'i') ADVANCE(593); if (lookahead == '|') ADVANCE(651); @@ -12531,19 +12555,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 83: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); if (lookahead == '{') ADVANCE(993); @@ -12556,19 +12580,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(980); if (lookahead == 'i') ADVANCE(982); if (lookahead == '{') ADVANCE(993); @@ -12582,19 +12606,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 85: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); @@ -12608,19 +12632,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 86: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); @@ -12628,53 +12652,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(651); if (lookahead == '\t' || lookahead == ' ') SKIP(86) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 87: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); if (lookahead == 'N') ADVANCE(255); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == 'b') ADVANCE(465); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == 'b') ADVANCE(464); if (lookahead == 'c') ADVANCE(613); - if (lookahead == 'f') ADVANCE(532); - if (lookahead == 'g') ADVANCE(626); + if (lookahead == 'f') ADVANCE(534); + if (lookahead == 'g') ADVANCE(624); if (lookahead == 'i') ADVANCE(487); if (lookahead == 's') ADVANCE(601); - if (lookahead == 't') ADVANCE(387); + if (lookahead == 't') ADVANCE(360); if (lookahead == '|') ADVANCE(651); if (lookahead == '\t' || lookahead == ' ') SKIP(87) END_STATE(); case 88: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1000); if (lookahead == 'i') ADVANCE(1002); if (lookahead == '{') ADVANCE(993); @@ -12687,19 +12711,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 89: if (lookahead == '!') ADVANCE(231); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'i') ADVANCE(593); if (lookahead == '|') ADVANCE(651); if (lookahead == '\t' || @@ -12709,19 +12733,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(231); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(1983); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'a') ADVANCE(1521); if (lookahead == 'i') ADVANCE(1523); @@ -12737,19 +12761,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(231); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(1983); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'a') ADVANCE(1521); if (lookahead == 'i') ADVANCE(1523); if (lookahead == '{') ADVANCE(996); @@ -12768,24 +12792,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'i') ADVANCE(1972); if (lookahead == '{') ADVANCE(996); if (lookahead == '|') ADVANCE(651); @@ -12801,19 +12825,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '-') ADVANCE(2426); - if (lookahead == '.') ADVANCE(2218); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '<') ADVANCE(2341); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '-') ADVANCE(2428); + if (lookahead == '.') ADVANCE(2219); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '<') ADVANCE(2342); if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'i') ADVANCE(1972); if (lookahead == '{') ADVANCE(996); @@ -12829,19 +12853,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == '%') ADVANCE(2211); + if (lookahead == '%') ADVANCE(2212); if (lookahead == '&') ADVANCE(109); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == '*') ADVANCE(2417); - if (lookahead == '+') ADVANCE(2226); - if (lookahead == '-') ADVANCE(2425); - if (lookahead == '.') ADVANCE(2219); - if (lookahead == '/') ADVANCE(2214); - if (lookahead == '<') ADVANCE(2340); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == '*') ADVANCE(2418); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(2427); + if (lookahead == '.') ADVANCE(2220); + if (lookahead == '/') ADVANCE(2215); + if (lookahead == '<') ADVANCE(2341); if (lookahead == '=') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2432); - if (lookahead == '?') ADVANCE(2173); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '>') ADVANCE(2434); + if (lookahead == '?') ADVANCE(2174); + if (lookahead == '[') ADVANCE(2463); if (lookahead == 'i') ADVANCE(1972); if (lookahead == '{') ADVANCE(996); if (lookahead == '|') ADVANCE(651); @@ -12849,10 +12873,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(89) END_STATE(); case 95: - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -12862,22 +12886,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 96: - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(96) @@ -12886,21 +12910,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 97: - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -12910,21 +12934,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 98: - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(98) @@ -12933,21 +12957,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 99: - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -12957,21 +12981,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 100: - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(100) @@ -12980,39 +13004,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (lookahead == '$' || lookahead == '%' || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 101: if (lookahead == '#') ADVANCE(799); - if (lookahead == '\'') ADVANCE(3256); - if (lookahead == 'N') ADVANCE(3262); + if (lookahead == '\'') ADVANCE(3258); + if (lookahead == 'N') ADVANCE(3264); if (lookahead == '_') ADVANCE(2145); if (lookahead == '\t' || lookahead == ' ') SKIP(653) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3251); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3265); END_STATE(); case 102: - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '\'') ADVANCE(809); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '+') ADVANCE(2221); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '+') ADVANCE(2222); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '-') ADVANCE(157); - if (lookahead == '.') ADVANCE(2217); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '.') ADVANCE(2218); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2458); if (lookahead == ':') ADVANCE(815); if (lookahead == '<') ADVANCE(672); if (lookahead == '=') ADVANCE(2150); @@ -13020,35 +13044,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(807); if (lookahead == '\\') ADVANCE(107); if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'b') ADVANCE(623); if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'd') ADVANCE(430); + if (lookahead == 'd') ADVANCE(433); if (lookahead == 'e') ADVANCE(640); - if (lookahead == 'f') ADVANCE(433); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'f') ADVANCE(531); + if (lookahead == 'i') ADVANCE(308); if (lookahead == 'k') ADVANCE(365); if (lookahead == 'l') ADVANCE(453); - if (lookahead == 'n') ADVANCE(283); - if (lookahead == 'p') ADVANCE(578); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'n') ADVANCE(333); + if (lookahead == 'r') ADVANCE(362); if (lookahead == 's') ADVANCE(455); - if (lookahead == 't') ADVANCE(569); + if (lookahead == 't') ADVANCE(386); if (lookahead == '\t' || lookahead == ' ') SKIP(102) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2964); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2966); END_STATE(); case 103: - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '\'') ADVANCE(809); - if (lookahead == '+') ADVANCE(2223); - if (lookahead == ',') ADVANCE(2968); + if (lookahead == '+') ADVANCE(2224); + if (lookahead == ',') ADVANCE(2970); if (lookahead == '-') ADVANCE(157); - if (lookahead == '.') ADVANCE(2217); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '.') ADVANCE(2218); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2458); if (lookahead == ':') ADVANCE(815); if (lookahead == '?') ADVANCE(2173); if (lookahead == '@') ADVANCE(807); @@ -13057,19 +13078,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(2160); if (lookahead == '\t' || lookahead == ' ') SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(2163); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2964); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2966); END_STATE(); case 104: - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '\'') ADVANCE(809); - if (lookahead == '+') ADVANCE(2223); + if (lookahead == '+') ADVANCE(2224); if (lookahead == '-') ADVANCE(157); - if (lookahead == '.') ADVANCE(2217); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '.') ADVANCE(2218); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2458); if (lookahead == ':') ADVANCE(815); if (lookahead == '?') ADVANCE(2173); if (lookahead == '@') ADVANCE(807); @@ -13078,40 +13099,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(2160); if (lookahead == '\t' || lookahead == ' ') SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(2163); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2964); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2966); END_STATE(); case 105: - if (lookahead == '&') ADVANCE(2230); - if (lookahead == ')') ADVANCE(2524); - if (lookahead == '/') ADVANCE(2228); - if (lookahead == '?') ADVANCE(2229); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == ')') ADVANCE(2526); + if (lookahead == '/') ADVANCE(2229); + if (lookahead == '?') ADVANCE(2230); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 106: - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '/') ADVANCE(2228); - if (lookahead == '?') ADVANCE(2229); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '/') ADVANCE(2229); + if (lookahead == '?') ADVANCE(2230); END_STATE(); case 107: - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '/') ADVANCE(2228); - if (lookahead == '?') ADVANCE(2229); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '/') ADVANCE(2229); + if (lookahead == '?') ADVANCE(2230); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 108: - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 109: - if (lookahead == '&') ADVANCE(2421); + if (lookahead == '&') ADVANCE(2423); END_STATE(); case 110: - if (lookahead == '\'') ADVANCE(3258); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == '\'') ADVANCE(3260); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == ';') ADVANCE(2213); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(108); if (lookahead == '\t' || @@ -13121,40 +13142,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); case 111: - if (lookahead == '(') ADVANCE(2525); + if (lookahead == '(') ADVANCE(2527); END_STATE(); case 112: - if (lookahead == '(') ADVANCE(2526); + if (lookahead == '(') ADVANCE(2528); END_STATE(); case 113: - if (lookahead == ')') ADVANCE(2195); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '-') ADVANCE(236); if (lookahead == '<') ADVANCE(672); if (lookahead == '=') ADVANCE(2150); if (lookahead == '\\') ADVANCE(650); if (lookahead == '\t' || lookahead == ' ') SKIP(113) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2964); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2966); END_STATE(); case 114: - if (lookahead == ')') ADVANCE(2195); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '.') ADVANCE(154); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '0') ADVANCE(2458); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); if (lookahead == '{') ADVANCE(993); if (lookahead == '\t' || lookahead == ' ') SKIP(114) if (('+' <= lookahead && lookahead <= '-')) ADVANCE(157); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 115: - if (lookahead == '*') ADVANCE(2415); + if (lookahead == '*') ADVANCE(2416); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); if (lookahead == '\t' || @@ -13163,64 +13184,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 116: - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2505); + lookahead == ' ') ADVANCE(2507); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 117: - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2506); + lookahead == ' ') ADVANCE(2508); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 118: - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2507); + lookahead == ' ') ADVANCE(2509); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 119: - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2508); + lookahead == ' ') ADVANCE(2510); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 120: - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2522); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(923); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2508); + lookahead == ' ') ADVANCE(2510); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 121: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -13230,20 +13251,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 122: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == '/') ADVANCE(2214); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(122) @@ -13252,19 +13273,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '.') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 123: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -13274,19 +13295,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 124: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2220); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2221); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(124) @@ -13295,19 +13316,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 125: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -13317,19 +13338,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 126: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '+') ADVANCE(2222); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '+') ADVANCE(2223); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(126) @@ -13338,25 +13359,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || (',' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 127: - if (lookahead == '*') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2479); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); - if (lookahead == 'c') ADVANCE(2473); - if (lookahead == 'i') ADVANCE(2470); - if (lookahead == 'l') ADVANCE(2472); - if (lookahead == 'n') ADVANCE(2474); - if (lookahead == 't') ADVANCE(2471); + if (lookahead == 'c') ADVANCE(2476); + if (lookahead == 'i') ADVANCE(2472); + if (lookahead == 'l') ADVANCE(2474); + if (lookahead == 'n') ADVANCE(2475); + if (lookahead == 't') ADVANCE(2473); if (lookahead == '\t' || lookahead == ' ') SKIP(127) if (lookahead == '!' || @@ -13364,18 +13385,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 128: - if (lookahead == '*') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2479); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(928); if (lookahead == '\t' || @@ -13385,19 +13406,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 129: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == '@') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == '@') ADVANCE(2197); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(129) @@ -13405,22 +13426,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 130: - if (lookahead == '*') ADVANCE(2477); - if (lookahead == 'A') ADVANCE(2467); - if (lookahead == 'O') ADVANCE(2468); - if (lookahead == 'P') ADVANCE(2466); - if (lookahead == 'S') ADVANCE(2469); + if (lookahead == '*') ADVANCE(2479); + if (lookahead == 'A') ADVANCE(2469); + if (lookahead == 'O') ADVANCE(2470); + if (lookahead == 'P') ADVANCE(2468); + if (lookahead == 'S') ADVANCE(2471); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(130) @@ -13429,24 +13450,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 131: - if (lookahead == '*') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2479); if (lookahead == '\\') ADVANCE(922); - if (lookahead == 'c') ADVANCE(2473); - if (lookahead == 'i') ADVANCE(2470); - if (lookahead == 'l') ADVANCE(2472); - if (lookahead == 'n') ADVANCE(2474); - if (lookahead == 't') ADVANCE(2471); + if (lookahead == 'c') ADVANCE(2476); + if (lookahead == 'i') ADVANCE(2472); + if (lookahead == 'l') ADVANCE(2474); + if (lookahead == 'n') ADVANCE(2475); + if (lookahead == 't') ADVANCE(2473); if (lookahead == '\t' || lookahead == ' ') SKIP(131) if (lookahead == '!' || @@ -13454,18 +13475,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 132: - if (lookahead == '*') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2479); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(132) @@ -13474,26 +13495,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2476); + lookahead == '}') ADVANCE(2478); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2475); + lookahead == '~') ADVANCE(2477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2467); END_STATE(); case 133: - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '<') ADVANCE(672); - if (lookahead == '\\') ADVANCE(2492); - if (lookahead == 'b') ADVANCE(2487); - if (lookahead == 'f') ADVANCE(2482); - if (lookahead == 'g') ADVANCE(2485); - if (lookahead == 'l') ADVANCE(2484); - if (lookahead == 'n') ADVANCE(2479); - if (lookahead == 'p') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2494); + if (lookahead == 'b') ADVANCE(2489); + if (lookahead == 'f') ADVANCE(2484); + if (lookahead == 'g') ADVANCE(2487); + if (lookahead == 'l') ADVANCE(2485); + if (lookahead == 'n') ADVANCE(2481); + if (lookahead == 'p') ADVANCE(2488); if (lookahead == '\t' || lookahead == ' ') SKIP(193) if (lookahead == '!' || @@ -13501,23 +13522,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 134: - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '<') ADVANCE(672); - if (lookahead == '\\') ADVANCE(2492); - if (lookahead == 'b') ADVANCE(2487); - if (lookahead == 'f') ADVANCE(2482); - if (lookahead == 'g') ADVANCE(2485); + if (lookahead == '\\') ADVANCE(2494); + if (lookahead == 'b') ADVANCE(2489); + if (lookahead == 'f') ADVANCE(2484); + if (lookahead == 'g') ADVANCE(2487); if (lookahead == '\t' || lookahead == ' ') SKIP(194) if (lookahead == '!' || @@ -13525,46 +13546,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 135: - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '<') ADVANCE(672); - if (lookahead == '\\') ADVANCE(2492); - if (lookahead == 'c') ADVANCE(2488); - if (lookahead == 'i') ADVANCE(2480); - if (lookahead == 'l') ADVANCE(2483); - if (lookahead == 'n') ADVANCE(2489); - if (lookahead == 't') ADVANCE(2481); + if (lookahead == '\\') ADVANCE(2494); + if (lookahead == 'c') ADVANCE(2491); + if (lookahead == 'i') ADVANCE(2482); + if (lookahead == 'l') ADVANCE(2486); + if (lookahead == 'n') ADVANCE(2490); + if (lookahead == 't') ADVANCE(2483); if (lookahead == '\t' || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(203) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 136: - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '<') ADVANCE(672); - if (lookahead == '\\') ADVANCE(2492); + if (lookahead == '\\') ADVANCE(2494); if (lookahead == '\t' || lookahead == ' ') SKIP(210) if (lookahead == '!' || @@ -13572,18 +13593,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 137: - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(929); if (lookahead == '\t' || @@ -13593,25 +13614,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 138: - if (lookahead == '*') ADVANCE(2494); - if (lookahead == '\\') ADVANCE(2493); - if (lookahead == 'b') ADVANCE(2487); - if (lookahead == 'f') ADVANCE(2482); - if (lookahead == 'g') ADVANCE(2485); - if (lookahead == 'l') ADVANCE(2484); - if (lookahead == 'n') ADVANCE(2479); - if (lookahead == 'p') ADVANCE(2486); + if (lookahead == '*') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2495); + if (lookahead == 'b') ADVANCE(2489); + if (lookahead == 'f') ADVANCE(2484); + if (lookahead == 'g') ADVANCE(2487); + if (lookahead == 'l') ADVANCE(2485); + if (lookahead == 'n') ADVANCE(2481); + if (lookahead == 'p') ADVANCE(2488); if (lookahead == '\t' || lookahead == ' ') SKIP(292) if (lookahead == '!' || @@ -13619,22 +13640,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 139: - if (lookahead == '*') ADVANCE(2494); - if (lookahead == '\\') ADVANCE(2493); - if (lookahead == 'b') ADVANCE(2487); - if (lookahead == 'f') ADVANCE(2482); - if (lookahead == 'g') ADVANCE(2485); + if (lookahead == '*') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2495); + if (lookahead == 'b') ADVANCE(2489); + if (lookahead == 'f') ADVANCE(2484); + if (lookahead == 'g') ADVANCE(2487); if (lookahead == '\t' || lookahead == ' ') SKIP(293) if (lookahead == '!' || @@ -13642,43 +13663,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 140: - if (lookahead == '*') ADVANCE(2494); - if (lookahead == '\\') ADVANCE(2493); - if (lookahead == 'c') ADVANCE(2488); - if (lookahead == 'i') ADVANCE(2480); - if (lookahead == 'l') ADVANCE(2483); - if (lookahead == 'n') ADVANCE(2489); - if (lookahead == 't') ADVANCE(2481); + if (lookahead == '*') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2495); + if (lookahead == 'c') ADVANCE(2491); + if (lookahead == 'i') ADVANCE(2482); + if (lookahead == 'l') ADVANCE(2486); + if (lookahead == 'n') ADVANCE(2490); + if (lookahead == 't') ADVANCE(2483); if (lookahead == '\t' || - lookahead == ' ') SKIP(308) + lookahead == ' ') SKIP(315) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 141: - if (lookahead == '*') ADVANCE(2494); + if (lookahead == '*') ADVANCE(2496); if (lookahead == '\\') ADVANCE(930); if (lookahead == '\t' || lookahead == ' ') SKIP(132) @@ -13687,42 +13708,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(2491); + lookahead == '}') ADVANCE(2493); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(2490); + lookahead == '~') ADVANCE(2492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2478); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2480); END_STATE(); case 142: - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3379); - if (lookahead == 'n') ADVANCE(3382); - if (lookahead == 's') ADVANCE(3394); - if (lookahead == 't') ADVANCE(3408); + if (lookahead == 'c') ADVANCE(3381); + if (lookahead == 'n') ADVANCE(3384); + if (lookahead == 's') ADVANCE(3396); + if (lookahead == 't') ADVANCE(3410); if (lookahead == '\t' || lookahead == ' ') SKIP(142) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= ']') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 143: - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '<') ADVANCE(2584); - if (lookahead == '\\') ADVANCE(2553); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '<') ADVANCE(2586); + if (lookahead == '\\') ADVANCE(2555); if (lookahead == '\t' || lookahead == ' ') SKIP(143) if (lookahead != 0 && - lookahead != '\n') ADVANCE(2961); + lookahead != '\n') ADVANCE(2963); END_STATE(); case 144: - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '}') ADVANCE(995); if (lookahead == '\t' || lookahead == ' ') SKIP(144) @@ -13730,28 +13751,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2528); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2530); END_STATE(); case 145: - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '\t' || lookahead == ' ') SKIP(145) if (lookahead != 0 && - lookahead != '\n') ADVANCE(2961); + lookahead != '\n') ADVANCE(2963); END_STATE(); case 146: if (lookahead == ',') ADVANCE(652); if (lookahead == '-') ADVANCE(147); - if (lookahead == '}') ADVANCE(2497); + if (lookahead == '}') ADVANCE(2499); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); END_STATE(); case 147: if (lookahead == ',') ADVANCE(652); - if (lookahead == '}') ADVANCE(2497); + if (lookahead == '}') ADVANCE(2499); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); END_STATE(); case 148: - if (lookahead == '-') ADVANCE(310); + if (lookahead == '-') ADVANCE(309); END_STATE(); case 149: if (lookahead == '-') ADVANCE(168); @@ -13762,13 +13783,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(880); END_STATE(); case 151: - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); END_STATE(); case 152: if (lookahead == '-') ADVANCE(162); END_STATE(); case 153: - if (lookahead == '.') ADVANCE(2197); + if (lookahead == '.') ADVANCE(2198); END_STATE(); case 154: if (lookahead == '.') ADVANCE(153); @@ -13779,19 +13800,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(155); END_STATE(); case 156: - if (lookahead == '0') ADVANCE(2456); - if (lookahead == '>') ADVANCE(2464); + if (lookahead == '0') ADVANCE(2458); + if (lookahead == '>') ADVANCE(2466); if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'b') ADVANCE(272); - if (lookahead == 'c') ADVANCE(524); + if (lookahead == 'b') ADVANCE(274); + if (lookahead == 'c') ADVANCE(525); if (lookahead == 'k') ADVANCE(370); - if (lookahead == 'n') ADVANCE(275); - if (lookahead == 'r') ADVANCE(277); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'r') ADVANCE(279); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); END_STATE(); case 157: - if (lookahead == '0') ADVANCE(2456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (lookahead == '0') ADVANCE(2458); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); END_STATE(); case 158: if (lookahead == '0') ADVANCE(837); @@ -13822,8 +13843,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(856); END_STATE(); case 162: - if (lookahead == '0') ADVANCE(2327); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2329); + if (lookahead == '0') ADVANCE(2328); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2330); END_STATE(); case 163: if (lookahead == '1') ADVANCE(172); @@ -13914,54 +13935,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '9') ADVANCE(860); END_STATE(); case 187: - if (lookahead == '<') ADVANCE(2333); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '<') ADVANCE(2334); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2369); + lookahead == 'a') ADVANCE(2370); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2374); + lookahead == 'b') ADVANCE(2375); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2370); + lookahead == 'c') ADVANCE(2371); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2368); + lookahead == 'd') ADVANCE(2369); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2382); + lookahead == 'e') ADVANCE(2383); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2384); + lookahead == 'f') ADVANCE(2385); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2378); + lookahead == 'h') ADVANCE(2379); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2380); + lookahead == 'i') ADVANCE(2381); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2376); + lookahead == 'k') ADVANCE(2377); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2377); + lookahead == 'l') ADVANCE(2378); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2367); + lookahead == 'm') ADVANCE(2368); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2381); + lookahead == 'n') ADVANCE(2382); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2373); + lookahead == 'p') ADVANCE(2374); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2379); + lookahead == 'r') ADVANCE(2380); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2371); + lookahead == 's') ADVANCE(2372); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2372); + lookahead == 't') ADVANCE(2373); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2383); + lookahead == 'u') ADVANCE(2384); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2375); + lookahead == 'x') ADVANCE(2376); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(2366); + lookahead != '|') ADVANCE(2367); END_STATE(); case 188: - if (lookahead == '<') ADVANCE(2333); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '<') ADVANCE(2334); + if (lookahead == '\\') ADVANCE(2346); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(2366); + lookahead != '|') ADVANCE(2367); END_STATE(); case 189: if (lookahead == '<') ADVANCE(672); @@ -14001,26 +14022,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 192: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'a') ADVANCE(3027); - if (lookahead == 'c') ADVANCE(3138); - if (lookahead == 'r') ADVANCE(3040); + if (lookahead == 'a') ADVANCE(3029); + if (lookahead == 'c') ADVANCE(3140); + if (lookahead == 'r') ADVANCE(3043); if (lookahead == '\t' || lookahead == ' ') SKIP(192) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 193: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'b') ADVANCE(623); - if (lookahead == 'f') ADVANCE(431); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'l') ADVANCE(453); - if (lookahead == 'n') ADVANCE(282); - if (lookahead == 'p') ADVANCE(578); + if (lookahead == 'f') ADVANCE(426); + if (lookahead == 'g') ADVANCE(569); + if (lookahead == 'l') ADVANCE(447); + if (lookahead == 'n') ADVANCE(272); + if (lookahead == 'p') ADVANCE(579); if (lookahead == '\t' || lookahead == ' ') SKIP(193) END_STATE(); @@ -14028,20 +14049,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); if (lookahead == 'b') ADVANCE(623); - if (lookahead == 'f') ADVANCE(431); - if (lookahead == 'g') ADVANCE(566); + if (lookahead == 'f') ADVANCE(426); + if (lookahead == 'g') ADVANCE(569); if (lookahead == '\t' || lookahead == ' ') SKIP(194) END_STATE(); case 195: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'b') ADVANCE(465); + if (lookahead == 'b') ADVANCE(464); if (lookahead == 'c') ADVANCE(613); - if (lookahead == 'f') ADVANCE(532); - if (lookahead == 'g') ADVANCE(626); + if (lookahead == 'f') ADVANCE(534); + if (lookahead == 'g') ADVANCE(624); if (lookahead == 's') ADVANCE(601); - if (lookahead == 't') ADVANCE(387); + if (lookahead == 't') ADVANCE(360); if (lookahead == '\t' || lookahead == ' ') SKIP(195) END_STATE(); @@ -14096,80 +14117,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 199: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3009); - if (lookahead == 'd') ADVANCE(3066); - if (lookahead == 'e') ADVANCE(3107); - if (lookahead == 'f') ADVANCE(3133); - if (lookahead == 'k') ADVANCE(3038); - if (lookahead == 'm') ADVANCE(2992); - if (lookahead == 'n') ADVANCE(3028); - if (lookahead == 'o') ADVANCE(3118); - if (lookahead == 's') ADVANCE(3083); - if (lookahead == 't') ADVANCE(3158); + if (lookahead == 'c') ADVANCE(3011); + if (lookahead == 'd') ADVANCE(3068); + if (lookahead == 'e') ADVANCE(3109); + if (lookahead == 'f') ADVANCE(3135); + if (lookahead == 'k') ADVANCE(3040); + if (lookahead == 'm') ADVANCE(2994); + if (lookahead == 'n') ADVANCE(3030); + if (lookahead == 'o') ADVANCE(3119); + if (lookahead == 's') ADVANCE(3085); + if (lookahead == 't') ADVANCE(3160); if (lookahead == '\t' || lookahead == ' ') SKIP(199) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 200: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3011); - if (lookahead == 'n') ADVANCE(3032); - if (lookahead == 's') ADVANCE(3080); - if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'c') ADVANCE(3013); + if (lookahead == 'n') ADVANCE(3034); + if (lookahead == 's') ADVANCE(3082); + if (lookahead == 't') ADVANCE(3155); if (lookahead == '\t' || lookahead == ' ') SKIP(200) if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (('[' <= lookahead && lookahead <= ']')) ADVANCE(3420); + lookahead == '@') ADVANCE(3200); + if (('[' <= lookahead && lookahead <= ']')) ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 201: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3187); - if (lookahead == 'i') ADVANCE(3015); - if (lookahead == 'l') ADVANCE(3077); - if (lookahead == 'n') ADVANCE(3182); - if (lookahead == 't') ADVANCE(3051); + if (lookahead == 'c') ADVANCE(3189); + if (lookahead == 'i') ADVANCE(3017); + if (lookahead == 'l') ADVANCE(3079); + if (lookahead == 'n') ADVANCE(3184); + if (lookahead == 't') ADVANCE(3053); if (lookahead == '\t' || lookahead == ' ') SKIP(201) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 202: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'i') ADVANCE(302); - if (lookahead == 'l') ADVANCE(447); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 't') ADVANCE(385); + if (lookahead == 'c') ADVANCE(3102); + if (lookahead == 'l') ADVANCE(3076); if (lookahead == '\t' || lookahead == ' ') SKIP(202) + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 203: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3100); - if (lookahead == 'l') ADVANCE(3074); + if (lookahead == 'c') ADVANCE(629); + if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'l') ADVANCE(453); + if (lookahead == 'n') ADVANCE(627); + if (lookahead == 't') ADVANCE(385); if (lookahead == '\t' || lookahead == ' ') SKIP(203) - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); END_STATE(); case 204: if (lookahead == '<') ADVANCE(672); @@ -14191,21 +14212,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 205: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(3010); - if (lookahead == 'd') ADVANCE(3066); - if (lookahead == 'e') ADVANCE(3189); - if (lookahead == 'f') ADVANCE(3133); - if (lookahead == 'k') ADVANCE(3038); - if (lookahead == 'n') ADVANCE(3028); - if (lookahead == 's') ADVANCE(3083); - if (lookahead == 't') ADVANCE(3158); + if (lookahead == 'c') ADVANCE(3012); + if (lookahead == 'd') ADVANCE(3068); + if (lookahead == 'e') ADVANCE(3191); + if (lookahead == 'f') ADVANCE(3135); + if (lookahead == 'k') ADVANCE(3040); + if (lookahead == 'n') ADVANCE(3030); + if (lookahead == 's') ADVANCE(3085); + if (lookahead == 't') ADVANCE(3160); if (lookahead == '\t' || lookahead == ' ') SKIP(205) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 206: if (lookahead == '<') ADVANCE(672); @@ -14220,14 +14241,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 207: if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'm') ADVANCE(3000); + if (lookahead == 'm') ADVANCE(3002); if (lookahead == '\t' || lookahead == ' ') SKIP(207) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 208: if (lookahead == '<') ADVANCE(672); @@ -14263,14 +14284,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 212: if (lookahead == '<') ADVANCE(2159); END_STATE(); case 213: - if (lookahead == '<') ADVANCE(2336); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '<') ADVANCE(2337); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == '|') ADVANCE(933); if (lookahead == '\t' || lookahead == ' ') SKIP(215) @@ -14315,8 +14336,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 214: - if (lookahead == '<') ADVANCE(2336); - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '<') ADVANCE(2337); + if (lookahead == '\\') ADVANCE(2346); if (lookahead == '|') ADVANCE(933); if (lookahead == '\t' || lookahead == ' ') SKIP(215) @@ -14325,128 +14346,128 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 215: - if (lookahead == '<') ADVANCE(2344); + if (lookahead == '<') ADVANCE(2345); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(215) if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '|') ADVANCE(2365); + lookahead != '|') ADVANCE(2366); END_STATE(); case 216: - if (lookahead == '<') ADVANCE(2334); - if (lookahead == '\\') ADVANCE(2346); + if (lookahead == '<') ADVANCE(2335); + if (lookahead == '\\') ADVANCE(2347); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2366); + lookahead == ' ') ADVANCE(2367); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2369); + lookahead == 'a') ADVANCE(2370); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2374); + lookahead == 'b') ADVANCE(2375); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2370); + lookahead == 'c') ADVANCE(2371); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2368); + lookahead == 'd') ADVANCE(2369); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2382); + lookahead == 'e') ADVANCE(2383); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2384); + lookahead == 'f') ADVANCE(2385); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2378); + lookahead == 'h') ADVANCE(2379); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2380); + lookahead == 'i') ADVANCE(2381); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2376); + lookahead == 'k') ADVANCE(2377); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2377); + lookahead == 'l') ADVANCE(2378); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2367); + lookahead == 'm') ADVANCE(2368); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2381); + lookahead == 'n') ADVANCE(2382); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2373); + lookahead == 'p') ADVANCE(2374); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2379); + lookahead == 'r') ADVANCE(2380); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2371); + lookahead == 's') ADVANCE(2372); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2372); + lookahead == 't') ADVANCE(2373); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2383); + lookahead == 'u') ADVANCE(2384); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2375); + lookahead == 'x') ADVANCE(2376); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(2366); + lookahead != '|') ADVANCE(2367); END_STATE(); case 217: - if (lookahead == '<') ADVANCE(2334); - if (lookahead == '\\') ADVANCE(2346); + if (lookahead == '<') ADVANCE(2335); + if (lookahead == '\\') ADVANCE(2347); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2366); + lookahead == ' ') ADVANCE(2367); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(2366); + lookahead != '|') ADVANCE(2367); END_STATE(); case 218: - if (lookahead == '<') ADVANCE(2522); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2513); + lookahead == ' ') ADVANCE(2515); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 219: - if (lookahead == '<') ADVANCE(2522); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2514); + lookahead == ' ') ADVANCE(2516); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 220: - if (lookahead == '<') ADVANCE(2335); - if (lookahead == '\\') ADVANCE(3238); - if (lookahead == 'b') ADVANCE(3222); - if (lookahead == 'c') ADVANCE(3236); - if (lookahead == 'f') ADVANCE(3227); - if (lookahead == 'g') ADVANCE(3237); - if (lookahead == 's') ADVANCE(3233); - if (lookahead == 't') ADVANCE(3214); + if (lookahead == '<') ADVANCE(2336); + if (lookahead == '\\') ADVANCE(3240); + if (lookahead == 'b') ADVANCE(3224); + if (lookahead == 'c') ADVANCE(3238); + if (lookahead == 'f') ADVANCE(3229); + if (lookahead == 'g') ADVANCE(3239); + if (lookahead == 's') ADVANCE(3235); + if (lookahead == 't') ADVANCE(3216); if (lookahead == '\t' || lookahead == ' ') SKIP(195) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(3241); + lookahead != '\r') ADVANCE(3243); END_STATE(); case 221: - if (lookahead == '<') ADVANCE(2337); - if (lookahead == 'b') ADVANCE(3222); - if (lookahead == 'c') ADVANCE(3236); - if (lookahead == 'f') ADVANCE(3227); - if (lookahead == 'g') ADVANCE(3237); - if (lookahead == 's') ADVANCE(3233); - if (lookahead == 't') ADVANCE(3214); + if (lookahead == '<') ADVANCE(2338); + if (lookahead == 'b') ADVANCE(3224); + if (lookahead == 'c') ADVANCE(3238); + if (lookahead == 'f') ADVANCE(3229); + if (lookahead == 'g') ADVANCE(3239); + if (lookahead == 's') ADVANCE(3235); + if (lookahead == 't') ADVANCE(3216); if (lookahead == '\t' || lookahead == ' ') SKIP(295) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(3241); + lookahead != '\r') ADVANCE(3243); END_STATE(); case 222: - if (lookahead == '<') ADVANCE(2337); + if (lookahead == '<') ADVANCE(2338); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 223: - if (lookahead == '<') ADVANCE(2584); - if (lookahead == '\\') ADVANCE(2553); + if (lookahead == '<') ADVANCE(2586); + if (lookahead == '\\') ADVANCE(2555); if (lookahead == '{') ADVANCE(994); if (lookahead == '\t' || lookahead == ' ') SKIP(223) @@ -14489,50 +14510,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 224: - if (lookahead == '<') ADVANCE(2584); - if (lookahead == '\\') ADVANCE(2553); + if (lookahead == '<') ADVANCE(2586); + if (lookahead == '\\') ADVANCE(2555); if (lookahead == '\t' || lookahead == ' ') SKIP(224) if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2936); + lookahead == 'b') ADVANCE(2938); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2709); + lookahead == 'c') ADVANCE(2711); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2720); + lookahead == 'd') ADVANCE(2722); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2791); + lookahead == 'e') ADVANCE(2793); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2721); + lookahead == 'f') ADVANCE(2723); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2937); + lookahead == 'g') ADVANCE(2939); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2796); + lookahead == 'i') ADVANCE(2798); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2900); + lookahead == 'l') ADVANCE(2902); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2644); + lookahead == 'm') ADVANCE(2646); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2853); + lookahead == 'o') ADVANCE(2855); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2939); + lookahead == 'q') ADVANCE(2941); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2634); + lookahead == 'r') ADVANCE(2636); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2635); + lookahead == 's') ADVANCE(2637); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2554); + lookahead == 't') ADVANCE(2556); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2722); + lookahead == 'u') ADVANCE(2724); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2723); + lookahead == 'v') ADVANCE(2725); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2731); + lookahead == 'w') ADVANCE(2733); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 225: if (lookahead == '<') ADVANCE(920); @@ -14544,7 +14565,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(919); END_STATE(); case 226: - if (lookahead == '<') ADVANCE(2342); + if (lookahead == '<') ADVANCE(2343); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(226) @@ -14553,7 +14574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(919); END_STATE(); case 227: - if (lookahead == '<') ADVANCE(2343); + if (lookahead == '<') ADVANCE(2344); if (lookahead == '\\') ADVANCE(922); if (lookahead == '\t' || lookahead == ' ') SKIP(227) @@ -14571,13 +14592,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 229: - if (lookahead == '<') ADVANCE(2190); - if (lookahead == '\\') ADVANCE(2188); + if (lookahead == '<') ADVANCE(2191); + if (lookahead == '\\') ADVANCE(2189); if (lookahead == '\t' || lookahead == ' ') SKIP(229) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(2192); + lookahead != '\r') ADVANCE(2193); END_STATE(); case 230: if (lookahead == '<') ADVANCE(910); @@ -14588,57 +14609,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(911); END_STATE(); case 231: - if (lookahead == '=') ADVANCE(2430); - if (lookahead == '~') ADVANCE(2436); + if (lookahead == '=') ADVANCE(2432); + if (lookahead == '~') ADVANCE(2438); END_STATE(); case 232: - if (lookahead == '=') ADVANCE(2429); - if (lookahead == '~') ADVANCE(2435); + if (lookahead == '=') ADVANCE(2431); + if (lookahead == '~') ADVANCE(2437); END_STATE(); case 233: - if (lookahead == '=') ADVANCE(2176); + if (lookahead == '=') ADVANCE(2177); END_STATE(); case 234: - if (lookahead == '=') ADVANCE(2178); + if (lookahead == '=') ADVANCE(2179); END_STATE(); case 235: - if (lookahead == '=') ADVANCE(2177); + if (lookahead == '=') ADVANCE(2178); END_STATE(); case 236: - if (lookahead == '>') ADVANCE(2464); + if (lookahead == '>') ADVANCE(2466); if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'b') ADVANCE(272); - if (lookahead == 'c') ADVANCE(524); + if (lookahead == 'b') ADVANCE(274); + if (lookahead == 'c') ADVANCE(525); if (lookahead == 'k') ADVANCE(370); - if (lookahead == 'n') ADVANCE(275); - if (lookahead == 'r') ADVANCE(277); + if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'r') ADVANCE(279); END_STATE(); case 237: - if (lookahead == '>') ADVANCE(2361); + if (lookahead == '>') ADVANCE(2362); END_STATE(); case 238: - if (lookahead == '>') ADVANCE(2357); + if (lookahead == '>') ADVANCE(2358); END_STATE(); case 239: - if (lookahead == '>') ADVANCE(2349); + if (lookahead == '>') ADVANCE(2350); END_STATE(); case 240: - if (lookahead == '>') ADVANCE(2236); + if (lookahead == '>') ADVANCE(2237); END_STATE(); case 241: - if (lookahead == '>') ADVANCE(2231); + if (lookahead == '>') ADVANCE(2232); END_STATE(); case 242: - if (lookahead == '>') ADVANCE(2232); + if (lookahead == '>') ADVANCE(2233); END_STATE(); case 243: - if (lookahead == '>') ADVANCE(2235); + if (lookahead == '>') ADVANCE(2236); END_STATE(); case 244: - if (lookahead == '>') ADVANCE(2233); + if (lookahead == '>') ADVANCE(2234); END_STATE(); case 245: - if (lookahead == '>') ADVANCE(2234); + if (lookahead == '>') ADVANCE(2235); END_STATE(); case 246: if (lookahead == '?') ADVANCE(918); @@ -14652,7 +14673,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C') ADVANCE(251); END_STATE(); case 249: - if (lookahead == 'E') ADVANCE(3203); + if (lookahead == 'E') ADVANCE(3205); END_STATE(); case 250: if (lookahead == 'F') ADVANCE(819); @@ -14691,69 +14712,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(904); END_STATE(); case 259: - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2517); + lookahead == ' ') ADVANCE(2519); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 260: - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(926); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2519); + lookahead == ' ') ADVANCE(2521); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 261: - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(927); - if (lookahead == 'g') ADVANCE(2518); + if (lookahead == 'g') ADVANCE(2520); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2516); + lookahead == ' ') ADVANCE(2518); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 262: - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(927); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2517); + lookahead == ' ') ADVANCE(2519); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 263: - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(927); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2519); + lookahead == ' ') ADVANCE(2521); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 264: - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(924); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2519); + lookahead == ' ') ADVANCE(2521); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2500); + lookahead != '\n') ADVANCE(2502); END_STATE(); case 265: - if (lookahead == '\\') ADVANCE(2345); + if (lookahead == '\\') ADVANCE(2346); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(2531); + lookahead != ' ') ADVANCE(2533); END_STATE(); case 266: if (lookahead == '\\') ADVANCE(922); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == ']') ADVANCE(2464); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2499); + lookahead == ' ') ADVANCE(2501); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2498); + lookahead != '\n') ADVANCE(2500); END_STATE(); case 267: if (lookahead == '\\') ADVANCE(922); @@ -14772,348 +14793,348 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r') ADVANCE(933); END_STATE(); case 269: - if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'a') ADVANCE(557); END_STATE(); case 270: if (lookahead == 'a') ADVANCE(617); - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'i') ADVANCE(511); END_STATE(); case 271: - if (lookahead == 'a') ADVANCE(307); - if (lookahead == 'i') ADVANCE(523); + if (lookahead == 'a') ADVANCE(305); + if (lookahead == 'i') ADVANCE(524); END_STATE(); case 272: - if (lookahead == 'a') ADVANCE(500); - if (lookahead == 'u') ADVANCE(403); + if (lookahead == 'a') ADVANCE(482); END_STATE(); case 273: - if (lookahead == 'a') ADVANCE(876); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'e') ADVANCE(642); END_STATE(); case 274: - if (lookahead == 'a') ADVANCE(645); + if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'u') ADVANCE(404); END_STATE(); case 275: - if (lookahead == 'a') ADVANCE(572); + if (lookahead == 'a') ADVANCE(876); END_STATE(); case 276: - if (lookahead == 'a') ADVANCE(628); + if (lookahead == 'a') ADVANCE(645); END_STATE(); case 277: - if (lookahead == 'a') ADVANCE(502); - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'a') ADVANCE(625); END_STATE(); case 278: - if (lookahead == 'a') ADVANCE(575); - if (lookahead == 'o') ADVANCE(539); + if (lookahead == 'a') ADVANCE(572); END_STATE(); case 279: - if (lookahead == 'a') ADVANCE(427); - if (lookahead == 'e') ADVANCE(571); - if (lookahead == 'r') ADVANCE(280); + if (lookahead == 'a') ADVANCE(503); + if (lookahead == 'e') ADVANCE(415); END_STATE(); case 280: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'a') ADVANCE(573); + if (lookahead == 'o') ADVANCE(541); END_STATE(); case 281: - if (lookahead == 'a') ADVANCE(560); + if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'e') ADVANCE(571); + if (lookahead == 'r') ADVANCE(282); END_STATE(); case 282: - if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'a') ADVANCE(502); END_STATE(); case 283: - if (lookahead == 'a') ADVANCE(483); - if (lookahead == 'e') ADVANCE(641); + if (lookahead == 'a') ADVANCE(563); END_STATE(); case 284: - if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'a') ADVANCE(457); END_STATE(); case 285: - if (lookahead == 'a') ADVANCE(492); + if (lookahead == 'a') ADVANCE(489); END_STATE(); case 286: - if (lookahead == 'a') ADVANCE(461); + if (lookahead == 'a') ADVANCE(492); END_STATE(); case 287: - if (lookahead == 'a') ADVANCE(583); + if (lookahead == 'a') ADVANCE(494); END_STATE(); case 288: - if (lookahead == 'a') ADVANCE(494); + if (lookahead == 'a') ADVANCE(583); END_STATE(); case 289: - if (lookahead == 'a') ADVANCE(463); + if (lookahead == 'a') ADVANCE(444); END_STATE(); case 290: - if (lookahead == 'a') ADVANCE(441); + if (lookahead == 'a') ADVANCE(463); END_STATE(); case 291: - if (lookahead == 'a') ADVANCE(444); + if (lookahead == 'a') ADVANCE(441); END_STATE(); case 292: if (lookahead == 'b') ADVANCE(623); - if (lookahead == 'f') ADVANCE(431); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'l') ADVANCE(453); - if (lookahead == 'n') ADVANCE(282); - if (lookahead == 'p') ADVANCE(578); + if (lookahead == 'f') ADVANCE(426); + if (lookahead == 'g') ADVANCE(569); + if (lookahead == 'l') ADVANCE(447); + if (lookahead == 'n') ADVANCE(272); + if (lookahead == 'p') ADVANCE(579); if (lookahead == '\t' || lookahead == ' ') SKIP(292) END_STATE(); case 293: if (lookahead == 'b') ADVANCE(623); - if (lookahead == 'f') ADVANCE(431); - if (lookahead == 'g') ADVANCE(566); + if (lookahead == 'f') ADVANCE(426); + if (lookahead == 'g') ADVANCE(569); if (lookahead == '\t' || lookahead == ' ') SKIP(293) END_STATE(); case 294: - if (lookahead == 'b') ADVANCE(337); + if (lookahead == 'b') ADVANCE(339); END_STATE(); case 295: - if (lookahead == 'b') ADVANCE(465); + if (lookahead == 'b') ADVANCE(464); if (lookahead == 'c') ADVANCE(613); - if (lookahead == 'f') ADVANCE(532); - if (lookahead == 'g') ADVANCE(626); + if (lookahead == 'f') ADVANCE(534); + if (lookahead == 'g') ADVANCE(624); if (lookahead == 's') ADVANCE(601); - if (lookahead == 't') ADVANCE(387); + if (lookahead == 't') ADVANCE(360); if (lookahead == '\t' || lookahead == ' ') SKIP(295) END_STATE(); case 296: - if (lookahead == 'c') ADVANCE(421); + if (lookahead == 'c') ADVANCE(422); if (lookahead == 'h') ADVANCE(448); - if (lookahead == 'o') ADVANCE(497); + if (lookahead == 'o') ADVANCE(498); if (lookahead == 'p') ADVANCE(163); - if (lookahead == 't') ADVANCE(362); - if (lookahead == 'u') ADVANCE(464); + if (lookahead == 't') ADVANCE(387); END_STATE(); case 297: - if (lookahead == 'c') ADVANCE(421); - if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'o') ADVANCE(523); + if (lookahead == 'u') ADVANCE(466); END_STATE(); case 298: if (lookahead == 'c') ADVANCE(148); END_STATE(); case 299: if (lookahead == 'c') ADVANCE(877); + if (lookahead == 'i') ADVANCE(530); END_STATE(); case 300: - if (lookahead == 'c') ADVANCE(3009); - if (lookahead == 'd') ADVANCE(3066); - if (lookahead == 'e') ADVANCE(3107); - if (lookahead == 'f') ADVANCE(3133); - if (lookahead == 'k') ADVANCE(3038); - if (lookahead == 'm') ADVANCE(2992); - if (lookahead == 'n') ADVANCE(3028); - if (lookahead == 'o') ADVANCE(3118); - if (lookahead == 's') ADVANCE(3084); - if (lookahead == 't') ADVANCE(3158); + if (lookahead == 'c') ADVANCE(3011); + if (lookahead == 'd') ADVANCE(3068); + if (lookahead == 'e') ADVANCE(3109); + if (lookahead == 'f') ADVANCE(3135); + if (lookahead == 'k') ADVANCE(3040); + if (lookahead == 'm') ADVANCE(2994); + if (lookahead == 'n') ADVANCE(3030); + if (lookahead == 'o') ADVANCE(3119); + if (lookahead == 's') ADVANCE(3086); + if (lookahead == 't') ADVANCE(3160); if (lookahead == '\t' || lookahead == ' ') SKIP(300) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 301: - if (lookahead == 'c') ADVANCE(3009); - if (lookahead == 'd') ADVANCE(3066); - if (lookahead == 'e') ADVANCE(3189); - if (lookahead == 'f') ADVANCE(3133); - if (lookahead == 'k') ADVANCE(3038); - if (lookahead == 'm') ADVANCE(2992); - if (lookahead == 'n') ADVANCE(3028); - if (lookahead == 'o') ADVANCE(3118); - if (lookahead == 's') ADVANCE(3082); - if (lookahead == 't') ADVANCE(3158); + if (lookahead == 'c') ADVANCE(3011); + if (lookahead == 'd') ADVANCE(3068); + if (lookahead == 'e') ADVANCE(3191); + if (lookahead == 'f') ADVANCE(3135); + if (lookahead == 'k') ADVANCE(3040); + if (lookahead == 'm') ADVANCE(2994); + if (lookahead == 'n') ADVANCE(3030); + if (lookahead == 'o') ADVANCE(3119); + if (lookahead == 's') ADVANCE(3084); + if (lookahead == 't') ADVANCE(3160); if (lookahead == '\t' || lookahead == ' ') SKIP(301) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 302: - if (lookahead == 'c') ADVANCE(529); + if (lookahead == 'c') ADVANCE(424); END_STATE(); case 303: - if (lookahead == 'c') ADVANCE(529); - if (lookahead == 'n') ADVANCE(915); - if (lookahead == 's') ADVANCE(526); + if (lookahead == 'c') ADVANCE(465); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 304: if (lookahead == 'c') ADVANCE(587); - if (lookahead == 'n') ADVANCE(435); - if (lookahead == 't') ADVANCE(396); + if (lookahead == 'n') ADVANCE(434); + if (lookahead == 't') ADVANCE(397); END_STATE(); case 305: - if (lookahead == 'c') ADVANCE(423); + if (lookahead == 'c') ADVANCE(577); + if (lookahead == 't') ADVANCE(302); + if (lookahead == 'x') ADVANCE(475); END_STATE(); case 306: - if (lookahead == 'c') ADVANCE(466); - if (lookahead == 't') ADVANCE(388); + if (lookahead == 'c') ADVANCE(537); END_STATE(); case 307: - if (lookahead == 'c') ADVANCE(577); - if (lookahead == 't') ADVANCE(305); - if (lookahead == 'x') ADVANCE(475); + if (lookahead == 'c') ADVANCE(533); END_STATE(); case 308: - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'i') ADVANCE(302); - if (lookahead == 'l') ADVANCE(447); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 't') ADVANCE(385); - if (lookahead == '\t' || - lookahead == ' ') SKIP(308) + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'n') ADVANCE(915); END_STATE(); case 309: - if (lookahead == 'c') ADVANCE(535); - END_STATE(); - case 310: if (lookahead == 'c') ADVANCE(491); - if (lookahead == 'j') ADVANCE(542); - if (lookahead == 'k') ADVANCE(562); + if (lookahead == 'j') ADVANCE(544); + if (lookahead == 'k') ADVANCE(565); if (lookahead == 't') ADVANCE(636); END_STATE(); - case 311: + case 310: if (lookahead == 'c') ADVANCE(584); END_STATE(); - case 312: + case 311: if (lookahead == 'c') ADVANCE(369); - if (lookahead == 't') ADVANCE(290); + if (lookahead == 't') ADVANCE(291); END_STATE(); - case 313: - if (lookahead == 'c') ADVANCE(496); - if (lookahead == 'j') ADVANCE(546); - if (lookahead == 'k') ADVANCE(565); + case 312: + if (lookahead == 'c') ADVANCE(497); + if (lookahead == 'j') ADVANCE(548); + if (lookahead == 'k') ADVANCE(568); if (lookahead == 't') ADVANCE(637); END_STATE(); - case 314: + case 313: if (lookahead == 'c') ADVANCE(351); END_STATE(); - case 315: + case 314: if (lookahead == 'c') ADVANCE(2058); if (lookahead == 'l') ADVANCE(2045); if (lookahead == 'm') ADVANCE(1995); if (lookahead == '\t' || - lookahead == ' ') SKIP(315) + lookahead == ' ') SKIP(314) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); + case 315: + if (lookahead == 'c') ADVANCE(629); + if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'l') ADVANCE(453); + if (lookahead == 'n') ADVANCE(627); + if (lookahead == 't') ADVANCE(385); + if (lookahead == '\t' || + lookahead == ' ') SKIP(315) + END_STATE(); case 316: - if (lookahead == 'c') ADVANCE(389); - if (lookahead == 't') ADVANCE(290); + if (lookahead == 'c') ADVANCE(391); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 317: if (lookahead == 'c') ADVANCE(586); if (lookahead == 'i') ADVANCE(474); END_STATE(); case 318: - if (lookahead == 'd') ADVANCE(3367); + if (lookahead == 'd') ADVANCE(3369); END_STATE(); case 319: - if (lookahead == 'd') ADVANCE(3424); + if (lookahead == 'd') ADVANCE(3426); END_STATE(); case 320: - if (lookahead == 'd') ADVANCE(3343); + if (lookahead == 'd') ADVANCE(3345); END_STATE(); case 321: - if (lookahead == 'd') ADVANCE(3276); + if (lookahead == 'd') ADVANCE(3278); END_STATE(); case 322: - if (lookahead == 'd') ADVANCE(3349); + if (lookahead == 'd') ADVANCE(3351); END_STATE(); case 323: - if (lookahead == 'd') ADVANCE(3352); + if (lookahead == 'd') ADVANCE(3354); END_STATE(); case 324: - if (lookahead == 'd') ADVANCE(3308); + if (lookahead == 'd') ADVANCE(3310); END_STATE(); case 325: - if (lookahead == 'd') ADVANCE(2963); + if (lookahead == 'd') ADVANCE(2965); END_STATE(); case 326: if (lookahead == 'd') ADVANCE(318); END_STATE(); case 327: if (lookahead == 'd') ADVANCE(318); - if (lookahead == 'n') ADVANCE(596); + if (lookahead == 'n') ADVANCE(597); END_STATE(); case 328: if (lookahead == 'd') ADVANCE(329); END_STATE(); case 329: - if (lookahead == 'd') ADVANCE(559); + if (lookahead == 'd') ADVANCE(562); END_STATE(); case 330: if (lookahead == 'd') ADVANCE(592); END_STATE(); case 331: - if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'd') ADVANCE(388); END_STATE(); case 332: - if (lookahead == 'd') ADVANCE(344); + if (lookahead == 'd') ADVANCE(346); END_STATE(); case 333: - if (lookahead == 'e') ADVANCE(641); + if (lookahead == 'e') ADVANCE(642); if (lookahead == 'u') ADVANCE(484); END_STATE(); case 334: - if (lookahead == 'e') ADVANCE(2413); + if (lookahead == 'e') ADVANCE(2414); END_STATE(); case 335: - if (lookahead == 'e') ADVANCE(2974); + if (lookahead == 'e') ADVANCE(2404); END_STATE(); case 336: - if (lookahead == 'e') ADVANCE(3369); + if (lookahead == 'e') ADVANCE(2406); END_STATE(); case 337: - if (lookahead == 'e') ADVANCE(882); + if (lookahead == 'e') ADVANCE(2976); END_STATE(); case 338: - if (lookahead == 'e') ADVANCE(878); + if (lookahead == 'e') ADVANCE(3371); END_STATE(); case 339: - if (lookahead == 'e') ADVANCE(3361); + if (lookahead == 'e') ADVANCE(882); END_STATE(); case 340: - if (lookahead == 'e') ADVANCE(869); + if (lookahead == 'e') ADVANCE(878); END_STATE(); case 341: - if (lookahead == 'e') ADVANCE(883); + if (lookahead == 'e') ADVANCE(3363); END_STATE(); case 342: - if (lookahead == 'e') ADVANCE(884); + if (lookahead == 'e') ADVANCE(869); END_STATE(); case 343: - if (lookahead == 'e') ADVANCE(873); + if (lookahead == 'e') ADVANCE(883); END_STATE(); case 344: - if (lookahead == 'e') ADVANCE(881); + if (lookahead == 'e') ADVANCE(884); END_STATE(); case 345: - if (lookahead == 'e') ADVANCE(871); + if (lookahead == 'e') ADVANCE(873); END_STATE(); case 346: - if (lookahead == 'e') ADVANCE(886); + if (lookahead == 'e') ADVANCE(881); END_STATE(); case 347: - if (lookahead == 'e') ADVANCE(2973); + if (lookahead == 'e') ADVANCE(871); END_STATE(); case 348: - if (lookahead == 'e') ADVANCE(3325); + if (lookahead == 'e') ADVANCE(886); END_STATE(); case 349: - if (lookahead == 'e') ADVANCE(2403); + if (lookahead == 'e') ADVANCE(2975); END_STATE(); case 350: - if (lookahead == 'e') ADVANCE(2405); + if (lookahead == 'e') ADVANCE(3327); END_STATE(); case 351: - if (lookahead == 'e') ADVANCE(2962); + if (lookahead == 'e') ADVANCE(2964); END_STATE(); case 352: if (lookahead == 'e') ADVANCE(895); @@ -15134,53 +15155,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(903); END_STATE(); case 358: - if (lookahead == 'e') ADVANCE(3435); + if (lookahead == 'e') ADVANCE(3437); END_STATE(); case 359: - if (lookahead == 'e') ADVANCE(3436); + if (lookahead == 'e') ADVANCE(3438); END_STATE(); case 360: - if (lookahead == 'e') ADVANCE(398); - if (lookahead == 'i') ADVANCE(594); + if (lookahead == 'e') ADVANCE(571); END_STATE(); case 361: - if (lookahead == 'e') ADVANCE(480); + if (lookahead == 'e') ADVANCE(399); + if (lookahead == 'i') ADVANCE(594); END_STATE(); case 362: - if (lookahead == 'e') ADVANCE(573); + if (lookahead == 'e') ADVANCE(480); END_STATE(); case 363: - if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'e') ADVANCE(559); END_STATE(); case 364: - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(507); END_STATE(); case 365: if (lookahead == 'e') ADVANCE(363); END_STATE(); case 366: if (lookahead == 'e') ADVANCE(363); - if (lookahead == 'o') ADVANCE(426); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(273); + if (lookahead == 'e') ADVANCE(275); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(482); - if (lookahead == 'n') ADVANCE(459); - if (lookahead == 'w') ADVANCE(418); + if (lookahead == 'e') ADVANCE(483); + if (lookahead == 'n') ADVANCE(456); + if (lookahead == 'w') ADVANCE(417); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'e') ADVANCE(284); END_STATE(); case 370: if (lookahead == 'e') ADVANCE(371); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(548); + if (lookahead == 'e') ADVANCE(551); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(561); + if (lookahead == 'e') ADVANCE(564); END_STATE(); case 373: if (lookahead == 'e') ADVANCE(598); @@ -15190,25 +15211,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 375: if (lookahead == 'e') ADVANCE(324); - if (lookahead == 's') ADVANCE(3340); + if (lookahead == 's') ADVANCE(3342); END_STATE(); case 376: if (lookahead == 'e') ADVANCE(590); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(563); + if (lookahead == 'e') ADVANCE(591); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(591); + if (lookahead == 'e') ADVANCE(566); END_STATE(); case 379: if (lookahead == 'e') ADVANCE(325); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(564); + if (lookahead == 'e') ADVANCE(513); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 382: if (lookahead == 'e') ADVANCE(580); @@ -15217,275 +15238,275 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(576); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(515); + if (lookahead == 'e') ADVANCE(516); END_STATE(); case 385: if (lookahead == 'e') ADVANCE(643); END_STATE(); case 386: - if (lookahead == 'e') ADVANCE(513); + if (lookahead == 'e') ADVANCE(643); + if (lookahead == 'r') ADVANCE(282); END_STATE(); case 387: - if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'e') ADVANCE(574); END_STATE(); case 388: - if (lookahead == 'e') ADVANCE(507); + if (lookahead == 'e') ADVANCE(509); END_STATE(); case 389: - if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'e') ADVANCE(508); END_STATE(); case 390: if (lookahead == 'e') ADVANCE(620); END_STATE(); case 391: - if (lookahead == 'e') ADVANCE(600); + if (lookahead == 'e') ADVANCE(290); END_STATE(); case 392: - if (lookahead == 'e') ADVANCE(581); + if (lookahead == 'e') ADVANCE(600); END_STATE(); case 393: - if (lookahead == 'e') ADVANCE(419); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 394: - if (lookahead == 'e') ADVANCE(508); + if (lookahead == 'e') ADVANCE(420); END_STATE(); case 395: - if (lookahead == 'e') ADVANCE(477); + if (lookahead == 'e') ADVANCE(510); END_STATE(); case 396: - if (lookahead == 'f') ADVANCE(150); + if (lookahead == 'e') ADVANCE(477); END_STATE(); case 397: + if (lookahead == 'f') ADVANCE(150); + END_STATE(); + case 398: if (lookahead == 'f') ADVANCE(2038); if (lookahead == 's') ADVANCE(2129); if (lookahead == 'u') ADVANCE(2102); if (lookahead == '\t' || lookahead == ' ') SKIP(653) if (lookahead == '0' || - lookahead == '1') ADVANCE(2969); + lookahead == '1') ADVANCE(2971); if (lookahead == '*' || lookahead == '+' || - lookahead == '?') ADVANCE(2970); + lookahead == '?') ADVANCE(2972); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 398: - if (lookahead == 'f') ADVANCE(276); - END_STATE(); case 399: - if (lookahead == 'f') ADVANCE(400); + if (lookahead == 'f') ADVANCE(277); END_STATE(); case 400: - if (lookahead == 'f') ADVANCE(372); + if (lookahead == 'f') ADVANCE(401); END_STATE(); case 401: - if (lookahead == 'f') ADVANCE(377); + if (lookahead == 'f') ADVANCE(372); END_STATE(); case 402: - if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'f') ADVANCE(378); END_STATE(); case 403: - if (lookahead == 'f') ADVANCE(401); + if (lookahead == 'f') ADVANCE(383); END_STATE(); case 404: if (lookahead == 'f') ADVANCE(402); END_STATE(); case 405: - if (lookahead == 'g') ADVANCE(177); + if (lookahead == 'f') ADVANCE(403); END_STATE(); case 406: - if (lookahead == 'g') ADVANCE(2977); + if (lookahead == 'g') ADVANCE(177); END_STATE(); case 407: - if (lookahead == 'g') ADVANCE(3266); + if (lookahead == 'g') ADVANCE(2979); END_STATE(); case 408: - if (lookahead == 'g') ADVANCE(3264); + if (lookahead == 'g') ADVANCE(3268); END_STATE(); case 409: - if (lookahead == 'g') ADVANCE(3252); + if (lookahead == 'g') ADVANCE(3266); END_STATE(); case 410: - if (lookahead == 'g') ADVANCE(3250); + if (lookahead == 'g') ADVANCE(3254); END_STATE(); case 411: - if (lookahead == 'g') ADVANCE(589); + if (lookahead == 'g') ADVANCE(3252); END_STATE(); case 412: - if (lookahead == 'g') ADVANCE(582); + if (lookahead == 'g') ADVANCE(589); END_STATE(); case 413: - if (lookahead == 'g') ADVANCE(335); + if (lookahead == 'g') ADVANCE(582); END_STATE(); case 414: - if (lookahead == 'g') ADVANCE(438); + if (lookahead == 'g') ADVANCE(337); END_STATE(); case 415: - if (lookahead == 'g') ADVANCE(585); + if (lookahead == 'g') ADVANCE(438); END_STATE(); case 416: - if (lookahead == 'h') ADVANCE(456); + if (lookahead == 'g') ADVANCE(585); END_STATE(); case 417: - if (lookahead == 'h') ADVANCE(457); + if (lookahead == 'h') ADVANCE(449); END_STATE(); case 418: - if (lookahead == 'h') ADVANCE(449); + if (lookahead == 'h') ADVANCE(459); END_STATE(); case 419: - if (lookahead == 'h') ADVANCE(458); + if (lookahead == 'h') ADVANCE(460); END_STATE(); case 420: - if (lookahead == 'h') ADVANCE(382); - if (lookahead == 't') ADVANCE(422); + if (lookahead == 'h') ADVANCE(461); END_STATE(); case 421: - if (lookahead == 'h') ADVANCE(281); + if (lookahead == 'h') ADVANCE(382); + if (lookahead == 't') ADVANCE(423); END_STATE(); case 422: - if (lookahead == 'h') ADVANCE(392); + if (lookahead == 'h') ADVANCE(283); END_STATE(); case 423: - if (lookahead == 'h') ADVANCE(415); + if (lookahead == 'h') ADVANCE(393); END_STATE(); case 424: - if (lookahead == 'i') ADVANCE(405); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'u') ADVANCE(399); + if (lookahead == 'h') ADVANCE(416); END_STATE(); case 425: - if (lookahead == 'i') ADVANCE(3255); + if (lookahead == 'i') ADVANCE(406); + if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'u') ADVANCE(400); END_STATE(); case 426: - if (lookahead == 'i') ADVANCE(185); - if (lookahead == 'r') ADVANCE(367); + if (lookahead == 'i') ADVANCE(471); END_STATE(); case 427: - if (lookahead == 'i') ADVANCE(639); + if (lookahead == 'i') ADVANCE(471); + if (lookahead == 'o') ADVANCE(468); END_STATE(); case 428: - if (lookahead == 'i') ADVANCE(874); + if (lookahead == 'i') ADVANCE(3257); END_STATE(); case 429: - if (lookahead == 'i') ADVANCE(558); + if (lookahead == 'i') ADVANCE(185); + if (lookahead == 'r') ADVANCE(367); END_STATE(); case 430: - if (lookahead == 'i') ADVANCE(594); + if (lookahead == 'i') ADVANCE(639); END_STATE(); case 431: - if (lookahead == 'i') ADVANCE(470); + if (lookahead == 'i') ADVANCE(874); END_STATE(); case 432: - if (lookahead == 'i') ADVANCE(470); - if (lookahead == 'o') ADVANCE(468); + if (lookahead == 'i') ADVANCE(560); END_STATE(); case 433: - if (lookahead == 'i') ADVANCE(470); - if (lookahead == 'o') ADVANCE(467); + if (lookahead == 'i') ADVANCE(594); END_STATE(); case 434: - if (lookahead == 'i') ADVANCE(588); + if (lookahead == 'i') ADVANCE(306); END_STATE(); case 435: - if (lookahead == 'i') ADVANCE(309); + if (lookahead == 'i') ADVANCE(530); END_STATE(); case 436: - if (lookahead == 'i') ADVANCE(538); + if (lookahead == 'i') ADVANCE(588); END_STATE(); case 437: - if (lookahead == 'i') ADVANCE(531); + if (lookahead == 'i') ADVANCE(540); END_STATE(); case 438: - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'i') ADVANCE(596); END_STATE(); case 439: - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'i') ADVANCE(611); END_STATE(); case 440: - if (lookahead == 'i') ADVANCE(612); + if (lookahead == 'i') ADVANCE(490); END_STATE(); case 441: if (lookahead == 'i') ADVANCE(493); END_STATE(); case 442: - if (lookahead == 'i') ADVANCE(551); + if (lookahead == 'i') ADVANCE(553); END_STATE(); case 443: - if (lookahead == 'i') ADVANCE(545); + if (lookahead == 'i') ADVANCE(547); END_STATE(); case 444: if (lookahead == 'i') ADVANCE(614); END_STATE(); case 445: - if (lookahead == 'i') ADVANCE(486); - if (lookahead == '\t' || - lookahead == ' ') SKIP(445) + if (lookahead == 'i') ADVANCE(554); END_STATE(); case 446: - if (lookahead == 'i') ADVANCE(552); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == '\t' || + lookahead == ' ') SKIP(446) END_STATE(); case 447: - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'i') ADVANCE(511); END_STATE(); case 448: - if (lookahead == 'i') ADVANCE(512); + if (lookahead == 'i') ADVANCE(514); END_STATE(); case 449: if (lookahead == 'i') ADVANCE(621); END_STATE(); case 450: - if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'i') ADVANCE(517); END_STATE(); case 451: - if (lookahead == 'i') ADVANCE(517); + if (lookahead == 'i') ADVANCE(518); END_STATE(); case 452: - if (lookahead == 'i') ADVANCE(518); + if (lookahead == 'i') ADVANCE(519); END_STATE(); case 453: - if (lookahead == 'i') ADVANCE(521); + if (lookahead == 'i') ADVANCE(522); END_STATE(); case 454: - if (lookahead == 'j') ADVANCE(434); - if (lookahead == 'k') ADVANCE(436); - if (lookahead == 't') ADVANCE(278); + if (lookahead == 'j') ADVANCE(436); + if (lookahead == 'k') ADVANCE(437); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 455: if (lookahead == 'k') ADVANCE(443); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(2400); + if (lookahead == 'l') ADVANCE(3332); END_STATE(); case 457: - if (lookahead == 'l') ADVANCE(2391); + if (lookahead == 'l') ADVANCE(3296); END_STATE(); case 458: - if (lookahead == 'l') ADVANCE(2388); + if (lookahead == 'l') ADVANCE(3357); END_STATE(); case 459: - if (lookahead == 'l') ADVANCE(3330); + if (lookahead == 'l') ADVANCE(2401); END_STATE(); case 460: - if (lookahead == 'l') ADVANCE(2397); + if (lookahead == 'l') ADVANCE(2392); END_STATE(); case 461: - if (lookahead == 'l') ADVANCE(3294); + if (lookahead == 'l') ADVANCE(2389); END_STATE(); case 462: - if (lookahead == 'l') ADVANCE(3355); + if (lookahead == 'l') ADVANCE(2398); END_STATE(); case 463: - if (lookahead == 'l') ADVANCE(3292); + if (lookahead == 'l') ADVANCE(3294); END_STATE(); case 464: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'l') ADVANCE(364); END_STATE(); case 465: - if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'l') ADVANCE(626); END_STATE(); case 466: - if (lookahead == 'l') ADVANCE(627); + if (lookahead == 'l') ADVANCE(418); END_STATE(); case 467: if (lookahead == 'l') ADVANCE(320); @@ -15495,26 +15516,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(602); END_STATE(); case 469: - if (lookahead == 'l') ADVANCE(274); + if (lookahead == 'l') ADVANCE(605); END_STATE(); case 470: - if (lookahead == 'l') ADVANCE(334); + if (lookahead == 'l') ADVANCE(276); END_STATE(); case 471: - if (lookahead == 'l') ADVANCE(606); + if (lookahead == 'l') ADVANCE(334); END_STATE(); case 472: if (lookahead == 'l') ADVANCE(390); END_STATE(); case 473: - if (lookahead == 'l') ADVANCE(3074); + if (lookahead == 'l') ADVANCE(3076); if (lookahead == '\t' || lookahead == ' ') SKIP(473) if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 474: if (lookahead == 'l') ADVANCE(384); @@ -15529,39 +15550,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(452); END_STATE(); case 478: - if (lookahead == 'm') ADVANCE(3207); + if (lookahead == 'm') ADVANCE(3209); END_STATE(); case 479: - if (lookahead == 'm') ADVANCE(3210); + if (lookahead == 'm') ADVANCE(3212); END_STATE(); case 480: - if (lookahead == 'm') ADVANCE(527); + if (lookahead == 'm') ADVANCE(528); END_STATE(); case 481: - if (lookahead == 'm') ADVANCE(554); - if (lookahead == 'u') ADVANCE(506); + if (lookahead == 'm') ADVANCE(556); + if (lookahead == 'u') ADVANCE(505); END_STATE(); case 482: - if (lookahead == 'm') ADVANCE(550); + if (lookahead == 'm') ADVANCE(336); END_STATE(); case 483: - if (lookahead == 'm') ADVANCE(350); + if (lookahead == 'm') ADVANCE(552); END_STATE(); case 484: - if (lookahead == 'm') ADVANCE(417); + if (lookahead == 'm') ADVANCE(419); END_STATE(); case 485: - if (lookahead == 'm') ADVANCE(288); + if (lookahead == 'm') ADVANCE(287); END_STATE(); case 486: if (lookahead == 'n') ADVANCE(915); END_STATE(); case 487: if (lookahead == 'n') ADVANCE(915); - if (lookahead == 's') ADVANCE(2438); + if (lookahead == 's') ADVANCE(2440); END_STATE(); case 488: - if (lookahead == 'n') ADVANCE(2385); + if (lookahead == 'n') ADVANCE(915); + if (lookahead == 's') ADVANCE(527); END_STATE(); case 489: if (lookahead == 'n') ADVANCE(875); @@ -15582,265 +15604,264 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(833); END_STATE(); case 495: - if (lookahead == 'n') ADVANCE(3310); + if (lookahead == 'n') ADVANCE(3312); END_STATE(); case 496: - if (lookahead == 'n') ADVANCE(891); + if (lookahead == 'n') ADVANCE(2386); END_STATE(); case 497: - if (lookahead == 'n') ADVANCE(312); + if (lookahead == 'n') ADVANCE(891); END_STATE(); case 498: - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'n') ADVANCE(311); END_STATE(); case 499: - if (lookahead == 'n') ADVANCE(319); - if (lookahead == 'u') ADVANCE(298); - if (lookahead == 'x') ADVANCE(306); + if (lookahead == 'n') ADVANCE(602); END_STATE(); case 500: - if (lookahead == 'n') ADVANCE(406); - if (lookahead == 'r') ADVANCE(2978); + if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'u') ADVANCE(298); + if (lookahead == 'x') ADVANCE(303); END_STATE(); case 501: - if (lookahead == 'n') ADVANCE(599); + if (lookahead == 'n') ADVANCE(407); + if (lookahead == 'r') ADVANCE(2980); END_STATE(); case 502: - if (lookahead == 'n') ADVANCE(413); + if (lookahead == 'n') ADVANCE(599); END_STATE(); case 503: - if (lookahead == 'n') ADVANCE(395); + if (lookahead == 'n') ADVANCE(414); END_STATE(); case 504: - if (lookahead == 'n') ADVANCE(321); + if (lookahead == 'n') ADVANCE(313); END_STATE(); case 505: - if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'n') ADVANCE(604); END_STATE(); case 506: - if (lookahead == 'n') ADVANCE(605); + if (lookahead == 'n') ADVANCE(396); END_STATE(); case 507: - if (lookahead == 'n') ADVANCE(322); + if (lookahead == 'n') ADVANCE(321); END_STATE(); case 508: - if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'n') ADVANCE(322); END_STATE(); case 509: - if (lookahead == 'n') ADVANCE(393); + if (lookahead == 'n') ADVANCE(458); END_STATE(); case 510: - if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'n') ADVANCE(323); END_STATE(); case 511: - if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'n') ADVANCE(335); END_STATE(); case 512: - if (lookahead == 'n') ADVANCE(373); + if (lookahead == 'n') ADVANCE(330); END_STATE(); case 513: - if (lookahead == 'n') ADVANCE(462); + if (lookahead == 'n') ADVANCE(607); END_STATE(); case 514: - if (lookahead == 'n') ADVANCE(429); + if (lookahead == 'n') ADVANCE(373); END_STATE(); case 515: - if (lookahead == 'n') ADVANCE(618); + if (lookahead == 'n') ADVANCE(432); END_STATE(); case 516: - if (lookahead == 'n') ADVANCE(376); + if (lookahead == 'n') ADVANCE(618); END_STATE(); case 517: - if (lookahead == 'n') ADVANCE(378); + if (lookahead == 'n') ADVANCE(376); END_STATE(); case 518: - if (lookahead == 'n') ADVANCE(339); + if (lookahead == 'n') ADVANCE(377); END_STATE(); case 519: - if (lookahead == 'n') ADVANCE(391); + if (lookahead == 'n') ADVANCE(341); END_STATE(); case 520: - if (lookahead == 'n') ADVANCE(391); - if (lookahead == 'o') ADVANCE(505); + if (lookahead == 'n') ADVANCE(392); END_STATE(); case 521: - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'n') ADVANCE(392); + if (lookahead == 'o') ADVANCE(504); END_STATE(); case 522: - if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'n') ADVANCE(394); END_STATE(); case 523: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'n') ADVANCE(316); END_STATE(); case 524: - if (lookahead == 'o') ADVANCE(481); + if (lookahead == 'n') ADVANCE(476); END_STATE(); case 525: - if (lookahead == 'o') ADVANCE(629); + if (lookahead == 'o') ADVANCE(481); END_STATE(); case 526: - if (lookahead == 'o') ADVANCE(831); + if (lookahead == 'o') ADVANCE(628); END_STATE(); case 527: - if (lookahead == 'o') ADVANCE(635); + if (lookahead == 'o') ADVANCE(831); END_STATE(); case 528: - if (lookahead == 'o') ADVANCE(485); + if (lookahead == 'o') ADVANCE(635); END_STATE(); case 529: - if (lookahead == 'o') ADVANCE(488); + if (lookahead == 'o') ADVANCE(485); END_STATE(); case 530: - if (lookahead == 'o') ADVANCE(610); + if (lookahead == 'o') ADVANCE(578); END_STATE(); case 531: - if (lookahead == 'o') ADVANCE(579); + if (lookahead == 'o') ADVANCE(467); END_STATE(); case 532: - if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'o') ADVANCE(610); END_STATE(); case 533: - if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'o') ADVANCE(496); END_STATE(); case 534: - if (lookahead == 'o') ADVANCE(638); + if (lookahead == 'o') ADVANCE(499); END_STATE(); case 535: - if (lookahead == 'o') ADVANCE(332); + if (lookahead == 'o') ADVANCE(630); END_STATE(); case 536: - if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'o') ADVANCE(638); END_STATE(); case 537: - if (lookahead == 'o') ADVANCE(632); + if (lookahead == 'o') ADVANCE(332); END_STATE(); case 538: - if (lookahead == 'p') ADVANCE(3422); + if (lookahead == 'o') ADVANCE(631); END_STATE(); case 539: - if (lookahead == 'p') ADVANCE(3246); + if (lookahead == 'o') ADVANCE(632); END_STATE(); case 540: - if (lookahead == 'p') ADVANCE(2409); + if (lookahead == 'p') ADVANCE(3424); END_STATE(); case 541: - if (lookahead == 'p') ADVANCE(3268); + if (lookahead == 'p') ADVANCE(3248); END_STATE(); case 542: - if (lookahead == 'p') ADVANCE(858); + if (lookahead == 'p') ADVANCE(2410); END_STATE(); case 543: - if (lookahead == 'p') ADVANCE(3315); + if (lookahead == 'p') ADVANCE(3270); END_STATE(); case 544: - if (lookahead == 'p') ADVANCE(3358); + if (lookahead == 'p') ADVANCE(858); END_STATE(); case 545: - if (lookahead == 'p') ADVANCE(368); + if (lookahead == 'p') ADVANCE(3317); END_STATE(); case 546: - if (lookahead == 'p') ADVANCE(889); + if (lookahead == 'p') ADVANCE(3360); END_STATE(); case 547: - if (lookahead == 'p') ADVANCE(420); + if (lookahead == 'p') ADVANCE(368); END_STATE(); case 548: - if (lookahead == 'p') ADVANCE(595); + if (lookahead == 'p') ADVANCE(889); END_STATE(); case 549: - if (lookahead == 'p') ADVANCE(469); + if (lookahead == 'p') ADVANCE(421); END_STATE(); case 550: - if (lookahead == 'p') ADVANCE(611); + if (lookahead == 'p') ADVANCE(470); END_STATE(); case 551: - if (lookahead == 'p') ADVANCE(607); + if (lookahead == 'p') ADVANCE(595); END_STATE(); case 552: - if (lookahead == 'p') ADVANCE(615); + if (lookahead == 'p') ADVANCE(612); END_STATE(); case 553: - if (lookahead == 'p') ADVANCE(574); + if (lookahead == 'p') ADVANCE(606); END_STATE(); case 554: - if (lookahead == 'p') ADVANCE(472); + if (lookahead == 'p') ADVANCE(615); END_STATE(); case 555: - if (lookahead == 'p') ADVANCE(284); + if (lookahead == 'p') ADVANCE(575); END_STATE(); case 556: - if (lookahead == 'p') ADVANCE(287); + if (lookahead == 'p') ADVANCE(472); END_STATE(); case 557: - if (lookahead == 'p') ADVANCE(394); + if (lookahead == 'p') ADVANCE(285); END_STATE(); case 558: - if (lookahead == 'q') ADVANCE(633); + if (lookahead == 'p') ADVANCE(288); END_STATE(); case 559: - if (lookahead == 'r') ADVANCE(2976); + if (lookahead == 'p') ADVANCE(395); END_STATE(); case 560: - if (lookahead == 'r') ADVANCE(3300); + if (lookahead == 'q') ADVANCE(633); END_STATE(); case 561: - if (lookahead == 'r') ADVANCE(2407); + if (lookahead == 'r') ADVANCE(299); END_STATE(); case 562: - if (lookahead == 'r') ADVANCE(861); + if (lookahead == 'r') ADVANCE(2978); END_STATE(); case 563: - if (lookahead == 'r') ADVANCE(2980); + if (lookahead == 'r') ADVANCE(3302); END_STATE(); case 564: - if (lookahead == 'r') ADVANCE(2979); + if (lookahead == 'r') ADVANCE(2408); END_STATE(); case 565: - if (lookahead == 'r') ADVANCE(890); + if (lookahead == 'r') ADVANCE(861); END_STATE(); case 566: - if (lookahead == 'r') ADVANCE(525); + if (lookahead == 'r') ADVANCE(2982); END_STATE(); case 567: - if (lookahead == 'r') ADVANCE(525); - if (lookahead == 'u') ADVANCE(425); + if (lookahead == 'r') ADVANCE(2981); END_STATE(); case 568: - if (lookahead == 'r') ADVANCE(299); + if (lookahead == 'r') ADVANCE(890); END_STATE(); case 569: - if (lookahead == 'r') ADVANCE(280); + if (lookahead == 'r') ADVANCE(526); END_STATE(); case 570: - if (lookahead == 'r') ADVANCE(478); + if (lookahead == 'r') ADVANCE(526); + if (lookahead == 'u') ADVANCE(428); END_STATE(); case 571: if (lookahead == 'r') ADVANCE(478); - if (lookahead == 'x') ADVANCE(603); END_STATE(); case 572: - if (lookahead == 'r') ADVANCE(411); + if (lookahead == 'r') ADVANCE(412); END_STATE(); case 573: - if (lookahead == 'r') ADVANCE(479); + if (lookahead == 'r') ADVANCE(603); END_STATE(); case 574: - if (lookahead == 'r') ADVANCE(240); + if (lookahead == 'r') ADVANCE(479); END_STATE(); case 575: - if (lookahead == 'r') ADVANCE(604); + if (lookahead == 'r') ADVANCE(240); END_STATE(); case 576: if (lookahead == 'r') ADVANCE(241); END_STATE(); case 577: - if (lookahead == 'r') ADVANCE(528); + if (lookahead == 'r') ADVANCE(529); END_STATE(); case 578: - if (lookahead == 'r') ADVANCE(437); + if (lookahead == 'r') ADVANCE(439); END_STATE(); case 579: - if (lookahead == 'r') ADVANCE(440); + if (lookahead == 'r') ADVANCE(435); END_STATE(); case 580: if (lookahead == 'r') ADVANCE(358); @@ -15849,19 +15870,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(359); END_STATE(); case 582: - if (lookahead == 'r') ADVANCE(533); + if (lookahead == 'r') ADVANCE(535); END_STATE(); case 583: - if (lookahead == 'r') ADVANCE(381); + if (lookahead == 'r') ADVANCE(380); END_STATE(); case 584: if (lookahead == 'r') ADVANCE(442); END_STATE(); case 585: - if (lookahead == 'r') ADVANCE(536); + if (lookahead == 'r') ADVANCE(538); END_STATE(); case 586: - if (lookahead == 'r') ADVANCE(446); + if (lookahead == 'r') ADVANCE(445); END_STATE(); case 587: if (lookahead == 's') ADVANCE(149); @@ -15870,64 +15891,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(859); END_STATE(); case 589: - if (lookahead == 's') ADVANCE(2972); + if (lookahead == 's') ADVANCE(2974); END_STATE(); case 590: - if (lookahead == 's') ADVANCE(3430); + if (lookahead == 's') ADVANCE(3432); END_STATE(); case 591: - if (lookahead == 's') ADVANCE(3427); + if (lookahead == 's') ADVANCE(3429); END_STATE(); case 592: - if (lookahead == 's') ADVANCE(3364); + if (lookahead == 's') ADVANCE(3366); END_STATE(); case 593: - if (lookahead == 's') ADVANCE(2438); + if (lookahead == 's') ADVANCE(2440); END_STATE(); case 594: - if (lookahead == 's') ADVANCE(549); + if (lookahead == 's') ADVANCE(550); END_STATE(); case 595: - if (lookahead == 's') ADVANCE(311); + if (lookahead == 's') ADVANCE(310); END_STATE(); case 596: - if (lookahead == 's') ADVANCE(428); + if (lookahead == 's') ADVANCE(619); END_STATE(); case 597: - if (lookahead == 's') ADVANCE(619); + if (lookahead == 's') ADVANCE(431); END_STATE(); case 598: - if (lookahead == 's') ADVANCE(338); + if (lookahead == 's') ADVANCE(340); END_STATE(); case 599: - if (lookahead == 's') ADVANCE(556); + if (lookahead == 's') ADVANCE(558); END_STATE(); case 600: if (lookahead == 's') ADVANCE(622); END_STATE(); case 601: - if (lookahead == 't') ADVANCE(278); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 602: - if (lookahead == 't') ADVANCE(3274); + if (lookahead == 't') ADVANCE(3276); END_STATE(); case 603: - if (lookahead == 't') ADVANCE(2394); + if (lookahead == 't') ADVANCE(3244); END_STATE(); case 604: - if (lookahead == 't') ADVANCE(3242); + if (lookahead == 't') ADVANCE(2977); END_STATE(); case 605: - if (lookahead == 't') ADVANCE(2975); + if (lookahead == 't') ADVANCE(887); END_STATE(); case 606: - if (lookahead == 't') ADVANCE(887); + if (lookahead == 't') ADVANCE(2983); END_STATE(); case 607: - if (lookahead == 't') ADVANCE(2981); + if (lookahead == 't') ADVANCE(3322); END_STATE(); case 608: - if (lookahead == 't') ADVANCE(3320); + if (lookahead == 't') ADVANCE(2395); END_STATE(); case 609: if (lookahead == 't') ADVANCE(2160); @@ -15936,7 +15957,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(2163); END_STATE(); case 610: - if (lookahead == 't') ADVANCE(2443); + if (lookahead == 't') ADVANCE(2445); END_STATE(); case 611: if (lookahead == 't') ADVANCE(646); @@ -15945,7 +15966,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(647); END_STATE(); case 613: - if (lookahead == 't') ADVANCE(362); + if (lookahead == 't') ADVANCE(387); END_STATE(); case 614: if (lookahead == 't') ADVANCE(242); @@ -15954,64 +15975,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(243); END_STATE(); case 616: - if (lookahead == 't') ADVANCE(412); + if (lookahead == 't') ADVANCE(413); END_STATE(); case 617: - if (lookahead == 't') ADVANCE(439); + if (lookahead == 't') ADVANCE(440); END_STATE(); case 618: if (lookahead == 't') ADVANCE(244); END_STATE(); case 619: - if (lookahead == 't') ADVANCE(380); + if (lookahead == 't') ADVANCE(381); END_STATE(); case 620: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(349); END_STATE(); case 621: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(350); END_STATE(); case 622: if (lookahead == 't') ADVANCE(379); END_STATE(); case 623: - if (lookahead == 'u') ADVANCE(399); + if (lookahead == 'u') ADVANCE(400); END_STATE(); case 624: - if (lookahead == 'u') ADVANCE(464); + if (lookahead == 'u') ADVANCE(428); END_STATE(); case 625: - if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'u') ADVANCE(469); END_STATE(); case 626: - if (lookahead == 'u') ADVANCE(425); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 627: - if (lookahead == 'u') ADVANCE(331); + if (lookahead == 'u') ADVANCE(484); END_STATE(); case 628: - if (lookahead == 'u') ADVANCE(471); + if (lookahead == 'u') ADVANCE(542); END_STATE(); case 629: - if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'u') ADVANCE(466); END_STATE(); case 630: - if (lookahead == 'u') ADVANCE(543); + if (lookahead == 'u') ADVANCE(545); END_STATE(); case 631: - if (lookahead == 'u') ADVANCE(544); + if (lookahead == 'u') ADVANCE(546); END_STATE(); case 632: - if (lookahead == 'u') ADVANCE(547); + if (lookahead == 'u') ADVANCE(549); END_STATE(); case 633: if (lookahead == 'u') ADVANCE(374); END_STATE(); case 634: - if (lookahead == 'u') ADVANCE(404); + if (lookahead == 'u') ADVANCE(405); END_STATE(); case 635: - if (lookahead == 'v') ADVANCE(336); + if (lookahead == 'v') ADVANCE(338); END_STATE(); case 636: if (lookahead == 'w') ADVANCE(866); @@ -16020,37 +16041,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(892); END_STATE(); case 638: - if (lookahead == 'w') ADVANCE(291); + if (lookahead == 'w') ADVANCE(289); END_STATE(); case 639: - if (lookahead == 'w') ADVANCE(285); + if (lookahead == 'w') ADVANCE(286); END_STATE(); case 640: - if (lookahead == 'x') ADVANCE(306); + if (lookahead == 'x') ADVANCE(303); END_STATE(); case 641: - if (lookahead == 'x') ADVANCE(616); + if (lookahead == 'x') ADVANCE(475); END_STATE(); case 642: - if (lookahead == 'x') ADVANCE(475); + if (lookahead == 'x') ADVANCE(616); END_STATE(); case 643: - if (lookahead == 'x') ADVANCE(603); + if (lookahead == 'x') ADVANCE(608); END_STATE(); case 644: - if (lookahead == 'x') ADVANCE(553); + if (lookahead == 'x') ADVANCE(555); END_STATE(); case 645: - if (lookahead == 'y') ADVANCE(3346); + if (lookahead == 'y') ADVANCE(3348); END_STATE(); case 646: - if (lookahead == 'y') ADVANCE(3335); + if (lookahead == 'y') ADVANCE(2412); END_STATE(); case 647: - if (lookahead == 'y') ADVANCE(2411); + if (lookahead == 'y') ADVANCE(3337); END_STATE(); case 648: - if (lookahead == '{') ADVANCE(2529); + if (lookahead == '{') ADVANCE(2531); END_STATE(); case 649: if (lookahead == '{') ADVANCE(994); @@ -16095,16 +16116,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 650: - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 651: - if (lookahead == '|') ADVANCE(2420); + if (lookahead == '|') ADVANCE(2422); END_STATE(); case 652: - if (lookahead == '}') ADVANCE(2497); + if (lookahead == '}') ADVANCE(2499); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(652); END_STATE(); case 653: @@ -16119,57 +16140,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(654) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(2192); + lookahead != '\r') ADVANCE(2193); END_STATE(); case 655: if (lookahead == '\t' || lookahead == ' ') SKIP(655) if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2936); + lookahead == 'b') ADVANCE(2938); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2709); + lookahead == 'c') ADVANCE(2711); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2720); + lookahead == 'd') ADVANCE(2722); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2791); + lookahead == 'e') ADVANCE(2793); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2721); + lookahead == 'f') ADVANCE(2723); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2937); + lookahead == 'g') ADVANCE(2939); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2796); + lookahead == 'i') ADVANCE(2798); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2900); + lookahead == 'l') ADVANCE(2902); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2644); + lookahead == 'm') ADVANCE(2646); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2853); + lookahead == 'o') ADVANCE(2855); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2939); + lookahead == 'q') ADVANCE(2941); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2634); + lookahead == 'r') ADVANCE(2636); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2635); + lookahead == 's') ADVANCE(2637); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2554); + lookahead == 't') ADVANCE(2556); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2722); + lookahead == 'u') ADVANCE(2724); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2723); + lookahead == 'v') ADVANCE(2725); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2731); + lookahead == 'w') ADVANCE(2733); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 656: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2347); + lookahead == ' ') ADVANCE(2348); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2348); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2349); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2347); + lookahead != '\n') ADVANCE(2348); END_STATE(); case 657: if (lookahead == '\t' || @@ -16179,32 +16200,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 658: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(932); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(931); + lookahead == ' ') SKIP(658) + if (('<' <= lookahead && lookahead <= '>') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(908); END_STATE(); case 659: if (lookahead == '\t' || - lookahead == ' ') SKIP(659) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2165); + lookahead == ' ') ADVANCE(932); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(931); END_STATE(); case 660: if (lookahead == '\t' || lookahead == ' ') SKIP(660) - if (('<' <= lookahead && lookahead <= '>') || + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(908); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2165); END_STATE(); case 661: if (lookahead == '+' || lookahead == '-') ADVANCE(788); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); END_STATE(); case 662: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2316); + lookahead == 'a') ADVANCE(2317); END_STATE(); case 663: if (lookahead == 'A' || @@ -16256,11 +16277,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 673: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2244); + lookahead == 'b') ADVANCE(2245); END_STATE(); case 674: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2254); + lookahead == 'c') ADVANCE(2255); END_STATE(); case 675: if (lookahead == 'C' || @@ -16272,13 +16293,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 677: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2300); + lookahead == 'd') ADVANCE(2301); if (lookahead == 'T' || lookahead == 't') ADVANCE(693); END_STATE(); case 678: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2323); + lookahead == 'd') ADVANCE(2324); END_STATE(); case 679: if (lookahead == 'D' || @@ -16308,11 +16329,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 685: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2286); + lookahead == 'e') ADVANCE(2287); END_STATE(); case 686: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2288); + lookahead == 'e') ADVANCE(2289); END_STATE(); case 687: if (lookahead == 'E' || @@ -16324,7 +16345,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 688: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2298); + lookahead == 'e') ADVANCE(2299); END_STATE(); case 689: if (lookahead == 'E' || @@ -16332,15 +16353,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 690: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2256); + lookahead == 'e') ADVANCE(2257); END_STATE(); case 691: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2270); + lookahead == 'e') ADVANCE(2271); END_STATE(); case 692: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); + lookahead == 'e') ADVANCE(2313); END_STATE(); case 693: if (lookahead == 'E' || @@ -16372,7 +16393,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 700: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2325); + lookahead == 'g') ADVANCE(2326); END_STATE(); case 701: if (lookahead == 'G' || @@ -16388,7 +16409,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 704: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2260); + lookahead == 'h') ADVANCE(2261); END_STATE(); case 705: if (lookahead == 'H' || @@ -16408,7 +16429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 709: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2266); + lookahead == 'i') ADVANCE(2267); END_STATE(); case 710: if (lookahead == 'I' || @@ -16434,19 +16455,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 715: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2264); + lookahead == 'l') ADVANCE(2265); END_STATE(); case 716: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2268); + lookahead == 'l') ADVANCE(2269); END_STATE(); case 717: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2240); + lookahead == 'l') ADVANCE(2241); END_STATE(); case 718: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2318); + lookahead == 'l') ADVANCE(2319); END_STATE(); case 719: if (lookahead == 'L' || @@ -16486,7 +16507,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 728: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2276); + lookahead == 'n') ADVANCE(2277); END_STATE(); case 729: if (lookahead == 'N' || @@ -16496,11 +16517,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 730: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2250); + lookahead == 'n') ADVANCE(2251); END_STATE(); case 731: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2304); + lookahead == 'n') ADVANCE(2305); END_STATE(); case 732: if (lookahead == 'N' || @@ -16524,7 +16545,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 737: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2294); + lookahead == 'o') ADVANCE(2295); END_STATE(); case 738: if (lookahead == 'O' || @@ -16548,19 +16569,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 743: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2274); + lookahead == 'p') ADVANCE(2275); END_STATE(); case 744: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2272); + lookahead == 'p') ADVANCE(2273); END_STATE(); case 745: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2292); + lookahead == 'p') ADVANCE(2293); END_STATE(); case 746: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2302); + lookahead == 'p') ADVANCE(2303); END_STATE(); case 747: if (lookahead == 'P' || @@ -16572,15 +16593,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 749: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2262); + lookahead == 'r') ADVANCE(2263); END_STATE(); case 750: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2252); + lookahead == 'r') ADVANCE(2253); END_STATE(); case 751: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2321); + lookahead == 'r') ADVANCE(2322); END_STATE(); case 752: if (lookahead == 'R' || @@ -16604,11 +16625,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 757: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2306); + lookahead == 's') ADVANCE(2307); END_STATE(); case 758: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2308); + lookahead == 's') ADVANCE(2309); END_STATE(); case 759: if (lookahead == 'S' || @@ -16632,27 +16653,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 764: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2279); + lookahead == 't') ADVANCE(2280); END_STATE(); case 765: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2283); + lookahead == 't') ADVANCE(2284); END_STATE(); case 766: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2278); + lookahead == 't') ADVANCE(2279); END_STATE(); case 767: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2296); + lookahead == 't') ADVANCE(2297); END_STATE(); case 768: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2314); + lookahead == 't') ADVANCE(2315); END_STATE(); case 769: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2282); + lookahead == 't') ADVANCE(2283); END_STATE(); case 770: if (lookahead == 'T' || @@ -16708,25 +16729,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 783: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2310); + lookahead == 'y') ADVANCE(2311); END_STATE(); case 784: if (lookahead == '0' || - lookahead == '1') ADVANCE(2457); + lookahead == '1') ADVANCE(2459); END_STATE(); case 785: if (lookahead == '!' || lookahead == '=' || - lookahead == '>') ADVANCE(2496); + lookahead == '>') ADVANCE(2498); END_STATE(); case 786: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2292); END_STATE(); case 787: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); END_STATE(); case 788: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); END_STATE(); case 789: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(992); @@ -16735,7 +16756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); END_STATE(); case 790: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); END_STATE(); case 791: if (lookahead == '#' || @@ -16754,17 +16775,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 792: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2460); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2462); END_STATE(); case 793: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2332); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2333); END_STATE(); case 794: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3259); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3261); END_STATE(); case 795: if (('0' <= lookahead && lookahead <= '9') || @@ -16793,8 +16814,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 800: if (aux_sym_identifier_token2_character_set_1(lookahead)) ADVANCE(1985); - if (lookahead == '<') ADVANCE(2584); - if (lookahead == '\\') ADVANCE(2553); + if (lookahead == '<') ADVANCE(2586); + if (lookahead == '\\') ADVANCE(2555); if (lookahead == '{') ADVANCE(997); if (lookahead == '\t' || lookahead == ' ') SKIP(224) @@ -16834,7 +16855,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'w') ADVANCE(1693); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 801: if (aux_sym_identifier_token2_character_set_1(lookahead)) ADVANCE(1985); @@ -16877,16 +16898,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'w') ADVANCE(1693); if (lookahead != 0 && lookahead != '\n' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 802: if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == '(') ADVANCE(2463); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == '(') ADVANCE(2465); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '-') ADVANCE(236); if (lookahead == '<') ADVANCE(672); if (lookahead == '=') ADVANCE(2150); @@ -16904,10 +16925,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (aux_sym_identifier_token2_character_set_2(lookahead)) ADVANCE(1983); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'b') ADVANCE(1978); - if (lookahead == 'f') ADVANCE(1949); + if (lookahead == 'b') ADVANCE(1976); + if (lookahead == 'f') ADVANCE(1946); if (lookahead == 'g') ADVANCE(1969); - if (lookahead == 'l') ADVANCE(1950); + if (lookahead == 'l') ADVANCE(1947); if (lookahead == 'n') ADVANCE(1982); if (lookahead == 'p') ADVANCE(1970); if (lookahead == '{') ADVANCE(996); @@ -16918,14 +16939,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (aux_sym_identifier_token2_character_set_3(lookahead)) ADVANCE(1983); if (lookahead == '<') ADVANCE(672); if (lookahead == '\\') ADVANCE(650); - if (lookahead == 'c') ADVANCE(1976); + if (lookahead == 'c') ADVANCE(1978); if (lookahead == 'i') ADVANCE(1934); - if (lookahead == 'l') ADVANCE(1946); - if (lookahead == 'n') ADVANCE(1977); - if (lookahead == 't') ADVANCE(1935); + if (lookahead == 'l') ADVANCE(1950); + if (lookahead == 'n') ADVANCE(1979); + if (lookahead == 't') ADVANCE(1938); if (lookahead == '{') ADVANCE(996); if (lookahead == '\t' || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(203) END_STATE(); case 806: if (lookahead == '#' || @@ -16937,7 +16958,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(1960); if (lookahead == '{') ADVANCE(996); if (lookahead == '\t' || - lookahead == ' ') SKIP(445) + lookahead == ' ') SKIP(446) END_STATE(); case 807: if (lookahead == '"' || @@ -16947,48 +16968,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '+' || ('.' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2527); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2529); END_STATE(); case 808: if (lookahead != 0 && lookahead != '\n' && - lookahead != '\'') ADVANCE(3257); + lookahead != '\'') ADVANCE(3259); END_STATE(); case 809: if (lookahead != 0 && - lookahead != '\n') ADVANCE(2209); + lookahead != '\n') ADVANCE(2210); END_STATE(); case 810: if (lookahead != 0 && - lookahead != '\n') ADVANCE(2347); + lookahead != '\n') ADVANCE(2348); END_STATE(); case 811: if (eof) ADVANCE(814); if (lookahead == '\n') ADVANCE(914); - if (lookahead == '!') ADVANCE(2449); - if (lookahead == '#') ADVANCE(2418); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '!') ADVANCE(2451); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '&') ADVANCE(2169); - if (lookahead == '\'') ADVANCE(3258); - if (lookahead == '(') ADVANCE(2193); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2220); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == '-') ADVANCE(2422); - if (lookahead == '.') ADVANCE(2217); - if (lookahead == '/') ADVANCE(2213); + if (lookahead == '\'') ADVANCE(3260); + if (lookahead == '(') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2221); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2424); + if (lookahead == '.') ADVANCE(2218); + if (lookahead == '/') ADVANCE(2214); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2339); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2340); if (lookahead == '=') ADVANCE(2149); - if (lookahead == '>') ADVANCE(2431); + if (lookahead == '>') ADVANCE(2433); if (lookahead == '?') ADVANCE(2173); - if (lookahead == '@') ADVANCE(2196); - if (lookahead == '[') ADVANCE(2461); + if (lookahead == '@') ADVANCE(2197); + if (lookahead == '[') ADVANCE(2463); if (lookahead == '\\') ADVANCE(928); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == ']') ADVANCE(2464); if (lookahead == '_') ADVANCE(921); if (lookahead == '{') ADVANCE(993); if (lookahead == '|') ADVANCE(919); @@ -17005,96 +17026,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 812: if (eof) ADVANCE(814); if (lookahead == '!') ADVANCE(2166); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '\'') ADVANCE(809); - if (lookahead == '(') ADVANCE(2463); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2224); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == '(') ADVANCE(2465); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2225); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(2217); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '.') ADVANCE(2218); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2458); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == ';') ADVANCE(2213); if (lookahead == '<') ADVANCE(672); - if (lookahead == '=') ADVANCE(2174); - if (lookahead == '>') ADVANCE(2338); + if (lookahead == '=') ADVANCE(2175); + if (lookahead == '>') ADVANCE(2339); if (lookahead == '?') ADVANCE(2173); if (lookahead == '@') ADVANCE(807); if (lookahead == '\\') ADVANCE(105); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'a') ADVANCE(327); - if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'b') ADVANCE(425); if (lookahead == 'c') ADVANCE(296); - if (lookahead == 'd') ADVANCE(360); - if (lookahead == 'e') ADVANCE(499); - if (lookahead == 'f') ADVANCE(432); - if (lookahead == 'g') ADVANCE(567); - if (lookahead == 'i') ADVANCE(303); + if (lookahead == 'd') ADVANCE(361); + if (lookahead == 'e') ADVANCE(500); + if (lookahead == 'f') ADVANCE(427); + if (lookahead == 'g') ADVANCE(570); + if (lookahead == 'i') ADVANCE(488); if (lookahead == 'j') ADVANCE(269); if (lookahead == 'k') ADVANCE(366); if (lookahead == 'l') ADVANCE(270); if (lookahead == 'm') ADVANCE(271); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'o') ADVANCE(503); - if (lookahead == 'p') ADVANCE(568); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'n') ADVANCE(273); + if (lookahead == 'o') ADVANCE(506); + if (lookahead == 'p') ADVANCE(561); + if (lookahead == 'r') ADVANCE(362); if (lookahead == 's') ADVANCE(454); - if (lookahead == 't') ADVANCE(279); + if (lookahead == 't') ADVANCE(281); if (lookahead == 'u') ADVANCE(304); if (lookahead == '}') ADVANCE(995); if (lookahead == '\t' || lookahead == ' ') SKIP(813) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2964); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2966); END_STATE(); case 813: if (eof) ADVANCE(814); - if (lookahead == '$') ADVANCE(2227); - if (lookahead == '%') ADVANCE(2210); + if (lookahead == '$') ADVANCE(2228); + if (lookahead == '%') ADVANCE(2211); if (lookahead == '\'') ADVANCE(809); - if (lookahead == ')') ADVANCE(2195); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '+') ADVANCE(2224); - if (lookahead == ',') ADVANCE(2194); + if (lookahead == ')') ADVANCE(2196); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '+') ADVANCE(2225); + if (lookahead == ',') ADVANCE(2195); if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(2217); - if (lookahead == '/') ADVANCE(2213); - if (lookahead == '0') ADVANCE(2456); + if (lookahead == '.') ADVANCE(2218); + if (lookahead == '/') ADVANCE(2214); + if (lookahead == '0') ADVANCE(2458); if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == ';') ADVANCE(2213); if (lookahead == '<') ADVANCE(672); if (lookahead == '?') ADVANCE(2173); if (lookahead == '@') ADVANCE(807); if (lookahead == '\\') ADVANCE(105); - if (lookahead == ']') ADVANCE(2462); + if (lookahead == ']') ADVANCE(2464); if (lookahead == 'a') ADVANCE(327); - if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'b') ADVANCE(425); if (lookahead == 'c') ADVANCE(296); - if (lookahead == 'd') ADVANCE(360); - if (lookahead == 'e') ADVANCE(499); - if (lookahead == 'f') ADVANCE(432); - if (lookahead == 'g') ADVANCE(567); - if (lookahead == 'i') ADVANCE(303); + if (lookahead == 'd') ADVANCE(361); + if (lookahead == 'e') ADVANCE(500); + if (lookahead == 'f') ADVANCE(427); + if (lookahead == 'g') ADVANCE(570); + if (lookahead == 'i') ADVANCE(488); if (lookahead == 'j') ADVANCE(269); if (lookahead == 'k') ADVANCE(366); if (lookahead == 'l') ADVANCE(270); if (lookahead == 'm') ADVANCE(271); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'o') ADVANCE(503); - if (lookahead == 'p') ADVANCE(568); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'n') ADVANCE(273); + if (lookahead == 'o') ADVANCE(506); + if (lookahead == 'p') ADVANCE(561); + if (lookahead == 'r') ADVANCE(362); if (lookahead == 's') ADVANCE(454); - if (lookahead == 't') ADVANCE(279); + if (lookahead == 't') ADVANCE(281); if (lookahead == 'u') ADVANCE(304); if (lookahead == '}') ADVANCE(995); if (lookahead == '\t' || lookahead == ' ') SKIP(813) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2964); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2966); END_STATE(); case 814: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -17313,23 +17334,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 868: ACCEPT_TOKEN(anon_sym_ucs_DASH2); - if (lookahead == '1') ADVANCE(340); - if (lookahead == 'b') ADVANCE(341); + if (lookahead == '1') ADVANCE(342); + if (lookahead == 'b') ADVANCE(343); END_STATE(); case 869: ACCEPT_TOKEN(anon_sym_ucs_DASH21e); END_STATE(); case 870: ACCEPT_TOKEN(anon_sym_utf_DASH16); - if (lookahead == 'l') ADVANCE(345); + if (lookahead == 'l') ADVANCE(347); END_STATE(); case 871: ACCEPT_TOKEN(anon_sym_utf_DASH16le); END_STATE(); case 872: ACCEPT_TOKEN(anon_sym_ucs_DASH4); - if (lookahead == 'b') ADVANCE(342); - if (lookahead == 'l') ADVANCE(343); + if (lookahead == 'b') ADVANCE(344); + if (lookahead == 'l') ADVANCE(345); END_STATE(); case 873: ACCEPT_TOKEN(anon_sym_ucs_DASH4le); @@ -17369,7 +17390,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 885: ACCEPT_TOKEN(anon_sym_utf_DASH32); - if (lookahead == 'l') ADVANCE(346); + if (lookahead == 'l') ADVANCE(348); END_STATE(); case 886: ACCEPT_TOKEN(anon_sym_utf_DASH32le); @@ -17526,60 +17547,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 923: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '%') ADVANCE(111); - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '(') ADVANCE(2523); - if (lookahead == ')') ADVANCE(2524); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '(') ADVANCE(2525); + if (lookahead == ')') ADVANCE(2526); if (lookahead == '@') ADVANCE(785); if (lookahead == 'z') ADVANCE(112); if (lookahead == '{') ADVANCE(146); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); if (lookahead == '+' || lookahead == '=' || - lookahead == '?') ADVANCE(2495); + lookahead == '?') ADVANCE(2497); END_STATE(); case 924: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '%') ADVANCE(111); - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '(') ADVANCE(2523); - if (lookahead == ')') ADVANCE(2524); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '(') ADVANCE(2525); + if (lookahead == ')') ADVANCE(2526); if (lookahead == 'z') ADVANCE(112); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 925: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '%') ADVANCE(111); - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '(') ADVANCE(2523); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '(') ADVANCE(2525); if (lookahead == '@') ADVANCE(785); if (lookahead == 'z') ADVANCE(112); if (lookahead == '{') ADVANCE(146); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); if (lookahead == '+' || lookahead == '=' || - lookahead == '?') ADVANCE(2495); + lookahead == '?') ADVANCE(2497); END_STATE(); case 926: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '%') ADVANCE(111); - if (lookahead == '&') ADVANCE(2230); - if (lookahead == '(') ADVANCE(2523); + if (lookahead == '&') ADVANCE(2231); + if (lookahead == '(') ADVANCE(2525); if (lookahead == 'z') ADVANCE(112); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 927: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '%') ADVANCE(111); - if (lookahead == '(') ADVANCE(2523); + if (lookahead == '(') ADVANCE(2525); if (lookahead == 'z') ADVANCE(112); END_STATE(); case 928: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 929: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == '|') ADVANCE(2351); if (lookahead != 0 && lookahead != '\n') ADVANCE(979); END_STATE(); @@ -17603,11 +17624,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 934: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (lookahead == ':') ADVANCE(816); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1453); @@ -17617,7 +17638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 936: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1253); if (lookahead == 'O' || @@ -17628,7 +17649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 937: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (lookahead == 'E' || lookahead == 'e') ADVANCE(715); if (lookahead == 'O' || @@ -17636,7 +17657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 938: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1453); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17645,24 +17666,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 939: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (lookahead == 'L' || lookahead == 'l') ADVANCE(770); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2239); + if (lookahead == '-') ADVANCE(2240); if (lookahead == 'H' || lookahead == 'h') ADVANCE(1009); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2249); + lookahead == 'r') ADVANCE(2250); if (lookahead == 'S' || lookahead == 's') ADVANCE(1208); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17671,17 +17692,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 942: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2239); + if (lookahead == '-') ADVANCE(2240); if (lookahead == 'H' || lookahead == 'h') ADVANCE(663); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2248); + lookahead == 'r') ADVANCE(2249); if (lookahead == 'S' || lookahead == 's') ADVANCE(709); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2238); + if (lookahead == '-') ADVANCE(2239); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1072); if (lookahead == 'P' || @@ -17692,7 +17713,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 944: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(2238); + if (lookahead == '-') ADVANCE(2239); if (lookahead == 'I' || lookahead == 'i') ADVANCE(678); if (lookahead == 'P' || @@ -17706,13 +17727,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X' || lookahead == 'x') ADVANCE(792); if (lookahead == '8' || - lookahead == '9') ADVANCE(2455); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2454); + lookahead == '9') ADVANCE(2457); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2456); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == '.') ADVANCE(787); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2457); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); @@ -17723,14 +17744,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 948: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '{') ADVANCE(2529); + if (lookahead == '{') ADVANCE(2531); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1398); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2243); + lookahead == 's') ADVANCE(2244); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -17770,7 +17791,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(749); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2242); + lookahead == 's') ADVANCE(2243); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); @@ -17799,7 +17820,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(1240); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1372); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2321); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -17837,7 +17858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(714); if (lookahead == 'U' || lookahead == 'u') ADVANCE(743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2321); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); @@ -17846,7 +17867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(1053); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2259); + lookahead == 't') ADVANCE(2260); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -17858,7 +17879,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(675); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2258); + lookahead == 't') ADVANCE(2259); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); @@ -17914,7 +17935,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 968: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2247); + lookahead == 'l') ADVANCE(2248); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1373); if (lookahead == 'U' || @@ -17926,7 +17947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 969: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2246); + lookahead == 'l') ADVANCE(2247); if (lookahead == 'O' || lookahead == 'o') ADVANCE(744); if (lookahead == 'U' || @@ -17958,7 +17979,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'N' || lookahead == 'n') ADVANCE(1081); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2275); + lookahead == 'p') ADVANCE(2276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -17968,15 +17989,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'N' || lookahead == 'n') ADVANCE(680); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2274); + lookahead == 'p') ADVANCE(2275); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2292); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2292); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -18004,7 +18025,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '+' || ('.' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2527); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2529); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token4); @@ -18031,7 +18052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(988); - if (lookahead == 's') ADVANCE(2440); + if (lookahead == 's') ADVANCE(2442); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(984); @@ -18040,7 +18061,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(988); - if (lookahead == 't') ADVANCE(2445); + if (lookahead == 't') ADVANCE(2447); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(984); @@ -18071,7 +18092,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(988); - if (lookahead == 's') ADVANCE(2442); + if (lookahead == 's') ADVANCE(2444); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_argument_token1); @@ -18081,7 +18102,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(988); - if (lookahead == 't') ADVANCE(2448); + if (lookahead == 't') ADVANCE(2450); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_argument_token1); @@ -18127,7 +18148,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 995: ACCEPT_TOKEN(anon_sym_RBRACE); @@ -18141,11 +18162,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -18173,14 +18194,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(2437); + if (lookahead == 's') ADVANCE(2439); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(2446); + if (lookahead == 't') ADVANCE(2448); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -18200,7 +18221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1005: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2317); + lookahead == 'a') ADVANCE(2318); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -18218,7 +18239,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18231,7 +18252,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18244,7 +18265,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18267,7 +18288,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18280,7 +18301,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18327,7 +18348,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18362,7 +18383,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18375,7 +18396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18392,7 +18413,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18413,7 +18434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18434,7 +18455,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18457,7 +18478,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18470,7 +18491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18483,7 +18504,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18496,7 +18517,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18509,7 +18530,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18522,7 +18543,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18535,7 +18556,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18548,7 +18569,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18565,7 +18586,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18578,7 +18599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18591,7 +18612,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18604,7 +18625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18617,7 +18638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18630,7 +18651,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18643,7 +18664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18656,7 +18677,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18669,7 +18690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18682,12 +18703,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2245); + lookahead == 'b') ADVANCE(2246); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -18703,12 +18724,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2255); + lookahead == 'c') ADVANCE(2256); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -18724,7 +18745,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18739,7 +18760,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1047: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18760,7 +18781,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1048: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18773,7 +18794,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1049: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18786,7 +18807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1050: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18801,7 +18822,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1051: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18816,7 +18837,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1052: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18829,7 +18850,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1053: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18850,7 +18871,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1055: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18867,7 +18888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1056: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18888,7 +18909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1058: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18901,7 +18922,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1059: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18920,7 +18941,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1060: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18943,7 +18964,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1061: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18956,7 +18977,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1062: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18969,7 +18990,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1063: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18984,7 +19005,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1064: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -18997,7 +19018,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1065: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19010,7 +19031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1066: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19025,7 +19046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1067: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19042,7 +19063,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1068: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19055,7 +19076,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1069: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19070,7 +19091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1070: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19083,12 +19104,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1071: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2301); + lookahead == 'd') ADVANCE(2302); if (lookahead == 'T' || lookahead == 't') ADVANCE(1122); if (('A' <= lookahead && lookahead <= 'Z') || @@ -19098,7 +19119,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1072: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2324); + lookahead == 'd') ADVANCE(2325); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19114,12 +19135,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1074: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2533); + lookahead == 'd') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19127,7 +19148,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1075: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19140,12 +19161,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1076: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2534); + lookahead == 'd') ADVANCE(2536); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19153,12 +19174,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1077: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2544); + lookahead == 'd') ADVANCE(2546); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19166,12 +19187,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1078: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2543); + lookahead == 'd') ADVANCE(2545); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19179,7 +19200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1079: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19192,12 +19213,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1080: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2550); + lookahead == 'd') ADVANCE(2552); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19205,7 +19226,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1081: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19226,7 +19247,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1083: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19239,7 +19260,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1084: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19270,7 +19291,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1087: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19283,7 +19304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1088: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19296,7 +19317,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1089: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19309,7 +19330,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1090: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19322,7 +19343,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1091: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19335,7 +19356,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1092: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19348,7 +19369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1093: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19369,7 +19390,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1095: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19382,7 +19403,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1096: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19395,7 +19416,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1097: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19408,7 +19429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1098: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19421,7 +19442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1099: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19434,7 +19455,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1100: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19459,7 +19480,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1102: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2299); + lookahead == 'e') ADVANCE(2300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19475,7 +19496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1104: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2257); + lookahead == 'e') ADVANCE(2258); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19483,7 +19504,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1105: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2271); + lookahead == 'e') ADVANCE(2272); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19491,7 +19512,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1106: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2313); + lookahead == 'e') ADVANCE(2314); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19499,7 +19520,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1107: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2287); + lookahead == 'e') ADVANCE(2288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19507,7 +19528,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1108: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2289); + lookahead == 'e') ADVANCE(2290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -19523,7 +19544,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1110: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19550,7 +19571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1111: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19565,12 +19586,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1112: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2533); + lookahead == 'e') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19578,7 +19599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1113: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19591,7 +19612,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1114: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19604,7 +19625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1115: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19617,12 +19638,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1116: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2534); + lookahead == 'e') ADVANCE(2536); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19630,7 +19651,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1117: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19643,12 +19664,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1118: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2544); + lookahead == 'e') ADVANCE(2546); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -19656,7 +19677,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1119: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19669,7 +19690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1120: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19682,7 +19703,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1121: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19695,7 +19716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1122: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19718,7 +19739,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1124: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19731,7 +19752,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1125: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19744,7 +19765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1126: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19765,7 +19786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1128: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19778,7 +19799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1129: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19791,7 +19812,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1130: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19804,7 +19825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1131: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19825,7 +19846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1133: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19846,7 +19867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1135: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19859,7 +19880,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1136: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19874,7 +19895,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1137: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19889,7 +19910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1138: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19908,7 +19929,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1139: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19921,7 +19942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1140: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19934,7 +19955,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1141: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19947,7 +19968,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1142: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19960,7 +19981,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1143: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19973,7 +19994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1144: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19986,7 +20007,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1145: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -19999,7 +20020,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1146: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20012,7 +20033,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1147: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20025,7 +20046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1148: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20038,7 +20059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1149: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20051,7 +20072,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20064,7 +20085,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20077,7 +20098,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20090,7 +20111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20103,7 +20124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20116,7 +20137,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20129,7 +20150,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20142,7 +20163,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20155,7 +20176,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20168,7 +20189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20181,7 +20202,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20194,7 +20215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20207,7 +20228,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20220,7 +20241,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20233,7 +20254,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20246,7 +20267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20259,7 +20280,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20272,7 +20293,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20285,7 +20306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20298,7 +20319,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20311,7 +20332,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20324,7 +20345,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20345,7 +20366,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20358,7 +20379,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20371,7 +20392,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20384,7 +20405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20397,7 +20418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20410,7 +20431,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20423,7 +20444,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1179: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2326); + lookahead == 'g') ADVANCE(2327); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -20439,12 +20460,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2533); + lookahead == 'g') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -20452,7 +20473,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20473,7 +20494,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20488,7 +20509,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20501,7 +20522,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20514,7 +20535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20527,7 +20548,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20540,7 +20561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20553,7 +20574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20566,7 +20587,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20587,12 +20608,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2261); + lookahead == 'h') ADVANCE(2262); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -20614,12 +20635,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2533); + lookahead == 'h') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -20627,7 +20648,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20640,7 +20661,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20669,7 +20690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20684,7 +20705,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20697,7 +20718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20710,7 +20731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20723,7 +20744,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20738,7 +20759,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20751,7 +20772,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20764,7 +20785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20777,12 +20798,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2267); + lookahead == 'i') ADVANCE(2268); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -20798,7 +20819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20815,7 +20836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20830,7 +20851,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20843,7 +20864,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20856,7 +20877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20869,7 +20890,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20884,7 +20905,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20899,7 +20920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20912,7 +20933,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20925,7 +20946,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20948,7 +20969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20985,7 +21006,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -20998,7 +21019,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21011,7 +21032,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21024,7 +21045,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21037,7 +21058,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21050,7 +21071,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21063,7 +21084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21076,7 +21097,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21089,7 +21110,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21104,7 +21125,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21117,7 +21138,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21130,7 +21151,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21143,7 +21164,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21156,7 +21177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21169,7 +21190,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21182,7 +21203,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21203,7 +21224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21216,7 +21237,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21229,7 +21250,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21242,7 +21263,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21255,7 +21276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21268,7 +21289,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21281,7 +21302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21294,7 +21315,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21307,7 +21328,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21320,7 +21341,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21333,7 +21354,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21346,12 +21367,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2265); + lookahead == 'l') ADVANCE(2266); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21359,7 +21380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1254: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2269); + lookahead == 'l') ADVANCE(2270); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21367,7 +21388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1255: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2241); + lookahead == 'l') ADVANCE(2242); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21375,7 +21396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1256: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2319); + lookahead == 'l') ADVANCE(2320); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21401,7 +21422,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21414,12 +21435,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2533); + lookahead == 'l') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -21427,7 +21448,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21440,7 +21461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21453,12 +21474,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2548); + lookahead == 'l') ADVANCE(2550); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -21466,7 +21487,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21487,7 +21508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21508,7 +21529,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21537,7 +21558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21550,7 +21571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21563,7 +21584,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21576,7 +21597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21589,7 +21610,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21602,7 +21623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21615,7 +21636,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21628,7 +21649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21641,7 +21662,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21654,7 +21675,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21667,7 +21688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21684,7 +21705,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21697,7 +21718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21710,7 +21731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21723,7 +21744,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21736,7 +21757,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21749,7 +21770,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21786,7 +21807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21799,7 +21820,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21812,7 +21833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21825,7 +21846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21838,7 +21859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21851,7 +21872,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21866,7 +21887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1297: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2277); + lookahead == 'n') ADVANCE(2278); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21874,7 +21895,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1298: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2251); + lookahead == 'n') ADVANCE(2252); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21882,7 +21903,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1299: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2305); + lookahead == 'n') ADVANCE(2306); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -21900,7 +21921,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21915,7 +21936,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21928,7 +21949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21941,7 +21962,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21954,12 +21975,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2533); + lookahead == 'n') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -21967,7 +21988,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21980,7 +22001,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -21993,7 +22014,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22014,7 +22035,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22027,7 +22048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22040,7 +22061,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22053,7 +22074,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22066,7 +22087,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22079,7 +22100,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22092,7 +22113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22105,7 +22126,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22118,7 +22139,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22131,7 +22152,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22152,7 +22173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22165,7 +22186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22178,7 +22199,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22191,7 +22212,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22204,7 +22225,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22217,7 +22238,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22230,7 +22251,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22243,7 +22264,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22264,7 +22285,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22277,7 +22298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22290,7 +22311,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22303,7 +22324,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22316,7 +22337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22329,7 +22350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22344,7 +22365,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22357,7 +22378,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1337: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22370,7 +22391,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22383,7 +22404,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22396,7 +22417,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1340: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22409,7 +22430,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1341: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2295); + lookahead == 'o') ADVANCE(2296); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -22417,7 +22438,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1342: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2533); + lookahead == 'o') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -22425,7 +22446,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22446,7 +22467,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22475,7 +22496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1348: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22488,7 +22509,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1349: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22501,7 +22522,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22514,7 +22535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1351: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22527,7 +22548,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1352: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22540,7 +22561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1353: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22555,7 +22576,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1354: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22568,7 +22589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1355: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22581,7 +22602,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1356: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22594,7 +22615,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1357: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22607,7 +22628,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1358: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22628,7 +22649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1360: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22641,7 +22662,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1361: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22654,7 +22675,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1362: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22667,7 +22688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1363: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22680,7 +22701,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1364: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22693,7 +22714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1365: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22706,7 +22727,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1366: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22719,7 +22740,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1367: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22732,7 +22753,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1368: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22753,7 +22774,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1370: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22766,7 +22787,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1371: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22779,12 +22800,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1372: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2275); + lookahead == 'p') ADVANCE(2276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -22792,7 +22813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1373: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2273); + lookahead == 'p') ADVANCE(2274); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -22800,7 +22821,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1374: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2293); + lookahead == 'p') ADVANCE(2294); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -22808,7 +22829,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1375: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2303); + lookahead == 'p') ADVANCE(2304); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -22824,7 +22845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1377: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22837,12 +22858,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1378: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2533); + lookahead == 'p') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -22850,7 +22871,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1379: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22863,7 +22884,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1380: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22876,7 +22897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1381: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22889,7 +22910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1382: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22902,7 +22923,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1383: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22923,7 +22944,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1385: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22936,7 +22957,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1386: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22949,7 +22970,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1387: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22962,7 +22983,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1388: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22975,7 +22996,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1389: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -22988,7 +23009,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1390: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23001,7 +23022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1391: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23014,7 +23035,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1392: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23027,7 +23048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1393: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23040,7 +23061,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1394: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23053,7 +23074,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1395: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23066,7 +23087,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1396: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23079,7 +23100,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1397: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23092,12 +23113,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1398: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2263); + lookahead == 'r') ADVANCE(2264); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23105,7 +23126,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1399: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2253); + lookahead == 'r') ADVANCE(2254); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23113,7 +23134,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1400: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2322); + lookahead == 'r') ADVANCE(2323); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23121,7 +23142,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1401: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2533); + lookahead == 'r') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -23129,7 +23150,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1402: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23142,7 +23163,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1403: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23155,7 +23176,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1404: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23178,7 +23199,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1406: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23191,7 +23212,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1407: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23204,7 +23225,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1408: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23225,7 +23246,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1410: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23246,7 +23267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1412: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23267,7 +23288,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1414: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23280,7 +23301,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1415: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23295,7 +23316,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1416: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23308,7 +23329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1417: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23321,7 +23342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1418: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23334,7 +23355,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1419: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23347,7 +23368,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1420: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23360,7 +23381,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1421: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23373,7 +23394,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1422: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23386,7 +23407,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1423: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23401,7 +23422,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1424: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23414,7 +23435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1425: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23427,7 +23448,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1426: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23440,7 +23461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1427: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23453,7 +23474,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1428: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2307); + lookahead == 's') ADVANCE(2308); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23461,7 +23482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1429: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2309); + lookahead == 's') ADVANCE(2310); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23469,7 +23490,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1430: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2533); + lookahead == 's') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -23477,7 +23498,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1431: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23490,7 +23511,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1432: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23503,7 +23524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1433: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23524,7 +23545,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1435: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23537,7 +23558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1436: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23558,7 +23579,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1438: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23579,7 +23600,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1440: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23592,7 +23613,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1441: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23605,7 +23626,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1442: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23618,7 +23639,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1443: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23631,7 +23652,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1444: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23644,7 +23665,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1445: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23657,7 +23678,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1446: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23670,7 +23691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1447: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23691,7 +23712,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1449: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23704,7 +23725,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1450: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23717,7 +23738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1451: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23730,7 +23751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1452: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23743,7 +23764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1453: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23756,7 +23777,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1454: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2280); + lookahead == 't') ADVANCE(2281); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23764,7 +23785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1455: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2281); + lookahead == 't') ADVANCE(2282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23772,7 +23793,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1456: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2284); + lookahead == 't') ADVANCE(2285); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23780,7 +23801,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1457: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2297); + lookahead == 't') ADVANCE(2298); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23788,7 +23809,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1458: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2315); + lookahead == 't') ADVANCE(2316); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23796,7 +23817,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1459: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2285); + lookahead == 't') ADVANCE(2286); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -23812,12 +23833,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1461: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2533); + lookahead == 't') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -23825,7 +23846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1462: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23838,7 +23859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1463: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23851,7 +23872,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1464: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23880,7 +23901,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1467: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23893,7 +23914,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1468: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23906,7 +23927,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1469: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23919,7 +23940,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1470: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23932,7 +23953,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1471: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23945,7 +23966,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1472: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23958,7 +23979,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1473: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23971,7 +23992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1474: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23984,7 +24005,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1475: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -23997,7 +24018,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1476: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24010,7 +24031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1477: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24023,7 +24044,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1478: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24036,7 +24057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1479: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24049,7 +24070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1480: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24062,7 +24083,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1481: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24075,7 +24096,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1482: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24088,7 +24109,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1483: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24125,7 +24146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1487: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24138,7 +24159,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1488: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24159,7 +24180,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1490: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24172,7 +24193,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1491: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24185,7 +24206,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1492: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24198,7 +24219,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1493: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24211,7 +24232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1494: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24224,7 +24245,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1495: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24245,7 +24266,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1497: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24258,7 +24279,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1498: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24287,7 +24308,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1501: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24308,7 +24329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1503: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24321,7 +24342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1504: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24334,12 +24355,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1505: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2533); + lookahead == 'w') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -24347,12 +24368,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1506: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2540); + lookahead == 'w') ADVANCE(2542); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -24360,12 +24381,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1507: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2537); + lookahead == 'w') ADVANCE(2539); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -24373,7 +24394,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1508: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24402,12 +24423,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1511: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2533); + lookahead == 'x') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -24415,7 +24436,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1512: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24428,7 +24449,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1513: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24441,12 +24462,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1514: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2311); + lookahead == 'y') ADVANCE(2312); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); @@ -24454,7 +24475,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1515: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2533); + lookahead == 'y') ADVANCE(2535); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1519); @@ -24462,7 +24483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24475,7 +24496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24488,7 +24509,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -24505,7 +24526,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24537,7 +24558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(1983); - if (lookahead == 's') ADVANCE(2439); + if (lookahead == 's') ADVANCE(2441); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1525); @@ -24546,7 +24567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(1983); - if (lookahead == 't') ADVANCE(2444); + if (lookahead == 't') ADVANCE(2446); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1525); @@ -24590,7 +24611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1527: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24625,7 +24646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1529: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24667,7 +24688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1531: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24688,7 +24709,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1532: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24707,7 +24728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1533: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24744,7 +24765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1536: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24761,7 +24782,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1537: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24778,7 +24799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24793,7 +24814,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24808,7 +24829,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24823,7 +24844,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24838,7 +24859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24853,7 +24874,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24868,7 +24889,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24881,7 +24902,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24894,7 +24915,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24907,7 +24928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24920,7 +24941,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24933,7 +24954,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24954,7 +24975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24973,7 +24994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24986,7 +25007,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -24999,7 +25020,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1553: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25012,7 +25033,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1554: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25031,7 +25052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1555: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25044,7 +25065,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1556: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25057,7 +25078,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1557: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25070,7 +25091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1558: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25083,7 +25104,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1559: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25096,7 +25117,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1560: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25109,7 +25130,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25122,7 +25143,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1562: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25141,7 +25162,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1563: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25154,7 +25175,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1564: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25167,7 +25188,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25180,7 +25201,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25193,7 +25214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25206,7 +25227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25219,7 +25240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25238,7 +25259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25257,7 +25278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25284,7 +25305,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25303,7 +25324,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25322,7 +25343,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25341,7 +25362,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25360,7 +25381,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25379,7 +25400,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25398,7 +25419,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25417,7 +25438,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25436,7 +25457,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1581: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25455,7 +25476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1582: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25474,7 +25495,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1583: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25493,7 +25514,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1584: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25512,7 +25533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1585: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25531,7 +25552,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1586: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25543,12 +25564,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2533); + lookahead == 'd') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1587: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25560,12 +25581,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2543); + lookahead == 'd') ADVANCE(2545); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1588: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25577,12 +25598,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2550); + lookahead == 'd') ADVANCE(2552); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25599,7 +25620,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1590: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25616,7 +25637,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25633,7 +25654,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25645,12 +25666,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2535); + lookahead == 'd') ADVANCE(2537); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1593: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25662,12 +25683,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2545); + lookahead == 'd') ADVANCE(2547); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1594: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25684,7 +25705,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25701,7 +25722,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1596: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25718,7 +25739,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25735,7 +25756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1598: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25752,7 +25773,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1599: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25769,7 +25790,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25786,7 +25807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1601: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25803,7 +25824,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1602: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25820,7 +25841,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1603: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25837,7 +25858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1604: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25854,7 +25875,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1605: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25871,7 +25892,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1606: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25888,7 +25909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1607: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25905,7 +25926,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1608: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25922,7 +25943,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25934,12 +25955,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2533); + lookahead == 'e') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25956,7 +25977,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1611: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25973,7 +25994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1612: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -25990,7 +26011,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26007,7 +26028,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1614: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26024,7 +26045,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1615: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26036,12 +26057,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2535); + lookahead == 'e') ADVANCE(2537); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1616: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26058,7 +26079,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1617: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26075,7 +26096,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26092,7 +26113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26104,12 +26125,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2545); + lookahead == 'e') ADVANCE(2547); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26126,7 +26147,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26143,7 +26164,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26160,7 +26181,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26177,7 +26198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26194,7 +26215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26211,7 +26232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26228,7 +26249,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26245,7 +26266,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26262,7 +26283,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26279,7 +26300,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26296,7 +26317,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26313,7 +26334,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26330,7 +26351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26347,7 +26368,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26364,7 +26385,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26381,7 +26402,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26398,7 +26419,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26415,7 +26436,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26432,7 +26453,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26449,7 +26470,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26466,7 +26487,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26483,7 +26504,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26500,7 +26521,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26517,7 +26538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26534,7 +26555,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26551,7 +26572,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26568,7 +26589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26585,7 +26606,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26602,7 +26623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26619,7 +26640,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26636,7 +26657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26653,7 +26674,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26670,7 +26691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26687,7 +26708,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26704,7 +26725,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26721,7 +26742,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26738,7 +26759,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26755,7 +26776,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26772,7 +26793,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26789,7 +26810,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26806,7 +26827,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26823,7 +26844,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26840,7 +26861,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26857,7 +26878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26874,7 +26895,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26891,7 +26912,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26908,7 +26929,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1667: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26920,12 +26941,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2533); + lookahead == 'g') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1668: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26942,7 +26963,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1669: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26959,7 +26980,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1670: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26976,7 +26997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1671: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -26993,7 +27014,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1672: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27010,7 +27031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1673: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27027,7 +27048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1674: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27044,7 +27065,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1675: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27061,7 +27082,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1676: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27078,7 +27099,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1677: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27090,12 +27111,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2533); + lookahead == 'h') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1678: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27112,7 +27133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1679: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27129,7 +27150,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1680: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27146,7 +27167,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1681: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27163,7 +27184,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1682: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27180,7 +27201,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1683: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27197,7 +27218,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1684: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27214,7 +27235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1685: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27231,7 +27252,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1686: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27248,7 +27269,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1687: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27265,7 +27286,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1688: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27282,7 +27303,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1689: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27299,7 +27320,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1690: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27316,7 +27337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1691: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27333,7 +27354,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1692: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27350,7 +27371,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1693: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27367,7 +27388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1694: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27384,7 +27405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1695: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27401,7 +27422,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1696: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27418,7 +27439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1697: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27435,7 +27456,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1698: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27452,7 +27473,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1699: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27469,7 +27490,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1700: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27486,7 +27507,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1701: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27503,7 +27524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1702: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27520,7 +27541,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1703: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27537,7 +27558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1704: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27554,7 +27575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1705: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27571,7 +27592,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1706: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27588,7 +27609,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1707: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27605,7 +27626,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1708: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27622,7 +27643,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1709: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27639,7 +27660,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1710: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27656,7 +27677,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1711: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27673,7 +27694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1712: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27690,7 +27711,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1713: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27707,7 +27728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1714: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27724,7 +27745,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1715: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27741,7 +27762,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1716: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27758,7 +27779,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1717: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27775,7 +27796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1718: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27792,7 +27813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1719: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27809,7 +27830,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1720: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27821,12 +27842,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2533); + lookahead == 'l') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1721: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27843,7 +27864,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1722: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27860,7 +27881,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1723: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27877,7 +27898,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1724: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27894,7 +27915,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1725: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27906,12 +27927,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2549); + lookahead == 'l') ADVANCE(2551); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1726: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27928,7 +27949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1727: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27945,7 +27966,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1728: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27962,7 +27983,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1729: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27979,7 +28000,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1730: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -27996,7 +28017,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1731: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28013,7 +28034,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1732: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28030,7 +28051,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1733: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28047,7 +28068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1734: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28064,7 +28085,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1735: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28081,7 +28102,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1736: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28098,7 +28119,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1737: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28115,7 +28136,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1738: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28132,7 +28153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1739: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28149,7 +28170,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1740: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28166,7 +28187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1741: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28183,7 +28204,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1742: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28200,7 +28221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1743: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28217,7 +28238,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1744: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28234,7 +28255,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1745: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28251,7 +28272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1746: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28268,7 +28289,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1747: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28285,7 +28306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1748: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28302,7 +28323,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1749: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28314,12 +28335,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2533); + lookahead == 'n') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1750: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28336,7 +28357,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1751: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28353,7 +28374,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1752: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28370,7 +28391,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1753: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28387,7 +28408,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1754: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28404,7 +28425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1755: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28421,7 +28442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1756: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28438,7 +28459,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1757: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28455,7 +28476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1758: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28472,7 +28493,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1759: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28489,7 +28510,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1760: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28506,7 +28527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1761: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28523,7 +28544,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1762: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28540,7 +28561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1763: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28557,7 +28578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1764: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28574,7 +28595,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1765: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28591,7 +28612,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1766: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28608,7 +28629,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1767: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28625,7 +28646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1768: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28642,7 +28663,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1769: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28659,7 +28680,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1770: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28676,7 +28697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1771: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28693,7 +28714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1772: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28710,7 +28731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1773: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28727,7 +28748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1774: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28744,7 +28765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1775: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28761,7 +28782,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1776: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28778,7 +28799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1777: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28795,7 +28816,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1778: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28812,7 +28833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1779: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28829,7 +28850,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1780: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28846,7 +28867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1781: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28863,7 +28884,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1782: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28880,7 +28901,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1783: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28892,12 +28913,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2533); + lookahead == 'o') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1784: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28914,7 +28935,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1785: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28931,7 +28952,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1786: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28948,7 +28969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1787: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28965,7 +28986,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1788: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28982,7 +29003,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1789: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -28999,7 +29020,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1790: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29016,7 +29037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1791: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29033,7 +29054,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1792: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29050,7 +29071,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1793: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29067,7 +29088,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1794: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29084,7 +29105,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1795: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29101,7 +29122,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1796: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29118,7 +29139,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1797: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29135,7 +29156,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1798: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29152,7 +29173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1799: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29169,7 +29190,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1800: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29186,7 +29207,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1801: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29203,7 +29224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1802: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29220,7 +29241,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1803: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29237,7 +29258,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1804: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29254,7 +29275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1805: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29271,7 +29292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1806: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29288,7 +29309,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1807: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29300,12 +29321,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2533); + lookahead == 'p') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1808: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29322,7 +29343,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1809: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29339,7 +29360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1810: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29356,7 +29377,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1811: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29373,7 +29394,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1812: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29390,7 +29411,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1813: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29407,7 +29428,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1814: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29424,7 +29445,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1815: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29441,7 +29462,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1816: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29458,7 +29479,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1817: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29475,7 +29496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1818: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29492,7 +29513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1819: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29509,7 +29530,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1820: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29526,7 +29547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1821: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29543,7 +29564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1822: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29560,7 +29581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1823: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29577,7 +29598,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1824: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29594,7 +29615,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1825: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29611,7 +29632,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1826: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29628,7 +29649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1827: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29645,7 +29666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1828: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29657,12 +29678,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2533); + lookahead == 'r') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1829: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29679,7 +29700,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1830: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29696,7 +29717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1831: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29713,7 +29734,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1832: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29730,7 +29751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1833: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29747,7 +29768,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1834: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29764,7 +29785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1835: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29781,7 +29802,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29798,7 +29819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1837: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29815,7 +29836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1838: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29832,7 +29853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1839: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29849,7 +29870,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29866,7 +29887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29883,7 +29904,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29900,7 +29921,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29917,7 +29938,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29934,7 +29955,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29951,7 +29972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29968,7 +29989,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -29980,12 +30001,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2533); + lookahead == 's') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30002,7 +30023,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30019,7 +30040,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30036,7 +30057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30053,7 +30074,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30070,7 +30091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30087,7 +30108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30104,7 +30125,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30121,7 +30142,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30138,7 +30159,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30155,7 +30176,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30172,7 +30193,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30189,7 +30210,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30206,7 +30227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30223,7 +30244,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30240,7 +30261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30257,7 +30278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30274,7 +30295,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30291,7 +30312,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30303,12 +30324,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2533); + lookahead == 't') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30325,7 +30346,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30342,7 +30363,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30359,7 +30380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30376,7 +30397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30393,7 +30414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30410,7 +30431,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30427,7 +30448,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1874: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30444,7 +30465,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1875: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30461,7 +30482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1876: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30478,7 +30499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1877: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30495,7 +30516,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1878: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30512,7 +30533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1879: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30529,7 +30550,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1880: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30546,7 +30567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1881: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30563,7 +30584,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1882: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30580,7 +30601,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1883: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30597,7 +30618,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1884: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30614,7 +30635,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1885: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30631,7 +30652,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1886: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30648,7 +30669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1887: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30665,7 +30686,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1888: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30682,7 +30703,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1889: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30699,7 +30720,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1890: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30716,7 +30737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1891: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30733,7 +30754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1892: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30750,7 +30771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1893: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30767,7 +30788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1894: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30784,7 +30805,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1895: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30801,7 +30822,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1896: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30818,7 +30839,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1897: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30835,7 +30856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1898: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30852,7 +30873,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1899: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30869,7 +30890,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1900: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30886,7 +30907,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1901: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30898,12 +30919,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'v') || ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2533); + lookahead == 'w') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1902: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30915,12 +30936,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'v') || ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2541); + lookahead == 'w') ADVANCE(2543); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1903: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30932,12 +30953,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'v') || ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1985); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2538); + lookahead == 'w') ADVANCE(2540); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1904: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30954,7 +30975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1905: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30968,12 +30989,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'y' || lookahead == 'z') ADVANCE(1985); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2533); + lookahead == 'x') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1906: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -30992,7 +31013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1907: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31011,7 +31032,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1908: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31023,12 +31044,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'x') || lookahead == 'z') ADVANCE(1985); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2533); + lookahead == 'y') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1909: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31045,7 +31066,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1910: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31060,7 +31081,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1911: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31075,7 +31096,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1912: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31090,7 +31111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1913: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31105,7 +31126,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1914: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31120,7 +31141,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1915: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31135,7 +31156,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1916: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31150,7 +31171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1917: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31165,7 +31186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1918: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31180,7 +31201,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1919: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31195,7 +31216,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1920: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31210,7 +31231,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1921: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31225,7 +31246,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1922: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31240,7 +31261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1923: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31255,7 +31276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1924: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31270,7 +31291,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1925: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31285,7 +31306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1926: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31300,7 +31321,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1927: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31315,7 +31336,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1928: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31330,7 +31351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1929: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31345,7 +31366,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1930: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31360,7 +31381,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1931: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31375,7 +31396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1932: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31390,7 +31411,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1933: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31405,7 +31426,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1934: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31416,7 +31437,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'c') ADVANCE(1964); + if (lookahead == 'c') ADVANCE(1965); END_STATE(); case 1935: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31426,7 +31447,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'e') ADVANCE(1980); + if (lookahead == 'e') ADVANCE(2415); END_STATE(); case 1936: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31436,7 +31457,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'e') ADVANCE(2414); + if (lookahead == 'e') ADVANCE(2405); END_STATE(); case 1937: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31446,7 +31467,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'e') ADVANCE(2404); + if (lookahead == 'e') ADVANCE(2407); END_STATE(); case 1938: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31456,7 +31477,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'e') ADVANCE(2406); + if (lookahead == 'e') ADVANCE(1980); END_STATE(); case 1939: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31506,7 +31527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'h') ADVANCE(1952); + if (lookahead == 'h') ADVANCE(1953); END_STATE(); case 1944: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31516,7 +31537,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'h') ADVANCE(1953); + if (lookahead == 'h') ADVANCE(1954); END_STATE(); case 1945: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31526,7 +31547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'h') ADVANCE(1954); + if (lookahead == 'h') ADVANCE(1955); END_STATE(); case 1946: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31536,7 +31557,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1951); END_STATE(); case 1947: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31546,7 +31567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1975); + if (lookahead == 'i') ADVANCE(1961); END_STATE(); case 1948: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31556,7 +31577,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1966); + if (lookahead == 'i') ADVANCE(1974); END_STATE(); case 1949: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31566,7 +31587,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1956); + if (lookahead == 'i') ADVANCE(1966); END_STATE(); case 1950: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31586,7 +31607,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'l') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1935); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31596,7 +31617,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'l') ADVANCE(2401); + if (lookahead == 'l') ADVANCE(1943); END_STATE(); case 1953: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31606,7 +31627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'l') ADVANCE(2392); + if (lookahead == 'l') ADVANCE(2402); END_STATE(); case 1954: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31616,7 +31637,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'l') ADVANCE(2389); + if (lookahead == 'l') ADVANCE(2393); END_STATE(); case 1955: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31626,7 +31647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'l') ADVANCE(2398); + if (lookahead == 'l') ADVANCE(2390); END_STATE(); case 1956: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31636,7 +31657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'l') ADVANCE(1936); + if (lookahead == 'l') ADVANCE(2399); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31646,7 +31667,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'm') ADVANCE(1938); + if (lookahead == 'm') ADVANCE(1937); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31666,7 +31687,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'n') ADVANCE(2386); + if (lookahead == 'n') ADVANCE(2387); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31686,7 +31707,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'n') ADVANCE(1940); + if (lookahead == 'n') ADVANCE(1936); END_STATE(); case 1962: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31696,7 +31717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'n') ADVANCE(1937); + if (lookahead == 'n') ADVANCE(1940); END_STATE(); case 1963: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31716,7 +31737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'o') ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1977); END_STATE(); case 1965: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31726,7 +31747,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'o') ADVANCE(1979); + if (lookahead == 'o') ADVANCE(1959); END_STATE(); case 1966: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31746,7 +31767,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'p') ADVANCE(2410); + if (lookahead == 'p') ADVANCE(2411); END_STATE(); case 1968: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31756,7 +31777,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'r') ADVANCE(2408); + if (lookahead == 'r') ADVANCE(2409); END_STATE(); case 1969: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31766,7 +31787,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'r') ADVANCE(1965); + if (lookahead == 'r') ADVANCE(1964); END_STATE(); case 1970: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31776,7 +31797,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'r') ADVANCE(1948); + if (lookahead == 'r') ADVANCE(1949); END_STATE(); case 1971: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31786,7 +31807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'r') ADVANCE(1947); + if (lookahead == 'r') ADVANCE(1948); END_STATE(); case 1972: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31796,7 +31817,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 's') ADVANCE(2441); + if (lookahead == 's') ADVANCE(2443); END_STATE(); case 1973: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31806,7 +31827,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 't') ADVANCE(2447); + if (lookahead == 't') ADVANCE(2449); END_STATE(); case 1974: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31816,7 +31837,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 't') ADVANCE(2396); + if (lookahead == 't') ADVANCE(1981); END_STATE(); case 1975: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31826,7 +31847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 't') ADVANCE(1981); + if (lookahead == 't') ADVANCE(2397); END_STATE(); case 1976: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31836,7 +31857,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'u') ADVANCE(1951); + if (lookahead == 'u') ADVANCE(1941); END_STATE(); case 1977: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31846,7 +31867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'u') ADVANCE(1958); + if (lookahead == 'u') ADVANCE(1967); END_STATE(); case 1978: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31856,7 +31877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'u') ADVANCE(1941); + if (lookahead == 'u') ADVANCE(1952); END_STATE(); case 1979: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31866,7 +31887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'u') ADVANCE(1967); + if (lookahead == 'u') ADVANCE(1958); END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31877,7 +31898,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'w') || lookahead == 'y' || lookahead == 'z') ADVANCE(1983); - if (lookahead == 'x') ADVANCE(1974); + if (lookahead == 'x') ADVANCE(1975); END_STATE(); case 1981: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31887,7 +31908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'x') || lookahead == 'z') ADVANCE(1983); - if (lookahead == 'y') ADVANCE(2412); + if (lookahead == 'y') ADVANCE(2413); END_STATE(); case 1982: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31913,7 +31934,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == '{') ADVANCE(2529); + if (lookahead == '{') ADVANCE(2531); END_STATE(); case 1985: ACCEPT_TOKEN(aux_sym_identifier_token2); @@ -31926,7 +31947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 1986: ACCEPT_TOKEN(aux_sym__immediate_identifier_token1); @@ -32036,7 +32057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(2145); if (lookahead == 'e') ADVANCE(2008); - if (lookahead == 's') ADVANCE(3341); + if (lookahead == 's') ADVANCE(3343); END_STATE(); case 1995: ACCEPT_TOKEN(sym_keyword); @@ -32083,7 +32104,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('F' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'E') ADVANCE(3206); + if (lookahead == 'E') ADVANCE(3208); END_STATE(); case 1999: ACCEPT_TOKEN(sym_keyword); @@ -32146,7 +32167,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'd') ADVANCE(3425); + if (lookahead == 'd') ADVANCE(3427); END_STATE(); case 2005: ACCEPT_TOKEN(sym_keyword); @@ -32156,7 +32177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'd') ADVANCE(3344); + if (lookahead == 'd') ADVANCE(3346); END_STATE(); case 2006: ACCEPT_TOKEN(sym_keyword); @@ -32166,7 +32187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'd') ADVANCE(3350); + if (lookahead == 'd') ADVANCE(3352); END_STATE(); case 2007: ACCEPT_TOKEN(sym_keyword); @@ -32176,7 +32197,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'd') ADVANCE(3353); + if (lookahead == 'd') ADVANCE(3355); END_STATE(); case 2008: ACCEPT_TOKEN(sym_keyword); @@ -32186,7 +32207,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'd') ADVANCE(3309); + if (lookahead == 'd') ADVANCE(3311); END_STATE(); case 2009: ACCEPT_TOKEN(sym_keyword); @@ -32226,7 +32247,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'e') ADVANCE(2965); + if (lookahead == 'e') ADVANCE(2967); END_STATE(); case 2013: ACCEPT_TOKEN(sym_keyword); @@ -32236,7 +32257,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'e') ADVANCE(3362); + if (lookahead == 'e') ADVANCE(3364); END_STATE(); case 2014: ACCEPT_TOKEN(sym_keyword); @@ -32246,7 +32267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'e') ADVANCE(3327); + if (lookahead == 'e') ADVANCE(3329); END_STATE(); case 2015: ACCEPT_TOKEN(sym_keyword); @@ -32606,7 +32627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'l') ADVANCE(3297); + if (lookahead == 'l') ADVANCE(3299); END_STATE(); case 2051: ACCEPT_TOKEN(sym_keyword); @@ -32616,7 +32637,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'l') ADVANCE(3332); + if (lookahead == 'l') ADVANCE(3334); END_STATE(); case 2052: ACCEPT_TOKEN(sym_keyword); @@ -32626,7 +32647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'l') ADVANCE(3296); + if (lookahead == 'l') ADVANCE(3298); END_STATE(); case 2053: ACCEPT_TOKEN(sym_keyword); @@ -32636,7 +32657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'l') ADVANCE(3356); + if (lookahead == 'l') ADVANCE(3358); END_STATE(); case 2054: ACCEPT_TOKEN(sym_keyword); @@ -32766,7 +32787,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'n') ADVANCE(3312); + if (lookahead == 'n') ADVANCE(3314); END_STATE(); case 2067: ACCEPT_TOKEN(sym_keyword); @@ -32966,7 +32987,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'p') ADVANCE(3317); + if (lookahead == 'p') ADVANCE(3319); END_STATE(); case 2087: ACCEPT_TOKEN(sym_keyword); @@ -32976,7 +32997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'p') ADVANCE(3359); + if (lookahead == 'p') ADVANCE(3361); END_STATE(); case 2088: ACCEPT_TOKEN(sym_keyword); @@ -32986,7 +33007,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'p') ADVANCE(3423); + if (lookahead == 'p') ADVANCE(3425); END_STATE(); case 2089: ACCEPT_TOKEN(sym_keyword); @@ -33046,7 +33067,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'r') ADVANCE(2967); + if (lookahead == 'r') ADVANCE(2969); END_STATE(); case 2095: ACCEPT_TOKEN(sym_keyword); @@ -33056,7 +33077,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'r') ADVANCE(3200); + if (lookahead == 'r') ADVANCE(3202); END_STATE(); case 2096: ACCEPT_TOKEN(sym_keyword); @@ -33066,7 +33087,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 'r') ADVANCE(3302); + if (lookahead == 'r') ADVANCE(3304); END_STATE(); case 2097: ACCEPT_TOKEN(sym_keyword); @@ -33136,7 +33157,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 's') ADVANCE(3365); + if (lookahead == 's') ADVANCE(3367); END_STATE(); case 2104: ACCEPT_TOKEN(sym_keyword); @@ -33146,7 +33167,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3436); END_STATE(); case 2105: ACCEPT_TOKEN(sym_keyword); @@ -33156,7 +33177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 's') ADVANCE(3431); + if (lookahead == 's') ADVANCE(3433); END_STATE(); case 2106: ACCEPT_TOKEN(sym_keyword); @@ -33166,7 +33187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 's') ADVANCE(3428); + if (lookahead == 's') ADVANCE(3430); END_STATE(); case 2107: ACCEPT_TOKEN(sym_keyword); @@ -33226,7 +33247,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 't') ADVANCE(3322); + if (lookahead == 't') ADVANCE(3324); END_STATE(); case 2113: ACCEPT_TOKEN(sym_keyword); @@ -33246,7 +33267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == 't') ADVANCE(3243); + if (lookahead == 't') ADVANCE(3245); END_STATE(); case 2115: ACCEPT_TOKEN(sym_keyword); @@ -33357,7 +33378,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'w') || lookahead == 'y' || lookahead == 'z') ADVANCE(2145); - if (lookahead == 'x') ADVANCE(2966); + if (lookahead == 'x') ADVANCE(2968); END_STATE(); case 2126: ACCEPT_TOKEN(sym_keyword); @@ -33420,7 +33441,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'x') || lookahead == 'z') ADVANCE(2145); - if (lookahead == 'y') ADVANCE(3347); + if (lookahead == 'y') ADVANCE(3349); END_STATE(); case 2132: ACCEPT_TOKEN(sym_keyword); @@ -33430,7 +33451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'x') || lookahead == 'z') ADVANCE(2145); - if (lookahead == 'y') ADVANCE(3337); + if (lookahead == 'y') ADVANCE(3339); END_STATE(); case 2133: ACCEPT_TOKEN(sym_keyword); @@ -33573,7 +33594,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); - if (lookahead == '-') ADVANCE(313); + if (lookahead == '-') ADVANCE(312); END_STATE(); case 2149: ACCEPT_TOKEN(anon_sym_EQ); @@ -33585,8 +33606,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2151: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(2429); - if (lookahead == '~') ADVANCE(2435); + if (lookahead == '=') ADVANCE(2431); + if (lookahead == '~') ADVANCE(2437); END_STATE(); case 2152: ACCEPT_TOKEN(anon_sym_PLUS_EQ); @@ -33649,7 +33670,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(2193); END_STATE(); case 2168: ACCEPT_TOKEN(anon_sym_BANG); @@ -33657,14 +33678,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2169: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 2170: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(2421); + if (lookahead == '&') ADVANCE(2423); END_STATE(); case 2171: ACCEPT_TOKEN(anon_sym_all); @@ -33678,207 +33699,207 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 2174: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '?') ADVANCE(2419); END_STATE(); case 2175: - ACCEPT_TOKEN(anon_sym_COLON2); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 2176: - ACCEPT_TOKEN(anon_sym_PLUS_EQ2); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 2177: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ2); END_STATE(); case 2178: - ACCEPT_TOKEN(anon_sym_DASH_EQ2); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 2179: + ACCEPT_TOKEN(anon_sym_DASH_EQ2); + END_STATE(); + case 2180: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '>') ADVANCE(2184); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == '>') ADVANCE(2185); + if (lookahead == '\\') ADVANCE(2186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(2184); + lookahead != ' ') ADVANCE(2185); END_STATE(); - case 2180: + case 2181: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(2185); - if (lookahead == '|') ADVANCE(2351); + if (lookahead == '\\') ADVANCE(2186); + if (lookahead == '|') ADVANCE(2352); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2184); + lookahead != '\n') ADVANCE(2185); END_STATE(); - case 2181: + case 2182: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == '\\') ADVANCE(2186); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2183); + lookahead == 'a') ADVANCE(2184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(2184); + lookahead != ' ') ADVANCE(2185); END_STATE(); - case 2182: + case 2183: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == '\\') ADVANCE(2186); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2181); + lookahead == 'b') ADVANCE(2182); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2183); + lookahead == 'c') ADVANCE(2184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(2184); + lookahead != ' ') ADVANCE(2185); END_STATE(); - case 2183: + case 2184: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == '\\') ADVANCE(2186); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2179); + lookahead == 'r') ADVANCE(2180); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(2184); + lookahead != ' ') ADVANCE(2185); END_STATE(); - case 2184: + case 2185: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == '\\') ADVANCE(2186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(2184); + lookahead != ' ') ADVANCE(2185); END_STATE(); - case 2185: + case 2186: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(2185); + if (lookahead == '\\') ADVANCE(2186); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2184); + lookahead != '\n') ADVANCE(2185); END_STATE(); - case 2186: + case 2187: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(2186); + if (lookahead == ' ') ADVANCE(2187); END_STATE(); - case 2187: + case 2188: ACCEPT_TOKEN(aux_sym_command_argument_token1); - if (lookahead == '>') ADVANCE(2192); + if (lookahead == '>') ADVANCE(2193); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(2193); END_STATE(); - case 2188: + case 2189: ACCEPT_TOKEN(aux_sym_command_argument_token1); - if (lookahead == '|') ADVANCE(2353); + if (lookahead == '|') ADVANCE(2354); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(2193); END_STATE(); - case 2189: + case 2190: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2191); + lookahead == 'a') ADVANCE(2192); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(2193); END_STATE(); - case 2190: + case 2191: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2189); + lookahead == 'b') ADVANCE(2190); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2191); + lookahead == 'c') ADVANCE(2192); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(2193); END_STATE(); - case 2191: + case 2192: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2187); + lookahead == 'r') ADVANCE(2188); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(2193); END_STATE(); - case 2192: + case 2193: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); - END_STATE(); - case 2193: - ACCEPT_TOKEN(anon_sym_LPAREN); + lookahead != ' ') ADVANCE(2193); END_STATE(); case 2194: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 2195: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 2196: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 2197: - ACCEPT_TOKEN(sym_spread); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 2198: - ACCEPT_TOKEN(sym__printable); + ACCEPT_TOKEN(sym_spread); END_STATE(); case 2199: ACCEPT_TOKEN(sym__printable); - if (lookahead == ' ') ADVANCE(2199); - if (lookahead == '<') ADVANCE(2208); - if (lookahead == '\\') ADVANCE(2207); - if (lookahead == 'c') ADVANCE(2205); - if (lookahead == 'i') ADVANCE(2202); - if (lookahead == 'l') ADVANCE(2204); - if (lookahead == 'n') ADVANCE(2206); - if (lookahead == 't') ADVANCE(2203); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2198); END_STATE(); case 2200: ACCEPT_TOKEN(sym__printable); if (lookahead == ' ') ADVANCE(2200); - if (lookahead == 'c') ADVANCE(2205); - if (lookahead == 'i') ADVANCE(2202); - if (lookahead == 'l') ADVANCE(2204); + if (lookahead == '<') ADVANCE(2209); + if (lookahead == '\\') ADVANCE(2208); + if (lookahead == 'c') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2203); + if (lookahead == 'l') ADVANCE(2205); if (lookahead == 'n') ADVANCE(2206); - if (lookahead == 't') ADVANCE(2203); + if (lookahead == 't') ADVANCE(2204); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2198); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2199); END_STATE(); case 2201: ACCEPT_TOKEN(sym__printable); if (lookahead == ' ') ADVANCE(2201); + if (lookahead == 'c') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2203); + if (lookahead == 'l') ADVANCE(2205); + if (lookahead == 'n') ADVANCE(2206); + if (lookahead == 't') ADVANCE(2204); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2198); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2199); END_STATE(); case 2202: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'c') ADVANCE(529); + if (lookahead == ' ') ADVANCE(2202); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2199); END_STATE(); case 2203: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'e') ADVANCE(643); + if (lookahead == 'c') ADVANCE(533); END_STATE(); case 2204: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'e') ADVANCE(643); END_STATE(); case 2205: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'u') ADVANCE(464); + if (lookahead == 'i') ADVANCE(522); END_STATE(); case 2206: ACCEPT_TOKEN(sym__printable); @@ -33886,120 +33907,124 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2207: ACCEPT_TOKEN(sym__printable); - if (lookahead == '|') ADVANCE(2350); + if (lookahead == 'u') ADVANCE(466); END_STATE(); case 2208: + ACCEPT_TOKEN(sym__printable); + if (lookahead == '|') ADVANCE(2351); + END_STATE(); + case 2209: ACCEPT_TOKEN(sym__printable); if (lookahead == 'B' || lookahead == 'b') ADVANCE(671); if (lookahead == 'C' || lookahead == 'c') ADVANCE(748); END_STATE(); - case 2209: - ACCEPT_TOKEN(sym_mark); - END_STATE(); case 2210: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(sym_mark); END_STATE(); case 2211: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(2156); END_STATE(); case 2212: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(2156); END_STATE(); case 2213: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 2214: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(2155); END_STATE(); case 2215: - ACCEPT_TOKEN(anon_sym_SLASH2); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(2155); END_STATE(); case 2216: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); case 2217: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 2218: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2427); END_STATE(); case 2219: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2428); - if (lookahead == '=') ADVANCE(2157); + if (lookahead == '.') ADVANCE(2429); END_STATE(); case 2220: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(2430); + if (lookahead == '=') ADVANCE(2157); END_STATE(); case 2221: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(520); - if (lookahead == '0') ADVANCE(2456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); END_STATE(); case 2222: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2530); + if (lookahead == '+') ADVANCE(521); + if (lookahead == '0') ADVANCE(2458); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); END_STATE(); case 2223: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(519); - if (lookahead == '0') ADVANCE(2456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (lookahead == '+') ADVANCE(2532); END_STATE(); case 2224: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '0') ADVANCE(2456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (lookahead == '+') ADVANCE(520); + if (lookahead == '0') ADVANCE(2458); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); END_STATE(); case 2225: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '0') ADVANCE(2453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (lookahead == '0') ADVANCE(2458); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2461); END_STATE(); case 2226: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(2152); + if (lookahead == '0') ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); END_STATE(); case 2227: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(2152); END_STATE(); case 2228: - ACCEPT_TOKEN(anon_sym_BSLASH_SLASH); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 2229: - ACCEPT_TOKEN(anon_sym_BSLASH_QMARK); + ACCEPT_TOKEN(anon_sym_BSLASH_SLASH); END_STATE(); case 2230: - ACCEPT_TOKEN(anon_sym_BSLASH_AMP); + ACCEPT_TOKEN(anon_sym_BSLASH_QMARK); END_STATE(); case 2231: - ACCEPT_TOKEN(anon_sym_LTbuffer_GT); + ACCEPT_TOKEN(anon_sym_BSLASH_AMP); END_STATE(); case 2232: - ACCEPT_TOKEN(anon_sym_LTnowait_GT); + ACCEPT_TOKEN(anon_sym_LTbuffer_GT); END_STATE(); case 2233: - ACCEPT_TOKEN(anon_sym_LTsilent_GT); + ACCEPT_TOKEN(anon_sym_LTnowait_GT); END_STATE(); case 2234: - ACCEPT_TOKEN(anon_sym_LTunique_GT); + ACCEPT_TOKEN(anon_sym_LTsilent_GT); END_STATE(); case 2235: - ACCEPT_TOKEN(anon_sym_LTscript_GT); + ACCEPT_TOKEN(anon_sym_LTunique_GT); END_STATE(); case 2236: - ACCEPT_TOKEN(anon_sym_LTexpr_GT); + ACCEPT_TOKEN(anon_sym_LTscript_GT); END_STATE(); case 2237: - ACCEPT_TOKEN(sym__keycode_modifier); + ACCEPT_TOKEN(anon_sym_LTexpr_GT); END_STATE(); case 2238: + ACCEPT_TOKEN(sym__keycode_modifier); + END_STATE(); + case 2239: ACCEPT_TOKEN(sym__keycode_modifier); if (lookahead == 'C' || lookahead == 'c') ADVANCE(707); @@ -34014,7 +34039,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U' || lookahead == 'u') ADVANCE(743); END_STATE(); - case 2239: + case 2240: ACCEPT_TOKEN(sym__keycode_modifier); if (lookahead == 'D' || lookahead == 'd') ADVANCE(735); @@ -34025,21 +34050,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U' || lookahead == 'u') ADVANCE(743); END_STATE(); - case 2240: + case 2241: ACCEPT_TOKEN(aux_sym__keycode_in_token1); END_STATE(); - case 2241: + case 2242: ACCEPT_TOKEN(aux_sym__keycode_in_token1); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2242: + case 2243: ACCEPT_TOKEN(aux_sym__keycode_in_token2); if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); END_STATE(); - case 2243: + case 2244: ACCEPT_TOKEN(aux_sym__keycode_in_token2); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1013); @@ -34047,168 +34072,168 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2244: + case 2245: ACCEPT_TOKEN(aux_sym__keycode_in_token3); END_STATE(); - case 2245: + case 2246: ACCEPT_TOKEN(aux_sym__keycode_in_token3); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2246: + case 2247: ACCEPT_TOKEN(aux_sym__keycode_in_token4); END_STATE(); - case 2247: + case 2248: ACCEPT_TOKEN(aux_sym__keycode_in_token4); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2248: + case 2249: ACCEPT_TOKEN(aux_sym__keycode_in_token5); END_STATE(); - case 2249: + case 2250: ACCEPT_TOKEN(aux_sym__keycode_in_token5); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2250: + case 2251: ACCEPT_TOKEN(aux_sym__keycode_in_token6); END_STATE(); - case 2251: + case 2252: ACCEPT_TOKEN(aux_sym__keycode_in_token6); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2252: + case 2253: ACCEPT_TOKEN(aux_sym__keycode_in_token7); END_STATE(); - case 2253: + case 2254: ACCEPT_TOKEN(aux_sym__keycode_in_token7); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2254: + case 2255: ACCEPT_TOKEN(aux_sym__keycode_in_token8); END_STATE(); - case 2255: + case 2256: ACCEPT_TOKEN(aux_sym__keycode_in_token8); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2256: + case 2257: ACCEPT_TOKEN(aux_sym__keycode_in_token9); END_STATE(); - case 2257: + case 2258: ACCEPT_TOKEN(aux_sym__keycode_in_token9); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2258: + case 2259: ACCEPT_TOKEN(aux_sym__keycode_in_token10); END_STATE(); - case 2259: + case 2260: ACCEPT_TOKEN(aux_sym__keycode_in_token10); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2260: + case 2261: ACCEPT_TOKEN(aux_sym__keycode_in_token11); END_STATE(); - case 2261: + case 2262: ACCEPT_TOKEN(aux_sym__keycode_in_token11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2262: + case 2263: ACCEPT_TOKEN(aux_sym__keycode_in_token12); END_STATE(); - case 2263: + case 2264: ACCEPT_TOKEN(aux_sym__keycode_in_token12); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2264: + case 2265: ACCEPT_TOKEN(aux_sym__keycode_in_token13); END_STATE(); - case 2265: + case 2266: ACCEPT_TOKEN(aux_sym__keycode_in_token13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2266: + case 2267: ACCEPT_TOKEN(aux_sym__keycode_in_token14); END_STATE(); - case 2267: + case 2268: ACCEPT_TOKEN(aux_sym__keycode_in_token14); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2268: + case 2269: ACCEPT_TOKEN(aux_sym__keycode_in_token15); END_STATE(); - case 2269: + case 2270: ACCEPT_TOKEN(aux_sym__keycode_in_token15); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2270: + case 2271: ACCEPT_TOKEN(aux_sym__keycode_in_token16); END_STATE(); - case 2271: + case 2272: ACCEPT_TOKEN(aux_sym__keycode_in_token16); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2272: + case 2273: ACCEPT_TOKEN(aux_sym__keycode_in_token17); END_STATE(); - case 2273: + case 2274: ACCEPT_TOKEN(aux_sym__keycode_in_token17); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2274: + case 2275: ACCEPT_TOKEN(aux_sym__keycode_in_token18); END_STATE(); - case 2275: + case 2276: ACCEPT_TOKEN(aux_sym__keycode_in_token18); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2276: + case 2277: ACCEPT_TOKEN(aux_sym__keycode_in_token19); END_STATE(); - case 2277: + case 2278: ACCEPT_TOKEN(aux_sym__keycode_in_token19); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2278: + case 2279: ACCEPT_TOKEN(aux_sym__keycode_in_token20); END_STATE(); - case 2279: + case 2280: ACCEPT_TOKEN(aux_sym__keycode_in_token20); if (lookahead == 'M' || lookahead == 'm') ADVANCE(736); END_STATE(); - case 2280: + case 2281: ACCEPT_TOKEN(aux_sym__keycode_in_token20); if (lookahead == 'M' || lookahead == 'm') ADVANCE(1346); @@ -34216,21 +34241,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2281: + case 2282: ACCEPT_TOKEN(aux_sym__keycode_in_token20); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2282: + case 2283: ACCEPT_TOKEN(aux_sym__keycode_in_token21); END_STATE(); - case 2283: + case 2284: ACCEPT_TOKEN(aux_sym__keycode_in_token21); if (lookahead == 'M' || lookahead == 'm') ADVANCE(742); END_STATE(); - case 2284: + case 2285: ACCEPT_TOKEN(aux_sym__keycode_in_token21); if (lookahead == 'M' || lookahead == 'm') ADVANCE(1368); @@ -34238,325 +34263,325 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2285: + case 2286: ACCEPT_TOKEN(aux_sym__keycode_in_token21); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2286: + case 2287: ACCEPT_TOKEN(aux_sym__keycode_in_token22); END_STATE(); - case 2287: + case 2288: ACCEPT_TOKEN(aux_sym__keycode_in_token22); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2288: + case 2289: ACCEPT_TOKEN(aux_sym__keycode_in_token23); END_STATE(); - case 2289: + case 2290: ACCEPT_TOKEN(aux_sym__keycode_in_token23); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2290: - ACCEPT_TOKEN(aux_sym__keycode_in_token24); - END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym__keycode_in_token24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2290); END_STATE(); case 2292: - ACCEPT_TOKEN(aux_sym__keycode_in_token25); + ACCEPT_TOKEN(aux_sym__keycode_in_token24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2291); END_STATE(); case 2293: + ACCEPT_TOKEN(aux_sym__keycode_in_token25); + END_STATE(); + case 2294: ACCEPT_TOKEN(aux_sym__keycode_in_token25); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2294: + case 2295: ACCEPT_TOKEN(aux_sym__keycode_in_token26); END_STATE(); - case 2295: + case 2296: ACCEPT_TOKEN(aux_sym__keycode_in_token26); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2296: + case 2297: ACCEPT_TOKEN(aux_sym__keycode_in_token27); END_STATE(); - case 2297: + case 2298: ACCEPT_TOKEN(aux_sym__keycode_in_token27); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2298: + case 2299: ACCEPT_TOKEN(aux_sym__keycode_in_token28); END_STATE(); - case 2299: + case 2300: ACCEPT_TOKEN(aux_sym__keycode_in_token28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2300: + case 2301: ACCEPT_TOKEN(aux_sym__keycode_in_token29); END_STATE(); - case 2301: + case 2302: ACCEPT_TOKEN(aux_sym__keycode_in_token29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2302: + case 2303: ACCEPT_TOKEN(aux_sym__keycode_in_token30); END_STATE(); - case 2303: + case 2304: ACCEPT_TOKEN(aux_sym__keycode_in_token30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2304: + case 2305: ACCEPT_TOKEN(aux_sym__keycode_in_token31); END_STATE(); - case 2305: + case 2306: ACCEPT_TOKEN(aux_sym__keycode_in_token31); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2306: + case 2307: ACCEPT_TOKEN(aux_sym__keycode_in_token32); END_STATE(); - case 2307: + case 2308: ACCEPT_TOKEN(aux_sym__keycode_in_token32); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2308: + case 2309: ACCEPT_TOKEN(aux_sym__keycode_in_token33); END_STATE(); - case 2309: + case 2310: ACCEPT_TOKEN(aux_sym__keycode_in_token33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2310: + case 2311: ACCEPT_TOKEN(aux_sym__keycode_in_token34); END_STATE(); - case 2311: + case 2312: ACCEPT_TOKEN(aux_sym__keycode_in_token34); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2312: + case 2313: ACCEPT_TOKEN(aux_sym__keycode_in_token35); END_STATE(); - case 2313: + case 2314: ACCEPT_TOKEN(aux_sym__keycode_in_token35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2314: + case 2315: ACCEPT_TOKEN(aux_sym__keycode_in_token36); END_STATE(); - case 2315: + case 2316: ACCEPT_TOKEN(aux_sym__keycode_in_token36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2316: + case 2317: ACCEPT_TOKEN(aux_sym__keycode_in_token37); END_STATE(); - case 2317: + case 2318: ACCEPT_TOKEN(aux_sym__keycode_in_token37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2318: + case 2319: ACCEPT_TOKEN(aux_sym__keycode_in_token38); END_STATE(); - case 2319: + case 2320: ACCEPT_TOKEN(aux_sym__keycode_in_token38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2320: + case 2321: ACCEPT_TOKEN(aux_sym__keycode_in_token39); END_STATE(); - case 2321: + case 2322: ACCEPT_TOKEN(aux_sym__keycode_in_token40); END_STATE(); - case 2322: + case 2323: ACCEPT_TOKEN(aux_sym__keycode_in_token40); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2323: + case 2324: ACCEPT_TOKEN(aux_sym__keycode_in_token41); END_STATE(); - case 2324: + case 2325: ACCEPT_TOKEN(aux_sym__keycode_in_token41); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2325: + case 2326: ACCEPT_TOKEN(aux_sym__keycode_in_token42); END_STATE(); - case 2326: + case 2327: ACCEPT_TOKEN(aux_sym__keycode_in_token42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2327: + case 2328: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(2327); + if (lookahead == '0') ADVANCE(2328); if (lookahead == 'X' || lookahead == 'x') ADVANCE(793); if (lookahead == '8' || - lookahead == '9') ADVANCE(2329); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2328); + lookahead == '9') ADVANCE(2330); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2329); END_STATE(); - case 2328: + case 2329: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(2327); + if (lookahead == '0') ADVANCE(2328); if (lookahead == '8' || - lookahead == '9') ADVANCE(2329); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2328); + lookahead == '9') ADVANCE(2330); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2329); END_STATE(); - case 2329: + case 2330: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(2327); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2329); + if (lookahead == '0') ADVANCE(2328); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2330); END_STATE(); - case 2330: + case 2331: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(2330); + if (lookahead == '0') ADVANCE(2331); if (lookahead == 'X' || lookahead == 'x') ADVANCE(793); if (lookahead == '8' || - lookahead == '9') ADVANCE(2332); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2331); + lookahead == '9') ADVANCE(2333); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2332); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2332); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2333); END_STATE(); - case 2331: + case 2332: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(2330); + if (lookahead == '0') ADVANCE(2331); if (lookahead == '8' || - lookahead == '9') ADVANCE(2332); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2331); + lookahead == '9') ADVANCE(2333); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(2332); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2332); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2333); END_STATE(); - case 2332: + case 2333: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(2330); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2332); + if (lookahead == '0') ADVANCE(2331); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2333); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2332); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2333); END_STATE(); - case 2333: + case 2334: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 2334: + case 2335: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 'B' || lookahead == 'b') ADVANCE(671); if (lookahead == 'C' || lookahead == 'c') ADVANCE(748); END_STATE(); - case 2335: + case 2336: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3239); + lookahead == 'b') ADVANCE(3241); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(3240); + lookahead == 'c') ADVANCE(3242); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 2336: + case 2337: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 'C' || lookahead == 'c') ADVANCE(724); END_STATE(); - case 2337: + case 2338: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); - END_STATE(); - case 2338: - ACCEPT_TOKEN(anon_sym_GT); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 2339: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 2340: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2434); END_STATE(); case 2341: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2434); + if (lookahead == '=') ADVANCE(2436); + END_STATE(); + case 2342: + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(2436); if (lookahead == 'B' || lookahead == 'b') ADVANCE(671); if (lookahead == 'C' || lookahead == 'c') ADVANCE(748); END_STATE(); - case 2342: + case 2343: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == 'b') ADVANCE(634); if (lookahead == 'e') ADVANCE(644); - if (lookahead == 'n') ADVANCE(534); + if (lookahead == 'n') ADVANCE(536); if (lookahead == 's') ADVANCE(317); - if (lookahead == 'u') ADVANCE(514); + if (lookahead == 'u') ADVANCE(515); END_STATE(); - case 2343: + case 2344: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == 'b') ADVANCE(634); - if (lookahead == 'n') ADVANCE(534); + if (lookahead == 'n') ADVANCE(536); if (lookahead == 's') ADVANCE(317); - if (lookahead == 'u') ADVANCE(514); + if (lookahead == 'u') ADVANCE(515); END_STATE(); - case 2344: + case 2345: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == 'C' || lookahead == 'c') ADVANCE(724); END_STATE(); - case 2345: - ACCEPT_TOKEN(anon_sym_BSLASH2); - END_STATE(); case 2346: ACCEPT_TOKEN(anon_sym_BSLASH2); - if (lookahead == '|') ADVANCE(2350); END_STATE(); case 2347: - ACCEPT_TOKEN(aux_sym__map_lhs_token1); + ACCEPT_TOKEN(anon_sym_BSLASH2); + if (lookahead == '|') ADVANCE(2351); END_STATE(); case 2348: + ACCEPT_TOKEN(aux_sym__map_lhs_token1); + END_STATE(); + case 2349: ACCEPT_TOKEN(aux_sym__map_lhs_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34564,27 +34589,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 2349: - ACCEPT_TOKEN(aux_sym__map_rhs_statement_token1); - END_STATE(); case 2350: - ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); + ACCEPT_TOKEN(aux_sym__map_rhs_statement_token1); END_STATE(); case 2351: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); - if (lookahead == '\\') ADVANCE(2185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ') ADVANCE(2184); END_STATE(); case 2352: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); + if (lookahead == '\\') ADVANCE(2186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(2185); END_STATE(); case 2353: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); @@ -34592,138 +34609,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(2192); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 2354: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != '\r' && + lookahead != ' ') ADVANCE(2193); END_STATE(); case 2355: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); if (lookahead != 0 && + lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ' && + lookahead != ',') ADVANCE(2963); END_STATE(); case 2356: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n' && + lookahead != ' ') ADVANCE(3293); END_STATE(); case 2357: - ACCEPT_TOKEN(aux_sym__map_rhs_statement_token2); + ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(2993); END_STATE(); case 2358: + ACCEPT_TOKEN(aux_sym__map_rhs_statement_token2); + END_STATE(); + case 2359: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token2); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2359: + case 2360: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token2); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); - case 2360: + case 2361: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2361: + case 2362: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token3); END_STATE(); - case 2362: + case 2363: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token3); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2363: + case 2364: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token3); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); - case 2364: + case 2365: ACCEPT_TOKEN(aux_sym__map_rhs_statement_token3); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); - END_STATE(); - case 2365: - ACCEPT_TOKEN(aux_sym__map_rhs_token1); + lookahead != '\n') ADVANCE(2993); END_STATE(); case 2366: - ACCEPT_TOKEN(aux_sym__map_rhs_token2); + ACCEPT_TOKEN(aux_sym__map_rhs_token1); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(2237); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); + END_STATE(); + case 2369: + ACCEPT_TOKEN(aux_sym__map_rhs_token2); + if (lookahead == '-') ADVANCE(2238); if (lookahead == 'E' || lookahead == 'e') ADVANCE(715); if (lookahead == 'O' || lookahead == 'o') ADVANCE(781); END_STATE(); - case 2369: + case 2370: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(2237); + if (lookahead == '-') ADVANCE(2238); if (lookahead == 'L' || lookahead == 'l') ADVANCE(770); END_STATE(); - case 2370: + case 2371: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(2239); + if (lookahead == '-') ADVANCE(2240); if (lookahead == 'H' || lookahead == 'h') ADVANCE(663); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2248); + lookahead == 'r') ADVANCE(2249); if (lookahead == 'S' || lookahead == 's') ADVANCE(709); END_STATE(); - case 2371: + case 2372: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(2238); + if (lookahead == '-') ADVANCE(2239); if (lookahead == 'I' || lookahead == 'i') ADVANCE(678); if (lookahead == 'P' || lookahead == 'p') ADVANCE(666); END_STATE(); - case 2372: + case 2373: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'A' || lookahead == 'a') ADVANCE(673); END_STATE(); - case 2373: + case 2374: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'A' || lookahead == 'a') ADVANCE(702); if (lookahead == 'L' || lookahead == 'l') ADVANCE(774); END_STATE(); - case 2374: + case 2375: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'A' || lookahead == 'a') ADVANCE(749); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2242); + lookahead == 's') ADVANCE(2243); END_STATE(); - case 2375: + case 2376: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'C' || lookahead == 'c') ADVANCE(760); END_STATE(); - case 2376: + case 2377: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'C' || lookahead == 'c') ADVANCE(739); @@ -34743,48 +34768,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(714); if (lookahead == 'U' || lookahead == 'u') ADVANCE(743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2321); END_STATE(); - case 2377: + case 2378: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'E' || lookahead == 'e') ADVANCE(668); if (lookahead == 'O' || lookahead == 'o') ADVANCE(675); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2258); + lookahead == 't') ADVANCE(2259); END_STATE(); - case 2378: + case 2379: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'E' || lookahead == 'e') ADVANCE(720); if (lookahead == 'O' || lookahead == 'o') ADVANCE(727); END_STATE(); - case 2379: + case 2380: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'E' || lookahead == 'e') ADVANCE(771); if (lookahead == 'I' || lookahead == 'i') ADVANCE(701); END_STATE(); - case 2380: + case 2381: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'G' || lookahead == 'g') ADVANCE(732); if (lookahead == 'N' || lookahead == 'n') ADVANCE(763); END_STATE(); - case 2381: + case 2382: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2246); + lookahead == 'l') ADVANCE(2247); if (lookahead == 'O' || lookahead == 'o') ADVANCE(744); if (lookahead == 'U' || lookahead == 'u') ADVANCE(717); END_STATE(); - case 2382: + case 2383: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(677); @@ -34793,21 +34818,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S' || lookahead == 's') ADVANCE(674); END_STATE(); - case 2383: + case 2384: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(680); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2274); + lookahead == 'p') ADVANCE(2275); END_STATE(); - case 2384: + case 2385: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2292); END_STATE(); - case 2385: + case 2386: ACCEPT_TOKEN(anon_sym_icon); END_STATE(); - case 2386: + case 2387: ACCEPT_TOKEN(anon_sym_icon); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34815,18 +34840,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2387: + case 2388: ACCEPT_TOKEN(anon_sym_icon); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2388: + case 2389: ACCEPT_TOKEN(anon_sym_linehl); END_STATE(); - case 2389: + case 2390: ACCEPT_TOKEN(anon_sym_linehl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34834,18 +34859,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2390: + case 2391: ACCEPT_TOKEN(anon_sym_linehl); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2391: + case 2392: ACCEPT_TOKEN(anon_sym_numhl); END_STATE(); - case 2392: + case 2393: ACCEPT_TOKEN(anon_sym_numhl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34853,28 +34878,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2393: + case 2394: ACCEPT_TOKEN(anon_sym_numhl); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2394: + case 2395: ACCEPT_TOKEN(anon_sym_text); - if (lookahead == 'h') ADVANCE(460); + if (lookahead == 'h') ADVANCE(462); END_STATE(); - case 2395: + case 2396: ACCEPT_TOKEN(anon_sym_text); - if (lookahead == 'h') ADVANCE(3095); + if (lookahead == 'h') ADVANCE(3097); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2396: + case 2397: ACCEPT_TOKEN(anon_sym_text); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34882,12 +34907,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1983); - if (lookahead == 'h') ADVANCE(1955); + if (lookahead == 'h') ADVANCE(1956); END_STATE(); - case 2397: + case 2398: ACCEPT_TOKEN(anon_sym_texthl); END_STATE(); - case 2398: + case 2399: ACCEPT_TOKEN(anon_sym_texthl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34895,18 +34920,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2399: + case 2400: ACCEPT_TOKEN(anon_sym_texthl); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2400: + case 2401: ACCEPT_TOKEN(anon_sym_culhl); END_STATE(); - case 2401: + case 2402: ACCEPT_TOKEN(anon_sym_culhl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34914,18 +34939,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2402: + case 2403: ACCEPT_TOKEN(anon_sym_culhl); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2403: + case 2404: ACCEPT_TOKEN(anon_sym_line); END_STATE(); - case 2404: + case 2405: ACCEPT_TOKEN(anon_sym_line); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34933,10 +34958,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2405: + case 2406: ACCEPT_TOKEN(anon_sym_name); END_STATE(); - case 2406: + case 2407: ACCEPT_TOKEN(anon_sym_name); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34944,10 +34969,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2407: + case 2408: ACCEPT_TOKEN(anon_sym_buffer); END_STATE(); - case 2408: + case 2409: ACCEPT_TOKEN(anon_sym_buffer); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34955,10 +34980,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2409: + case 2410: ACCEPT_TOKEN(anon_sym_group); END_STATE(); - case 2410: + case 2411: ACCEPT_TOKEN(anon_sym_group); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34966,10 +34991,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2411: + case 2412: ACCEPT_TOKEN(anon_sym_priority); END_STATE(); - case 2412: + case 2413: ACCEPT_TOKEN(anon_sym_priority); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34977,10 +35002,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2413: + case 2414: ACCEPT_TOKEN(anon_sym_file); END_STATE(); - case 2414: + case 2415: ACCEPT_TOKEN(anon_sym_file); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -34988,96 +35013,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2415: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); case 2416: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 2417: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '=') ADVANCE(2154); END_STATE(); case 2418: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '=') ADVANCE(2154); END_STATE(); case 2419: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '{') ADVANCE(2529); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 2420: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 2421: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '{') ADVANCE(2531); END_STATE(); case 2422: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 2423: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(2453); - if (lookahead == '>') ADVANCE(2464); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 2424: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(2453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2455); END_STATE(); case 2425: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(2153); - if (lookahead == '>') ADVANCE(2464); + if (lookahead == '0') ADVANCE(2455); + if (lookahead == '>') ADVANCE(2466); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); END_STATE(); case 2426: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(2464); + if (lookahead == '0') ADVANCE(2455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2457); END_STATE(); case 2427: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(2153); + if (lookahead == '>') ADVANCE(2466); END_STATE(); case 2428: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(2466); + END_STATE(); + case 2429: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 2430: ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '=') ADVANCE(2158); END_STATE(); - case 2429: + case 2431: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 2430: + case 2432: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 2431: + case 2433: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 2432: + case 2434: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(2433); + if (lookahead == '=') ADVANCE(2435); END_STATE(); - case 2433: + case 2435: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 2434: + case 2436: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 2435: + case 2437: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 2436: + case 2438: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 2437: + case 2439: ACCEPT_TOKEN(anon_sym_is); if (lookahead == 'n') ADVANCE(1001); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2438: + case 2440: ACCEPT_TOKEN(anon_sym_is); - if (lookahead == 'n') ADVANCE(530); + if (lookahead == 'n') ADVANCE(532); END_STATE(); - case 2439: + case 2441: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(1983); @@ -35086,7 +35114,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1525); END_STATE(); - case 2440: + case 2442: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(988); @@ -35095,7 +35123,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(984); END_STATE(); - case 2441: + case 2443: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -35105,7 +35133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1983); if (lookahead == 'n') ADVANCE(1963); END_STATE(); - case 2442: + case 2444: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -35115,10 +35143,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z')) ADVANCE(988); if (lookahead == 'n') ADVANCE(985); END_STATE(); - case 2443: + case 2445: ACCEPT_TOKEN(anon_sym_isnot); END_STATE(); - case 2444: + case 2446: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(1983); @@ -35126,7 +35154,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1525); END_STATE(); - case 2445: + case 2447: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(988); @@ -35134,13 +35162,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(984); END_STATE(); - case 2446: + case 2448: ACCEPT_TOKEN(anon_sym_isnot); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1518); END_STATE(); - case 2447: + case 2449: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -35148,7 +35176,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1983); END_STATE(); - case 2448: + case 2450: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -35156,25 +35184,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); END_STATE(); - case 2449: + case 2451: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 2450: + case 2452: ACCEPT_TOKEN(anon_sym_BANG2); - if (lookahead == '=') ADVANCE(2430); - if (lookahead == '~') ADVANCE(2436); + if (lookahead == '=') ADVANCE(2432); + if (lookahead == '~') ADVANCE(2438); END_STATE(); - case 2451: + case 2453: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || lookahead == 'e') ADVANCE(661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); END_STATE(); - case 2452: + case 2454: ACCEPT_TOKEN(sym_float_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); END_STATE(); - case 2453: + case 2455: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '.') ADVANCE(787); if (lookahead == 'B' || @@ -35182,1450 +35210,1430 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X' || lookahead == 'x') ADVANCE(792); if (lookahead == '8' || - lookahead == '9') ADVANCE(2455); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2454); + lookahead == '9') ADVANCE(2457); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2456); END_STATE(); - case 2454: + case 2456: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '.') ADVANCE(787); if (lookahead == '8' || - lookahead == '9') ADVANCE(2455); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2454); + lookahead == '9') ADVANCE(2457); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2456); END_STATE(); - case 2455: + case 2457: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '.') ADVANCE(787); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2457); END_STATE(); - case 2456: + case 2458: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'B' || lookahead == 'b') ADVANCE(784); if (lookahead == 'X' || lookahead == 'x') ADVANCE(792); if (lookahead == '8' || - lookahead == '9') ADVANCE(2459); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2458); + lookahead == '9') ADVANCE(2461); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2460); END_STATE(); - case 2457: + case 2459: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '0' || - lookahead == '1') ADVANCE(2457); + lookahead == '1') ADVANCE(2459); END_STATE(); - case 2458: + case 2460: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '8' || - lookahead == '9') ADVANCE(2459); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2458); + lookahead == '9') ADVANCE(2461); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(2460); END_STATE(); - case 2459: + case 2461: ACCEPT_TOKEN(sym_integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2459); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2461); END_STATE(); - case 2460: + case 2462: ACCEPT_TOKEN(sym_integer_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2460); - END_STATE(); - case 2461: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 2462: - ACCEPT_TOKEN(anon_sym_RBRACK); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2462); END_STATE(); case 2463: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 2464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 2465: - ACCEPT_TOKEN(aux_sym_filename_token1); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 2466: - ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'A') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'L') ADVANCE(252); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'P') ADVANCE(257); + if (lookahead == 'A') ADVANCE(248); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'T') ADVANCE(247); + if (lookahead == 'L') ADVANCE(252); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'c') ADVANCE(529); + if (lookahead == 'P') ADVANCE(257); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'e') ADVANCE(643); + if (lookahead == 'T') ADVANCE(247); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'c') ADVANCE(533); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'u') ADVANCE(464); + if (lookahead == 'e') ADVANCE(643); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'i') ADVANCE(522); END_STATE(); case 2475: - ACCEPT_TOKEN(aux_sym_filename_token2); + ACCEPT_TOKEN(aux_sym_filename_token1); + if (lookahead == 'u') ADVANCE(484); END_STATE(); case 2476: - ACCEPT_TOKEN(aux_sym_filename_token3); + ACCEPT_TOKEN(aux_sym_filename_token1); + if (lookahead == 'u') ADVANCE(466); END_STATE(); case 2477: - ACCEPT_TOKEN(aux_sym_filename_token4); + ACCEPT_TOKEN(aux_sym_filename_token2); END_STATE(); case 2478: - ACCEPT_TOKEN(aux_sym_filename_token5); + ACCEPT_TOKEN(aux_sym_filename_token3); END_STATE(); case 2479: - ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'a') ADVANCE(483); + ACCEPT_TOKEN(aux_sym_filename_token4); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'c') ADVANCE(529); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'e') ADVANCE(643); + if (lookahead == 'a') ADVANCE(482); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'i') ADVANCE(470); + if (lookahead == 'c') ADVANCE(533); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'e') ADVANCE(643); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'i') ADVANCE(521); + if (lookahead == 'i') ADVANCE(471); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'r') ADVANCE(525); + if (lookahead == 'i') ADVANCE(511); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'r') ADVANCE(437); + if (lookahead == 'i') ADVANCE(522); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'u') ADVANCE(399); + if (lookahead == 'r') ADVANCE(526); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'u') ADVANCE(464); + if (lookahead == 'r') ADVANCE(435); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'u') ADVANCE(400); END_STATE(); case 2490: - ACCEPT_TOKEN(aux_sym_filename_token6); + ACCEPT_TOKEN(aux_sym_filename_token5); + if (lookahead == 'u') ADVANCE(484); END_STATE(); case 2491: - ACCEPT_TOKEN(aux_sym_filename_token7); + ACCEPT_TOKEN(aux_sym_filename_token5); + if (lookahead == 'u') ADVANCE(466); END_STATE(); case 2492: - ACCEPT_TOKEN(aux_sym_filename_token7); - if (lookahead == '|') ADVANCE(2350); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(979); + ACCEPT_TOKEN(aux_sym_filename_token6); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_filename_token7); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(979); END_STATE(); case 2494: - ACCEPT_TOKEN(aux_sym_filename_token8); + ACCEPT_TOKEN(aux_sym_filename_token7); + if (lookahead == '|') ADVANCE(2351); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(979); END_STATE(); case 2495: - ACCEPT_TOKEN(aux_sym_pattern_multi_token1); + ACCEPT_TOKEN(aux_sym_filename_token7); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(979); END_STATE(); case 2496: - ACCEPT_TOKEN(aux_sym_pattern_multi_token2); + ACCEPT_TOKEN(aux_sym_filename_token8); END_STATE(); case 2497: - ACCEPT_TOKEN(aux_sym_pattern_multi_token3); + ACCEPT_TOKEN(aux_sym_pattern_multi_token1); END_STATE(); case 2498: - ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); + ACCEPT_TOKEN(aux_sym_pattern_multi_token2); END_STATE(); case 2499: - ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2499); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\\' && - lookahead != ']') ADVANCE(2498); + ACCEPT_TOKEN(aux_sym_pattern_multi_token3); END_STATE(); case 2500: - ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); END_STATE(); case 2501: - ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2521); + ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2501); if (lookahead != 0 && lookahead != '\n' && - lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\' && + lookahead != ']') ADVANCE(2500); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2502); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '[' && - lookahead != '\\') ADVANCE(2500); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2521); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2523); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2503); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2520); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2522); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2504); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2521); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ':') ADVANCE(815); + if (lookahead == '<') ADVANCE(2523); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2505); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2521); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == ':') ADVANCE(815); + if (lookahead == '<') ADVANCE(2522); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2506); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2520); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2523); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2507); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(2416); - if (lookahead == '<') ADVANCE(2520); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2523); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2508); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == '*') ADVANCE(2417); if (lookahead == '<') ADVANCE(2522); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2509); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == ',') ADVANCE(2194); - if (lookahead == ':') ADVANCE(815); - if (lookahead == ';') ADVANCE(2212); + if (lookahead == '*') ADVANCE(2417); + if (lookahead == '<') ADVANCE(2522); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2510); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); - if (lookahead == '<') ADVANCE(2522); + if (lookahead == ';') ADVANCE(2213); + if (lookahead == '<') ADVANCE(2524); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2511); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + if (lookahead == ',') ADVANCE(2195); if (lookahead == ':') ADVANCE(815); + if (lookahead == ';') ADVANCE(2213); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2512); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '<') ADVANCE(2522); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == ':') ADVANCE(815); + if (lookahead == '<') ADVANCE(2524); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2513); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '<') ADVANCE(2522); + if (lookahead == ':') ADVANCE(815); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2514); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'a') ADVANCE(642); - if (lookahead == 'i') ADVANCE(523); + if (lookahead == '<') ADVANCE(2524); + if (lookahead == 'm') ADVANCE(2517); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2515); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '[' && + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'g') ADVANCE(2518); + if (lookahead == '<') ADVANCE(2524); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2516); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'a') ADVANCE(641); + if (lookahead == 'i') ADVANCE(524); + END_STATE(); + case 2518: + ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + if (lookahead == 'g') ADVANCE(2520); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2517); + lookahead == ' ') ADVANCE(2518); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); - END_STATE(); - case 2518: - ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'r') ADVANCE(537); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + if (lookahead == 'm') ADVANCE(2517); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2519); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(2500); + lookahead != '\\') ADVANCE(2502); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '!' || - lookahead == '=') ADVANCE(2496); + if (lookahead == 'r') ADVANCE(539); END_STATE(); case 2521: + ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2521); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '[' && + lookahead != '\\') ADVANCE(2502); + END_STATE(); + case 2522: + ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); + if (lookahead == '!' || + lookahead == '=') ADVANCE(2498); + END_STATE(); + case 2523: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == '!' || - lookahead == '=') ADVANCE(2496); + lookahead == '=') ADVANCE(2498); if (lookahead == 'B' || lookahead == 'b') ADVANCE(671); if (lookahead == 'C' || lookahead == 'c') ADVANCE(748); END_STATE(); - case 2522: + case 2524: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == 'B' || lookahead == 'b') ADVANCE(671); if (lookahead == 'C' || lookahead == 'c') ADVANCE(748); END_STATE(); - case 2523: + case 2525: ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); END_STATE(); - case 2524: + case 2526: ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); END_STATE(); - case 2525: + case 2527: ACCEPT_TOKEN(anon_sym_BSLASH_PERCENT_LPAREN); END_STATE(); - case 2526: + case 2528: ACCEPT_TOKEN(anon_sym_BSLASHz_LPAREN); END_STATE(); - case 2527: + case 2529: ACCEPT_TOKEN(sym_register); END_STATE(); - case 2528: + case 2530: ACCEPT_TOKEN(sym_literal_key); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2528); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2530); END_STATE(); - case 2529: + case 2531: ACCEPT_TOKEN(anon_sym_POUND_LBRACE); END_STATE(); - case 2530: + case 2532: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 2531: + case 2533: ACCEPT_TOKEN(aux_sym__plus_cmd_arg_token1); END_STATE(); - case 2532: + case 2534: ACCEPT_TOKEN(aux_sym__plus_cmd_arg_token1); if (lookahead == 'B' || lookahead == 'b') ADVANCE(671); if (lookahead == 'C' || lookahead == 'c') ADVANCE(748); END_STATE(); - case 2533: + case 2535: ACCEPT_TOKEN(sym_au_event); END_STATE(); - case 2534: + case 2536: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'C' || lookahead == 'c') ADVANCE(1290); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1353); END_STATE(); - case 2535: + case 2537: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'C' || lookahead == 'c') ADVANCE(1743); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1566); END_STATE(); - case 2536: + case 2538: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2784); + lookahead == 'c') ADVANCE(2786); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2835); + lookahead == 'p') ADVANCE(2837); END_STATE(); - case 2537: + case 2539: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1337); END_STATE(); - case 2538: + case 2540: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1780); END_STATE(); - case 2539: + case 2541: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2824); + lookahead == 'e') ADVANCE(2826); END_STATE(); - case 2540: + case 2542: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1248); END_STATE(); - case 2541: + case 2543: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1715); END_STATE(); - case 2542: + case 2544: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2754); + lookahead == 'f') ADVANCE(2756); END_STATE(); - case 2543: + case 2545: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2533); + lookahead == 'i') ADVANCE(2535); END_STATE(); - case 2544: + case 2546: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1416); END_STATE(); - case 2545: + case 2547: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1837); END_STATE(); - case 2546: + case 2548: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2886); + lookahead == 'p') ADVANCE(2888); END_STATE(); - case 2547: + case 2549: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2836); + lookahead == 'p') ADVANCE(2838); END_STATE(); - case 2548: + case 2550: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1354); END_STATE(); - case 2549: + case 2551: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1791); END_STATE(); - case 2550: + case 2552: ACCEPT_TOKEN(sym_au_event); if (lookahead == 'I' || lookahead == 'P' || lookahead == 'T' || lookahead == 'i' || lookahead == 'p' || - lookahead == 't') ADVANCE(2533); + lookahead == 't') ADVANCE(2535); END_STATE(); - case 2551: + case 2553: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == '>') ADVANCE(2362); + if (lookahead == '>') ADVANCE(2363); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2552: + case 2554: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == '>') ADVANCE(2358); + if (lookahead == '>') ADVANCE(2359); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2553: + case 2555: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == '|') ADVANCE(2354); + if (lookahead == '|') ADVANCE(2355); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2554: + case 2556: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2585); + lookahead == 'a') ADVANCE(2587); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2878); + lookahead == 'e') ADVANCE(2880); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2555: + case 2557: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2948); + lookahead == 'a') ADVANCE(2950); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2556: + case 2558: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2822); + lookahead == 'a') ADVANCE(2824); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2557: + case 2559: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2955); + lookahead == 'a') ADVANCE(2957); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2558: + case 2560: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2880); + lookahead == 'a') ADVANCE(2882); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2903); + lookahead == 's') ADVANCE(2905); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2559: + case 2561: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2858); + lookahead == 'a') ADVANCE(2860); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2560: + case 2562: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2619); + lookahead == 'a') ADVANCE(2621); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2892); + lookahead == 'c') ADVANCE(2894); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2689); + lookahead == 'd') ADVANCE(2691); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); + lookahead == 'e') ADVANCE(2819); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2747); + lookahead == 'f') ADVANCE(2749); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2733); + lookahead == 'h') ADVANCE(2735); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2652); + lookahead == 'l') ADVANCE(2654); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2831); + lookahead == 'm') ADVANCE(2833); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2637); + lookahead == 'n') ADVANCE(2639); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2654); + lookahead == 'r') ADVANCE(2656); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2816); + lookahead == 'u') ADVANCE(2818); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2726); + lookahead == 'w') ADVANCE(2728); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2561: + case 2563: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2610); + lookahead == 'a') ADVANCE(2612); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2562: + case 2564: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2932); + lookahead == 'a') ADVANCE(2934); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2675); + lookahead == 'd') ADVANCE(2677); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2828); + lookahead == 't') ADVANCE(2830); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2563: + case 2565: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2795); + lookahead == 'a') ADVANCE(2797); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2564: + case 2566: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2759); + lookahead == 'a') ADVANCE(2761); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); - case 2565: + case 2567: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2867); + lookahead == 'a') ADVANCE(2869); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2715); + lookahead == 'c') ADVANCE(2717); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2826); + lookahead == 'e') ADVANCE(2828); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2679); + lookahead == 'r') ADVANCE(2681); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2959); + lookahead == 't') ADVANCE(2961); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2891); + lookahead == 'w') ADVANCE(2893); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); - END_STATE(); - case 2566: - ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2616); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != ',') ADVANCE(2961); - END_STATE(); - case 2567: - ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2594); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2614); + lookahead == 'a') ADVANCE(2618); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2627); + lookahead == 'a') ADVANCE(2596); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2621); + lookahead == 'a') ADVANCE(2616); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2797); + lookahead == 'a') ADVANCE(2629); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2800); + lookahead == 'a') ADVANCE(2623); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2877); + lookahead == 'a') ADVANCE(2799); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2701); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2694); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2586); + lookahead == 'a') ADVANCE(2802); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2949); + lookahead == 'a') ADVANCE(2879); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2815); + lookahead == 'a') ADVANCE(2703); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2696); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2588); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2928); + lookahead == 'a') ADVANCE(2951); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2818); + lookahead == 'a') ADVANCE(2817); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2821); + lookahead == 'a') ADVANCE(2930); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2931); + lookahead == 'a') ADVANCE(2820); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2749); + lookahead == 'a') ADVANCE(2823); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2751); + lookahead == 'a') ADVANCE(2933); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2870); + lookahead == 'a') ADVANCE(2751); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2573); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2873); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2753); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2596); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2872); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2575); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2714); + lookahead == 'c') ADVANCE(2875); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2756); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2864); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2598); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || lookahead == 'c') ADVANCE(2716); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2652); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2861); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2681); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2848); + lookahead == 'c') ADVANCE(2758); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2866); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2710); + lookahead == 'c') ADVANCE(2718); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2654); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2863); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2683); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2785); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2734); + lookahead == 'c') ADVANCE(2850); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2713); + lookahead == 'c') ADVANCE(2712); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2938); + lookahead == 'c') ADVANCE(2787); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2736); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2708); + lookahead == 'c') ADVANCE(2715); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2943); + lookahead == 'c') ADVANCE(2940); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2767); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2652); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2642); + lookahead == 'c') ADVANCE(2710); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2767); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2652); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2645); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2676); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2598); + lookahead == 'c') ADVANCE(2945); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2884); + lookahead == 'c') ADVANCE(2769); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2654); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2644); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2639); + lookahead == 'c') ADVANCE(2769); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2654); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2647); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2678); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2600); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2830); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2829); + lookahead == 'c') ADVANCE(2886); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2711); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2678); + lookahead == 'c') ADVANCE(2641); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2784); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2835); + lookahead == 'c') ADVANCE(2832); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2831); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2786); + lookahead == 'c') ADVANCE(2713); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2680); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2607); + lookahead == 'c') ADVANCE(2786); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2837); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2717); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2844); + lookahead == 'c') ADVANCE(2788); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2717); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2652); + lookahead == 'c') ADVANCE(2609); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2717); + lookahead == 'c') ADVANCE(2719); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2846); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2718); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2572); + lookahead == 'c') ADVANCE(2719); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2654); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2851); + lookahead == 'c') ADVANCE(2719); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2533); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2720); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2574); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2543); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2853); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2550); + lookahead == 'd') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2778); + lookahead == 'd') ADVANCE(2545); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2602); + lookahead == 'd') ADVANCE(2552); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2885); + lookahead == 'd') ADVANCE(2780); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2536); + lookahead == 'd') ADVANCE(2604); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2546); + lookahead == 'd') ADVANCE(2887); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2688); + lookahead == 'd') ADVANCE(2538); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2610); + lookahead == 'd') ADVANCE(2548); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2577); + lookahead == 'd') ADVANCE(2690); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2855); + lookahead == 'd') ADVANCE(2612); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2750); + lookahead == 'd') ADVANCE(2579); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2669); + lookahead == 'd') ADVANCE(2857); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2648); + lookahead == 'd') ADVANCE(2752); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2910); + lookahead == 'd') ADVANCE(2671); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2739); + lookahead == 'd') ADVANCE(2650); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2865); + lookahead == 'd') ADVANCE(2912); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2623); + lookahead == 'd') ADVANCE(2741); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2743); + lookahead == 'd') ADVANCE(2867); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2744); + lookahead == 'd') ADVANCE(2625); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); @@ -36635,897 +36643,895 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2580); + lookahead == 'd') ADVANCE(2746); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2533); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2747); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2600); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2582); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2558); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2641); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2699); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2946); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2673); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2626); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2559); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2798); + lookahead == 'e') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2565); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2660); + lookahead == 'e') ADVANCE(2602); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2952); + lookahead == 'e') ADVANCE(2560); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(2643); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2701); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2948); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2675); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2628); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2561); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2800); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2957); + lookahead == 'e') ADVANCE(2567); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2662); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2602); + lookahead == 'e') ADVANCE(2954); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2605); + lookahead == 'e') ADVANCE(2959); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2764); + lookahead == 'e') ADVANCE(2604); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2953); + lookahead == 'e') ADVANCE(2607); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2536); + lookahead == 'e') ADVANCE(2766); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2804); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2618); + lookahead == 'e') ADVANCE(2955); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2951); + lookahead == 'e') ADVANCE(2538); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2874); + lookahead == 'e') ADVANCE(2806); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2620); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2546); + lookahead == 'e') ADVANCE(2953); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2695); + lookahead == 'e') ADVANCE(2876); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2610); + lookahead == 'e') ADVANCE(2548); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2787); + lookahead == 'e') ADVANCE(2697); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2883); + lookahead == 'e') ADVANCE(2612); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2555); + lookahead == 'e') ADVANCE(2789); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2899); + lookahead == 'e') ADVANCE(2885); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2566); + lookahead == 'e') ADVANCE(2557); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2582); + lookahead == 'e') ADVANCE(2901); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2652); + lookahead == 'e') ADVANCE(2568); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2817); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2678); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2653); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2945); + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2584); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2577); + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2654); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2916); + lookahead == 'e') ADVANCE(2819); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2680); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2655); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2947); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2876); + lookahead == 'e') ADVANCE(2579); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2855); + lookahead == 'e') ADVANCE(2918); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2833); + lookahead == 'e') ADVANCE(2878); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2890); + lookahead == 'e') ADVANCE(2857); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2611); + lookahead == 'e') ADVANCE(2835); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2617); + lookahead == 'e') ADVANCE(2892); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2625); + lookahead == 'e') ADVANCE(2613); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2615); + lookahead == 'e') ADVANCE(2619); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2612); + lookahead == 'e') ADVANCE(2627); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2790); + lookahead == 'e') ADVANCE(2617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2808); + lookahead == 'e') ADVANCE(2614); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2805); + lookahead == 'e') ADVANCE(2792); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2606); + lookahead == 'e') ADVANCE(2810); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2765); + lookahead == 'e') ADVANCE(2807); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2860); + lookahead == 'e') ADVANCE(2608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2924); + lookahead == 'e') ADVANCE(2767); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2907); + lookahead == 'e') ADVANCE(2862); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2789); + lookahead == 'e') ADVANCE(2926); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2575); + lookahead == 'e') ADVANCE(2909); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2568); + lookahead == 'e') ADVANCE(2791); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2930); + lookahead == 'e') ADVANCE(2577); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2905); + lookahead == 'e') ADVANCE(2570); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2888); + lookahead == 'e') ADVANCE(2932); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2570); + lookahead == 'e') ADVANCE(2907); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2928); + lookahead == 'e') ADVANCE(2890); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2769); + lookahead == 'e') ADVANCE(2572); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2887); + lookahead == 'e') ADVANCE(2930); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2825); + lookahead == 'e') ADVANCE(2771); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2607); + lookahead == 'e') ADVANCE(2889); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2781); + lookahead == 'e') ADVANCE(2827); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2560); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2609); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2730); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2783); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2827); + lookahead == 'f') ADVANCE(2562); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2746); + lookahead == 'f') ADVANCE(2732); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2941); + lookahead == 'f') ADVANCE(2829); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2749); + lookahead == 'f') ADVANCE(2748); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2752); + lookahead == 'f') ADVANCE(2943); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2533); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2751); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2656); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2754); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2803); + lookahead == 'g') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2581); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2836); + lookahead == 'g') ADVANCE(2658); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2807); + lookahead == 'g') ADVANCE(2805); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2633); + lookahead == 'g') ADVANCE(2583); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2838); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2649); + lookahead == 'g') ADVANCE(2809); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2665); + lookahead == 'g') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2667); + lookahead == 'g') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2668); + lookahead == 'g') ADVANCE(2667); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2607); + lookahead == 'g') ADVANCE(2669); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2533); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(2670); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2563); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2613); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2760); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2879); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(2609); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2954); + lookahead == 'h') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2556); + lookahead == 'h') ADVANCE(2565); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2615); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2762); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2881); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2838); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2841); + lookahead == 'h') ADVANCE(2956); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2677); + lookahead == 'h') ADVANCE(2558); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2571); + lookahead == 'h') ADVANCE(2840); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2843); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2576); + lookahead == 'h') ADVANCE(2679); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2578); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2845); + lookahead == 'h') ADVANCE(2573); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); @@ -37535,1423 +37541,1425 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2579); + lookahead == 'h') ADVANCE(2580); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2847); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2685); + lookahead == 'h') ADVANCE(2580); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2574); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(2581); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2761); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2593); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2814); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(2687); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2656); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2646); + lookahead == 'i') ADVANCE(2576); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2782); + lookahead == 'i') ADVANCE(2763); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2595); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2816); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2655); + lookahead == 'i') ADVANCE(2658); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2648); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2587); + lookahead == 'i') ADVANCE(2784); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2792); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2735); + lookahead == 'i') ADVANCE(2657); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2960); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2788); + lookahead == 'i') ADVANCE(2589); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2960); + lookahead == 'i') ADVANCE(2794); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2737); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2920); + lookahead == 'i') ADVANCE(2962); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2790); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2956); + lookahead == 'i') ADVANCE(2962); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2794); + lookahead == 'i') ADVANCE(2922); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2847); + lookahead == 'i') ADVANCE(2958); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2628); + lookahead == 'i') ADVANCE(2796); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2780); + lookahead == 'i') ADVANCE(2849); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2929); + lookahead == 'i') ADVANCE(2630); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2849); + lookahead == 'i') ADVANCE(2782); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2604); + lookahead == 'i') ADVANCE(2931); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2906); + lookahead == 'i') ADVANCE(2851); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2823); + lookahead == 'i') ADVANCE(2606); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2801); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2861); + lookahead == 'i') ADVANCE(2908); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2809); + lookahead == 'i') ADVANCE(2825); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2793); + lookahead == 'i') ADVANCE(2803); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2863); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2799); + lookahead == 'i') ADVANCE(2811); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2802); + lookahead == 'i') ADVANCE(2795); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2806); + lookahead == 'i') ADVANCE(2801); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2666); + lookahead == 'i') ADVANCE(2804); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2772); + lookahead == 'i') ADVANCE(2808); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2904); + lookahead == 'i') ADVANCE(2668); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2810); + lookahead == 'i') ADVANCE(2774); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2693); + lookahead == 'i') ADVANCE(2906); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2775); + lookahead == 'i') ADVANCE(2812); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2776); + lookahead == 'i') ADVANCE(2695); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2925); + lookahead == 'i') ADVANCE(2777); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2774); + lookahead == 'i') ADVANCE(2778); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2926); + lookahead == 'i') ADVANCE(2927); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2691); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2776); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2687); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2928); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2865); + lookahead == 'k') ADVANCE(2693); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2533); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2689); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2840); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2856); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2867); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2636); + lookahead == 'l') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2591); + lookahead == 'l') ADVANCE(2842); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2858); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2958); + lookahead == 'l') ADVANCE(2638); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2762); + lookahead == 'l') ADVANCE(2593); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2777); + lookahead == 'l') ADVANCE(2960); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2547); + lookahead == 'l') ADVANCE(2764); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2842); + lookahead == 'l') ADVANCE(2779); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2839); + lookahead == 'l') ADVANCE(2549); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2766); + lookahead == 'l') ADVANCE(2844); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2680); + lookahead == 'l') ADVANCE(2841); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2611); + lookahead == 'l') ADVANCE(2768); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2661); + lookahead == 'l') ADVANCE(2682); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2846); + lookahead == 'l') ADVANCE(2613); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2633); + lookahead == 'l') ADVANCE(2663); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2649); + lookahead == 'l') ADVANCE(2848); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2650); + lookahead == 'l') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2696); + lookahead == 'l') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2741); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2813); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2742); + lookahead == 'l') ADVANCE(2652); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2775); + lookahead == 'l') ADVANCE(2698); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2934); + lookahead == 'l') ADVANCE(2743); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2815); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2744); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2684); + lookahead == 'l') ADVANCE(2777); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2657); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2936); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2588); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2686); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2610); + lookahead == 'm') ADVANCE(2659); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2627); + lookahead == 'm') ADVANCE(2590); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2621); + lookahead == 'm') ADVANCE(2612); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2738); + lookahead == 'm') ADVANCE(2629); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2633); + lookahead == 'm') ADVANCE(2623); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2647); + lookahead == 'm') ADVANCE(2740); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2533); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2589); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2729); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2649); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2656); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2662); + lookahead == 'n') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2656); + lookahead == 'n') ADVANCE(2591); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2731); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2597); + lookahead == 'n') ADVANCE(2658); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2664); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2740); + lookahead == 'n') ADVANCE(2658); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2912); + lookahead == 'n') ADVANCE(2599); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2704); + lookahead == 'n') ADVANCE(2742); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2921); + lookahead == 'n') ADVANCE(2914); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2707); + lookahead == 'n') ADVANCE(2706); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2758); + lookahead == 'n') ADVANCE(2923); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2692); + lookahead == 'n') ADVANCE(2709); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2698); + lookahead == 'n') ADVANCE(2760); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2564); + lookahead == 'n') ADVANCE(2694); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2940); + lookahead == 'n') ADVANCE(2700); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2610); + lookahead == 'n') ADVANCE(2566); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2697); + lookahead == 'n') ADVANCE(2942); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2834); + lookahead == 'n') ADVANCE(2612); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2614); + lookahead == 'n') ADVANCE(2699); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2672); + lookahead == 'n') ADVANCE(2836); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2649); + lookahead == 'n') ADVANCE(2616); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2647); + lookahead == 'n') ADVANCE(2674); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2910); + lookahead == 'n') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2624); + lookahead == 'n') ADVANCE(2649); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2595); + lookahead == 'n') ADVANCE(2912); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); + lookahead == 'n') ADVANCE(2626); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2768); + lookahead == 'n') ADVANCE(2597); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2919); + lookahead == 'n') ADVANCE(2707); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2703); + lookahead == 'n') ADVANCE(2770); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2773); + lookahead == 'n') ADVANCE(2921); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2908); + lookahead == 'n') ADVANCE(2705); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2706); + lookahead == 'n') ADVANCE(2775); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2702); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2864); + lookahead == 'n') ADVANCE(2910); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2894); + lookahead == 'n') ADVANCE(2708); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2935); + lookahead == 'n') ADVANCE(2704); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2866); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2947); + lookahead == 'n') ADVANCE(2896); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2609); + lookahead == 'n') ADVANCE(2937); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2533); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2949); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2757); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2611); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2933); + lookahead == 'o') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2896); + lookahead == 'o') ADVANCE(2759); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2622); + lookahead == 'o') ADVANCE(2935); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2875); + lookahead == 'o') ADVANCE(2898); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2942); + lookahead == 'o') ADVANCE(2624); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2911); + lookahead == 'o') ADVANCE(2877); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2902); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2633); + lookahead == 'o') ADVANCE(2944); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2902); + lookahead == 'o') ADVANCE(2913); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2868); + lookahead == 'o') ADVANCE(2904); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2771); + lookahead == 'o') ADVANCE(2904); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2561); + lookahead == 'o') ADVANCE(2870); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2882); + lookahead == 'o') ADVANCE(2773); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2950); + lookahead == 'o') ADVANCE(2563); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2909); + lookahead == 'o') ADVANCE(2884); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2779); + lookahead == 'o') ADVANCE(2952); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2811); + lookahead == 'o') ADVANCE(2911); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2908); + lookahead == 'o') ADVANCE(2781); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2569); + lookahead == 'o') ADVANCE(2813); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2812); + lookahead == 'o') ADVANCE(2910); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2629); + lookahead == 'o') ADVANCE(2571); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2819); + lookahead == 'o') ADVANCE(2814); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2820); + lookahead == 'o') ADVANCE(2631); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2631); + lookahead == 'o') ADVANCE(2821); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2533); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2822); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2922); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2633); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2562); + lookahead == 'p') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2835); + lookahead == 'p') ADVANCE(2924); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2770); + lookahead == 'p') ADVANCE(2564); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); @@ -38961,1065 +38969,1085 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2638); + lookahead == 'p') ADVANCE(2772); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2632); + lookahead == 'p') ADVANCE(2839); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2763); + lookahead == 'p') ADVANCE(2640); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2669); + lookahead == 'p') ADVANCE(2634); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2633); + lookahead == 'p') ADVANCE(2765); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2649); + lookahead == 'p') ADVANCE(2671); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2886); + lookahead == 'p') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2836); + lookahead == 'p') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2670); + lookahead == 'p') ADVANCE(2888); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2866); + lookahead == 'p') ADVANCE(2838); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2944); + lookahead == 'p') ADVANCE(2672); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2671); + lookahead == 'p') ADVANCE(2868); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2863); + lookahead == 'p') ADVANCE(2946); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2620); + lookahead == 'p') ADVANCE(2673); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2850); + lookahead == 'p') ADVANCE(2865); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2551); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2622); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2533); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2852); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2712); + lookahead == 'r') ADVANCE(2553); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2893); + lookahead == 'r') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2552); + lookahead == 'r') ADVANCE(2714); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2783); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2917); + lookahead == 'r') ADVANCE(2895); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2913); + lookahead == 'r') ADVANCE(2554); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2590); + lookahead == 'r') ADVANCE(2785); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2919); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2599); + lookahead == 'r') ADVANCE(2915); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2901); + lookahead == 'r') ADVANCE(2592); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2918); + lookahead == 'r') ADVANCE(2601); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2843); + lookahead == 'r') ADVANCE(2903); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2827); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2719); + lookahead == 'r') ADVANCE(2920); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2633); + lookahead == 'r') ADVANCE(2845); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2649); + lookahead == 'r') ADVANCE(2829); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2721); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2674); + lookahead == 'r') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2583); + lookahead == 'r') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2890: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2865); + lookahead == 'r') ADVANCE(2676); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2753); + lookahead == 'r') ADVANCE(2585); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2658); + lookahead == 'r') ADVANCE(2867); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2893: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2683); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2895); + lookahead == 'r') ADVANCE(2755); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2683); + lookahead == 'r') ADVANCE(2660); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2895: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2755); + lookahead == 'r') ADVANCE(2685); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2897); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2630); + lookahead == 'r') ADVANCE(2685); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2533); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2757); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2898: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2700); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2632); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2727); + lookahead == 's') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2854); + lookahead == 's') ADVANCE(2702); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2901: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2592); + lookahead == 's') ADVANCE(2729); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2916); + lookahead == 's') ADVANCE(2856); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2736); + lookahead == 's') ADVANCE(2594); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2923); + lookahead == 's') ADVANCE(2918); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2872); + lookahead == 's') ADVANCE(2738); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2915); + lookahead == 's') ADVANCE(2925); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2728); + lookahead == 's') ADVANCE(2874); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2633); + lookahead == 's') ADVANCE(2917); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2649); + lookahead == 's') ADVANCE(2730); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2659); + lookahead == 's') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2927); + lookahead == 's') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2651); + lookahead == 's') ADVANCE(2661); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2913: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2832); + lookahead == 's') ADVANCE(2929); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2869); + lookahead == 's') ADVANCE(2653); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2745); + lookahead == 's') ADVANCE(2834); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2533); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2871); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2608); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2747); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2601); + lookahead == 't') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2919: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2646); + lookahead == 't') ADVANCE(2610); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2920: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2864); + lookahead == 't') ADVANCE(2603); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2921: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2557); + lookahead == 't') ADVANCE(2648); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2922: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2732); + lookahead == 't') ADVANCE(2866); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2923: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2897); + lookahead == 't') ADVANCE(2559); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2924: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2567); + lookahead == 't') ADVANCE(2734); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2925: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2639); + lookahead == 't') ADVANCE(2899); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2926: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2661); + lookahead == 't') ADVANCE(2569); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2927: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2737); + lookahead == 't') ADVANCE(2641); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2928: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2633); + lookahead == 't') ADVANCE(2663); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2929: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2643); + lookahead == 't') ADVANCE(2739); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2930: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2640); + lookahead == 't') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2931: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2649); + lookahead == 't') ADVANCE(2645); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2924); + lookahead == 't') ADVANCE(2642); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2682); + lookahead == 't') ADVANCE(2651); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2663); + lookahead == 't') ADVANCE(2926); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2686); + lookahead == 't') ADVANCE(2684); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2936: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2690); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2665); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2937: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2724); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2688); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2938: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2898); + lookahead == 'u') ADVANCE(2692); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2939: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2725); + lookahead == 'u') ADVANCE(2726); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2940: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2857); + lookahead == 'u') ADVANCE(2900); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2941: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2859); + lookahead == 'u') ADVANCE(2727); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2942: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2916); + lookahead == 'u') ADVANCE(2859); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2943: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2813); + lookahead == 'u') ADVANCE(2861); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2852); + lookahead == 'u') ADVANCE(2918); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2914); + lookahead == 'u') ADVANCE(2815); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2946: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2881); + lookahead == 'u') ADVANCE(2854); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2871); + lookahead == 'u') ADVANCE(2916); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2948: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2633); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2883); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2949: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2647); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2873); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2950: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2664); + lookahead == 'v') ADVANCE(2635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2951: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2533); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(2649); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2952: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2542); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(2666); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2953: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2539); + lookahead == 'w') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2954: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2889); + lookahead == 'w') ADVANCE(2544); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2955: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2533); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2541); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2956: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2603); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2891); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2957: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2748); + lookahead == 'x') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2958: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2533); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2605); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2959: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2862); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2750); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2960: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2649); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2961: ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2864); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(2961); + lookahead != ',') ADVANCE(2963); END_STATE(); case 2962: - ACCEPT_TOKEN(sym_au_once); + ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2651); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != ',') ADVANCE(2963); END_STATE(); case 2963: - ACCEPT_TOKEN(sym_au_nested); + ACCEPT_TOKEN(aux_sym__autocmd_pattern_token1); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != ',') ADVANCE(2963); END_STATE(); case 2964: + ACCEPT_TOKEN(sym_au_once); + END_STATE(); + case 2965: + ACCEPT_TOKEN(sym_au_nested); + END_STATE(); + case 2966: ACCEPT_TOKEN(sym_command_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2964); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2966); END_STATE(); - case 2965: + case 2967: ACCEPT_TOKEN(anon_sym_filetype); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -40027,7 +40055,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 2966: + case 2968: ACCEPT_TOKEN(anon_sym_syntax); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -40035,7 +40063,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 2967: + case 2969: ACCEPT_TOKEN(anon_sym_user); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -40043,828 +40071,810 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 2968: + case 2970: ACCEPT_TOKEN(anon_sym_COMMA2); END_STATE(); - case 2969: + case 2971: ACCEPT_TOKEN(aux_sym__command_attribute_nargs_value_token1); END_STATE(); - case 2970: + case 2972: ACCEPT_TOKEN(aux_sym__command_attribute_nargs_value_token2); END_STATE(); - case 2971: + case 2973: ACCEPT_TOKEN(anon_sym_PERCENT2); END_STATE(); - case 2972: + case 2974: ACCEPT_TOKEN(anon_sym_DASHnargs); END_STATE(); - case 2973: + case 2975: ACCEPT_TOKEN(anon_sym_DASHcomplete); END_STATE(); - case 2974: + case 2976: ACCEPT_TOKEN(anon_sym_DASHrange); END_STATE(); - case 2975: + case 2977: ACCEPT_TOKEN(anon_sym_DASHcount); END_STATE(); - case 2976: + case 2978: ACCEPT_TOKEN(anon_sym_DASHaddr); END_STATE(); - case 2977: + case 2979: ACCEPT_TOKEN(anon_sym_DASHbang); END_STATE(); - case 2978: + case 2980: ACCEPT_TOKEN(anon_sym_DASHbar); END_STATE(); - case 2979: + case 2981: ACCEPT_TOKEN(anon_sym_DASHregister); END_STATE(); - case 2980: + case 2982: ACCEPT_TOKEN(anon_sym_DASHbuffer); END_STATE(); - case 2981: + case 2983: ACCEPT_TOKEN(anon_sym_DASHkeepscript); END_STATE(); - case 2982: + case 2984: ACCEPT_TOKEN(aux_sym_command_statement_token1); - if (lookahead == '<') ADVANCE(2988); - if (lookahead == '\\') ADVANCE(2985); + if (lookahead == '<') ADVANCE(2990); + if (lookahead == '\\') ADVANCE(2987); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2982); + lookahead == ' ') ADVANCE(2984); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2983: + case 2985: ACCEPT_TOKEN(aux_sym_command_statement_token1); - if (lookahead == '>') ADVANCE(2364); + if (lookahead == '>') ADVANCE(2365); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2984: + case 2986: ACCEPT_TOKEN(aux_sym_command_statement_token1); - if (lookahead == '>') ADVANCE(2360); + if (lookahead == '>') ADVANCE(2361); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2985: + case 2987: ACCEPT_TOKEN(aux_sym_command_statement_token1); - if (lookahead == '|') ADVANCE(2356); + if (lookahead == '|') ADVANCE(2357); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2986: + case 2988: ACCEPT_TOKEN(aux_sym_command_statement_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2986); + lookahead == ' ') ADVANCE(2988); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2987: + case 2989: ACCEPT_TOKEN(aux_sym_command_statement_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2990); + lookahead == 'a') ADVANCE(2992); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2988: + case 2990: ACCEPT_TOKEN(aux_sym_command_statement_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2987); + lookahead == 'b') ADVANCE(2989); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2989); + lookahead == 'c') ADVANCE(2991); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2989: + case 2991: ACCEPT_TOKEN(aux_sym_command_statement_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2983); + lookahead == 'r') ADVANCE(2985); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2990: + case 2992: ACCEPT_TOKEN(aux_sym_command_statement_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2984); + lookahead == 'r') ADVANCE(2986); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2991: + case 2993: ACCEPT_TOKEN(aux_sym_command_statement_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2991); + lookahead != '\n') ADVANCE(2993); END_STATE(); - case 2992: + case 2994: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3170); + if (lookahead == 'a') ADVANCE(3172); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2993: + case 2995: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3194); + if (lookahead == 'a') ADVANCE(3196); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2994: + case 2996: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3152); + if (lookahead == 'a') ADVANCE(3154); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 2995: + case 2997: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3154); + if (lookahead == 'a') ADVANCE(3156); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 2996: + case 2998: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3111); + if (lookahead == 'a') ADVANCE(3113); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 2997: + case 2999: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3069); + if (lookahead == 'a') ADVANCE(3071); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 2998: + case 3000: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3091); + if (lookahead == 'a') ADVANCE(3093); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3197); - END_STATE(); - case 2999: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3130); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); - END_STATE(); - case 3000: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3193); - if (lookahead == 'i') ADVANCE(3132); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3001: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3072); + if (lookahead == 'a') ADVANCE(3132); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3002: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3161); + if (lookahead == 'a') ADVANCE(3195); + if (lookahead == 'i') ADVANCE(3134); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3003: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3159); + if (lookahead == 'a') ADVANCE(3074); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3004: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3160); + if (lookahead == 'a') ADVANCE(3163); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3005: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3156); + if (lookahead == 'a') ADVANCE(3161); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3006: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3087); + if (lookahead == 'a') ADVANCE(3162); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3007: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3089); + if (lookahead == 'a') ADVANCE(3158); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3008: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(3075); + if (lookahead == 'a') ADVANCE(3089); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3009: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3059); - if (lookahead == 'o') ADVANCE(3115); + if (lookahead == 'a') ADVANCE(3091); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3010: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3059); - if (lookahead == 'o') ADVANCE(3131); + if (lookahead == 'a') ADVANCE(3077); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3011: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3058); - if (lookahead == 'o') ADVANCE(3110); + if (lookahead == 'c') ADVANCE(3061); + if (lookahead == 'o') ADVANCE(3117); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3012: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3065); + if (lookahead == 'c') ADVANCE(3061); + if (lookahead == 'o') ADVANCE(3133); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3013: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3085); - if (lookahead == 't') ADVANCE(3041); + if (lookahead == 'c') ADVANCE(3060); + if (lookahead == 'o') ADVANCE(3112); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3014: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3044); - if (lookahead == 't') ADVANCE(2997); + if (lookahead == 'c') ADVANCE(3067); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3015: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3137); + if (lookahead == 'c') ADVANCE(3087); + if (lookahead == 't') ADVANCE(3044); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3016: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3045); - if (lookahead == 't') ADVANCE(3001); + if (lookahead == 'c') ADVANCE(3047); + if (lookahead == 't') ADVANCE(2999); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3017: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(3053); - if (lookahead == 't') ADVANCE(3001); + if (lookahead == 'c') ADVANCE(3139); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3018: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3426); + if (lookahead == 'c') ADVANCE(3048); + if (lookahead == 't') ADVANCE(3003); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3019: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3345); + if (lookahead == 'c') ADVANCE(3055); + if (lookahead == 't') ADVANCE(3003); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3020: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3351); + if (lookahead == 'd') ADVANCE(3428); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3021: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3354); + if (lookahead == 'd') ADVANCE(3347); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3022: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3307); + if (lookahead == 'd') ADVANCE(3353); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3023: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3306); + if (lookahead == 'd') ADVANCE(3356); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3024: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3368); + if (lookahead == 'd') ADVANCE(3309); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3025: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3165); + if (lookahead == 'd') ADVANCE(3307); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3026: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3047); + if (lookahead == 'd') ADVANCE(3370); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3027: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(3024); + if (lookahead == 'd') ADVANCE(3167); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3028: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3191); + if (lookahead == 'd') ADVANCE(3049); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3029: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3105); - if (lookahead == 'n') ADVANCE(3086); - if (lookahead == 'w') ADVANCE(3061); + if (lookahead == 'd') ADVANCE(3026); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3030: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3363); + if (lookahead == 'e') ADVANCE(3193); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3031: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3328); + if (lookahead == 'e') ADVANCE(3107); + if (lookahead == 'n') ADVANCE(3088); + if (lookahead == 'w') ADVANCE(3063); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3032: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3190); + if (lookahead == 'e') ADVANCE(3365); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3033: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3103); - if (lookahead == 'n') ADVANCE(3090); - if (lookahead == 'w') ADVANCE(3060); + if (lookahead == 'e') ADVANCE(3330); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3034: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3023); + if (lookahead == 'e') ADVANCE(3192); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3035: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3326); + if (lookahead == 'e') ADVANCE(3105); + if (lookahead == 'n') ADVANCE(3092); + if (lookahead == 'w') ADVANCE(3062); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3036: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3370); + if (lookahead == 'e') ADVANCE(3025); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3037: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3151); + if (lookahead == 'e') ADVANCE(3328); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3038: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3037); + if (lookahead == 'e') ADVANCE(3372); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3039: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3097); + if (lookahead == 'e') ADVANCE(3153); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3040: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3104); + if (lookahead == 'e') ADVANCE(3039); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3041: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3119); + if (lookahead == 'e') ADVANCE(3168); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3042: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3166); + if (lookahead == 'e') ADVANCE(3099); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3043: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3120); + if (lookahead == 'e') ADVANCE(3106); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3044: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(2998); + if (lookahead == 'e') ADVANCE(3120); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3045: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3006); + if (lookahead == 'e') ADVANCE(3169); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3046: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3167); + if (lookahead == 'e') ADVANCE(3121); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3047: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3124); + if (lookahead == 'e') ADVANCE(3000); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3048: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3022); - if (lookahead == 's') ADVANCE(3342); + if (lookahead == 'e') ADVANCE(3008); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3049: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3122); + if (lookahead == 'e') ADVANCE(3126); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3050: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3005); + if (lookahead == 'e') ADVANCE(3024); + if (lookahead == 's') ADVANCE(3344); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3051: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3192); + if (lookahead == 'e') ADVANCE(3124); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3052: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3121); + if (lookahead == 'e') ADVANCE(3007); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3053: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3007); + if (lookahead == 'e') ADVANCE(3194); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3054: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(3064); + if (lookahead == 'e') ADVANCE(3123); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3055: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'g') ADVANCE(3157); + if (lookahead == 'e') ADVANCE(3009); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3056: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'g') ADVANCE(3155); + if (lookahead == 'e') ADVANCE(3066); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3057: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'g') ADVANCE(3162); + if (lookahead == 'g') ADVANCE(3159); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3058: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(2995); + if (lookahead == 'g') ADVANCE(3157); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3059: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(2994); + if (lookahead == 'g') ADVANCE(3164); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3060: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(3070); + if (lookahead == 'h') ADVANCE(2997); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3061: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(3071); + if (lookahead == 'h') ADVANCE(2996); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3062: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(3092); + if (lookahead == 'h') ADVANCE(3072); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3063: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(3093); + if (lookahead == 'h') ADVANCE(3073); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3064: ACCEPT_TOKEN(sym_hl_group); @@ -40873,142 +40883,142 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3065: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(3057); + if (lookahead == 'h') ADVANCE(3095); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3066: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3163); + if (lookahead == 'h') ADVANCE(3096); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3067: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3144); + if (lookahead == 'h') ADVANCE(3059); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3068: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3140); + if (lookahead == 'i') ADVANCE(3165); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3069: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3117); + if (lookahead == 'i') ADVANCE(3146); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3070: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3179); + if (lookahead == 'i') ADVANCE(3142); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3071: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3180); + if (lookahead == 'i') ADVANCE(3118); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3072: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3108); + if (lookahead == 'i') ADVANCE(3181); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3073: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3143); + if (lookahead == 'i') ADVANCE(3182); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3074: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3114); + if (lookahead == 'i') ADVANCE(3110); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3075: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3116); + if (lookahead == 'i') ADVANCE(3145); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3076: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3125); + if (lookahead == 'i') ADVANCE(3116); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3077: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3127); + if (lookahead == 'i') ADVANCE(3122); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3078: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(3128); + if (lookahead == 'i') ADVANCE(3127); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3079: ACCEPT_TOKEN(sym_hl_group); @@ -41017,1169 +41027,1187 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3080: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(3067); + if (lookahead == 'i') ADVANCE(3130); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3081: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3131); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3082: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(3068); - if (lookahead == 't') ADVANCE(3004); + if (lookahead == 'k') ADVANCE(3069); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3083: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(3068); + if (lookahead == 'k') ADVANCE(3201); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3084: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(3073); + if (lookahead == 'k') ADVANCE(3070); + if (lookahead == 't') ADVANCE(3006); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3085: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3183); + if (lookahead == 'k') ADVANCE(3070); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3086: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3333); + if (lookahead == 'k') ADVANCE(3075); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3087: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3293); + if (lookahead == 'l') ADVANCE(3185); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3088: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3357); + if (lookahead == 'l') ADVANCE(3335); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3089: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3298); + if (lookahead == 'l') ADVANCE(3295); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3090: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3331); + if (lookahead == 'l') ADVANCE(3359); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3091: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3295); + if (lookahead == 'l') ADVANCE(3300); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3092: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(2402); + if (lookahead == 'l') ADVANCE(3333); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3093: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(2393); + if (lookahead == 'l') ADVANCE(3297); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3094: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(2390); + if (lookahead == 'l') ADVANCE(2403); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3095: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(2399); + if (lookahead == 'l') ADVANCE(2394); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3096: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3019); + if (lookahead == 'l') ADVANCE(2391); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3097: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3076); + if (lookahead == 'l') ADVANCE(2400); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3098: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3062); + if (lookahead == 'l') ADVANCE(3021); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3099: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(2993); + if (lookahead == 'l') ADVANCE(3078); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3100: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3050); + if (lookahead == 'l') ADVANCE(3064); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3101: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3078); + if (lookahead == 'l') ADVANCE(2995); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3102: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(3079); + if (lookahead == 'l') ADVANCE(3052); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3103: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(3146); + if (lookahead == 'l') ADVANCE(3080); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3104: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(3135); + if (lookahead == 'l') ADVANCE(3081); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3105: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(3147); + if (lookahead == 'm') ADVANCE(3148); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3106: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(3063); + if (lookahead == 'm') ADVANCE(3137); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3107: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3018); - if (lookahead == 'x') ADVANCE(3013); + if (lookahead == 'm') ADVANCE(3149); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3108: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3048); + if (lookahead == 'm') ADVANCE(3065); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3109: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3313); + if (lookahead == 'n') ADVANCE(3020); + if (lookahead == 'x') ADVANCE(3015); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3110: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3014); + if (lookahead == 'n') ADVANCE(3050); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3111: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3168); + if (lookahead == 'n') ADVANCE(3315); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3112: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3311); + if (lookahead == 'n') ADVANCE(3016); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3113: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(2387); + if (lookahead == 'n') ADVANCE(3170); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3114: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3081); + if (lookahead == 'n') ADVANCE(3313); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3115: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3016); + if (lookahead == 'n') ADVANCE(2388); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3116: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3164); + if (lookahead == 'n') ADVANCE(3083); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3117: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3034); + if (lookahead == 'n') ADVANCE(3018); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3118: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3039); + if (lookahead == 'n') ADVANCE(3036); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3119: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3020); + if (lookahead == 'n') ADVANCE(3042); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3120: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3176); + if (lookahead == 'n') ADVANCE(3022); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3121: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3021); + if (lookahead == 'n') ADVANCE(3178); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3122: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3172); + if (lookahead == 'n') ADVANCE(3166); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3123: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3025); + if (lookahead == 'n') ADVANCE(3023); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3124: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3088); + if (lookahead == 'n') ADVANCE(3174); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3125: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3030); + if (lookahead == 'n') ADVANCE(3027); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3126: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3181); + if (lookahead == 'n') ADVANCE(3090); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3127: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3054); + if (lookahead == 'n') ADVANCE(3032); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3128: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3042); + if (lookahead == 'n') ADVANCE(3183); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3129: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3046); + if (lookahead == 'n') ADVANCE(3056); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3130: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3169); + if (lookahead == 'n') ADVANCE(3041); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3131: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3017); + if (lookahead == 'n') ADVANCE(3045); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3132: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(3102); + if (lookahead == 'n') ADVANCE(3171); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3133: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3096); + if (lookahead == 'n') ADVANCE(3019); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3134: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3184); + if (lookahead == 'n') ADVANCE(3104); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3135: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3188); + if (lookahead == 'o') ADVANCE(3098); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3136: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3185); + if (lookahead == 'o') ADVANCE(3186); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3137: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3113); + if (lookahead == 'o') ADVANCE(3190); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3138: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3126); + if (lookahead == 'o') ADVANCE(3187); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3139: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(3186); + if (lookahead == 'o') ADVANCE(3115); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3140: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3029); + if (lookahead == 'o') ADVANCE(3128); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3141: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3318); + if (lookahead == 'o') ADVANCE(3188); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3142: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3360); + if (lookahead == 'p') ADVANCE(3031); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3143: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3421); + if (lookahead == 'p') ADVANCE(3320); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3144: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3033); + if (lookahead == 'p') ADVANCE(3362); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3145: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3316); + if (lookahead == 'p') ADVANCE(3423); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3146: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3175); + if (lookahead == 'p') ADVANCE(3035); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3147: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3178); + if (lookahead == 'p') ADVANCE(3318); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3148: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3099); + if (lookahead == 'p') ADVANCE(3177); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3149: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3003); + if (lookahead == 'p') ADVANCE(3180); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3150: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3002); + if (lookahead == 'p') ADVANCE(3101); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3151: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(3052); + if (lookahead == 'p') ADVANCE(3005); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3152: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3303); + if (lookahead == 'p') ADVANCE(3004); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3153: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(2996); + if (lookahead == 'p') ADVANCE(3054); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3154: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3301); + if (lookahead == 'r') ADVANCE(3305); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3155: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3134); + if (lookahead == 'r') ADVANCE(2998); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3156: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3201); + if (lookahead == 'r') ADVANCE(3303); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3157: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'r') ADVANCE(3136); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3158: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(2999); + if (lookahead == 'r') ADVANCE(3203); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3159: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3043); + if (lookahead == 'r') ADVANCE(3138); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3160: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3173); + if (lookahead == 'r') ADVANCE(3001); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3161: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3049); + if (lookahead == 'r') ADVANCE(3046); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3162: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(3139); + if (lookahead == 'r') ADVANCE(3175); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3163: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3148); + if (lookahead == 'r') ADVANCE(3051); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3164: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3342); + if (lookahead == 'r') ADVANCE(3141); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3165: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3366); + if (lookahead == 's') ADVANCE(3150); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3166: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3432); + if (lookahead == 's') ADVANCE(3344); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3167: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3429); + if (lookahead == 's') ADVANCE(3368); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3168: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3149); + if (lookahead == 's') ADVANCE(3434); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3169: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(3150); + if (lookahead == 's') ADVANCE(3431); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3170: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3012); + if (lookahead == 's') ADVANCE(3151); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3171: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3055); + if (lookahead == 's') ADVANCE(3152); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3172: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3323); + if (lookahead == 't') ADVANCE(3014); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3173: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3244); + if (lookahead == 't') ADVANCE(3057); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3174: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3056); + if (lookahead == 't') ADVANCE(3325); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3175: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3196); + if (lookahead == 't') ADVANCE(3246); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3176: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3321); + if (lookahead == 't') ADVANCE(3058); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3177: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(2395); + if (lookahead == 't') ADVANCE(3198); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3178: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3195); + if (lookahead == 't') ADVANCE(3323); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3179: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3035); + if (lookahead == 't') ADVANCE(2396); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3180: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3031); + if (lookahead == 't') ADVANCE(3197); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3181: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(3008); + if (lookahead == 't') ADVANCE(3037); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3182: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(3106); + if (lookahead == 't') ADVANCE(3033); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3183: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(3026); + if (lookahead == 't') ADVANCE(3010); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3184: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(3145); + if (lookahead == 'u') ADVANCE(3108); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3185: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(3141); + if (lookahead == 'u') ADVANCE(3028); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3186: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(3142); + if (lookahead == 'u') ADVANCE(3147); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3187: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(3098); + if (lookahead == 'u') ADVANCE(3143); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3188: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'v') ADVANCE(3036); + if (lookahead == 'u') ADVANCE(3144); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3189: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(3013); + if (lookahead == 'u') ADVANCE(3100); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3190: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(3174); + if (lookahead == 'v') ADVANCE(3038); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3191: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(3171); + if (lookahead == 'x') ADVANCE(3015); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3192: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(3177); + if (lookahead == 'x') ADVANCE(3176); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); case 3193: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(3101); + if (lookahead == 'x') ADVANCE(3173); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3194: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'y') ADVANCE(3348); + if (lookahead == 'x') ADVANCE(3179); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3195: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'y') ADVANCE(3338); + if (lookahead == 'x') ADVANCE(3103); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); case 3196: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'y') ADVANCE(3336); + if (lookahead == 'y') ADVANCE(3350); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); + END_STATE(); + case 3197: + ACCEPT_TOKEN(sym_hl_group); + if (lookahead == 'y') ADVANCE(3340); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + ('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); + END_STATE(); + case 3198: + ACCEPT_TOKEN(sym_hl_group); + if (lookahead == 'y') ADVANCE(3338); + if (lookahead == '.' || + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3197: + case 3199: ACCEPT_TOKEN(sym_hl_group); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3198: + case 3200: ACCEPT_TOKEN(sym_hl_group); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3199: + case 3201: ACCEPT_TOKEN(anon_sym_link); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3200: + case 3202: ACCEPT_TOKEN(anon_sym_clear); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -42187,39 +42215,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3201: + case 3203: ACCEPT_TOKEN(anon_sym_clear); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3202: + case 3204: ACCEPT_TOKEN(anon_sym_clear); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); - case 3203: + case 3205: ACCEPT_TOKEN(anon_sym_NONE); END_STATE(); - case 3204: + case 3206: ACCEPT_TOKEN(sym__hl_none); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(2145); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3265); END_STATE(); - case 3205: + case 3207: ACCEPT_TOKEN(sym__hl_none); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3273); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3275); END_STATE(); - case 3206: + case 3208: ACCEPT_TOKEN(sym__hl_none); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -42227,317 +42255,317 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3207: + case 3209: ACCEPT_TOKEN(anon_sym_term); END_STATE(); - case 3208: + case 3210: ACCEPT_TOKEN(anon_sym_term); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); - END_STATE(); - case 3209: - ACCEPT_TOKEN(anon_sym_cterm); - if (lookahead == 'b') ADVANCE(3219); - if (lookahead == 'f') ADVANCE(3220); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); - END_STATE(); - case 3210: - ACCEPT_TOKEN(anon_sym_cterm); - if (lookahead == 'b') ADVANCE(409); - if (lookahead == 'f') ADVANCE(410); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3211: - ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == '>') ADVANCE(3241); + ACCEPT_TOKEN(anon_sym_cterm); + if (lookahead == 'b') ADVANCE(3221); + if (lookahead == 'f') ADVANCE(3222); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3212: - ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'a') ADVANCE(3232); - if (lookahead == 'o') ADVANCE(3228); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + ACCEPT_TOKEN(anon_sym_cterm); + if (lookahead == 'b') ADVANCE(410); + if (lookahead == 'f') ADVANCE(411); END_STATE(); case 3213: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'd') ADVANCE(3277); + if (lookahead == '>') ADVANCE(3243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3214: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'e') ADVANCE(3230); + if (lookahead == 'a') ADVANCE(3234); + if (lookahead == 'o') ADVANCE(3230); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3215: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'e') ADVANCE(3225); + if (lookahead == 'd') ADVANCE(3279); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3216: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'e') ADVANCE(3231); + if (lookahead == 'e') ADVANCE(3232); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3217: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(3267); + if (lookahead == 'e') ADVANCE(3227); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3218: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(3265); + if (lookahead == 'e') ADVANCE(3233); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3219: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(3253); + if (lookahead == 'g') ADVANCE(3269); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3220: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(3251); + if (lookahead == 'g') ADVANCE(3267); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3221: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'i') ADVANCE(3254); + if (lookahead == 'g') ADVANCE(3255); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3222: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'l') ADVANCE(3215); + if (lookahead == 'g') ADVANCE(3253); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3223: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'm') ADVANCE(3208); + if (lookahead == 'i') ADVANCE(3256); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3224: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'm') ADVANCE(3209); + if (lookahead == 'l') ADVANCE(3217); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3225: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'n') ADVANCE(3213); + if (lookahead == 'm') ADVANCE(3210); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3226: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'n') ADVANCE(3234); + if (lookahead == 'm') ADVANCE(3211); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3227: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'o') ADVANCE(3226); + if (lookahead == 'n') ADVANCE(3215); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3228: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'p') ADVANCE(3247); + if (lookahead == 'n') ADVANCE(3236); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3229: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'p') ADVANCE(3269); + if (lookahead == 'o') ADVANCE(3228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'r') ADVANCE(3223); + if (lookahead == 'p') ADVANCE(3249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'r') ADVANCE(3224); + if (lookahead == 'p') ADVANCE(3271); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'r') ADVANCE(3235); + if (lookahead == 'r') ADVANCE(3225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(3212); + if (lookahead == 'r') ADVANCE(3226); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(3275); + if (lookahead == 'r') ADVANCE(3237); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(3245); + if (lookahead == 't') ADVANCE(3214); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(3216); + if (lookahead == 't') ADVANCE(3277); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'u') ADVANCE(3221); + if (lookahead == 't') ADVANCE(3247); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == '|') ADVANCE(2352); + if (lookahead == 't') ADVANCE(3218); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3240); + if (lookahead == 'u') ADVANCE(3223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(3211); + if (lookahead == '|') ADVANCE(2353); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3242); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3242: - ACCEPT_TOKEN(anon_sym_start); + ACCEPT_TOKEN(aux_sym__hl_term_list_token1); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(3213); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3243: + ACCEPT_TOKEN(aux_sym__hl_term_list_token1); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(3243); + END_STATE(); + case 3244: + ACCEPT_TOKEN(anon_sym_start); + END_STATE(); + case 3245: ACCEPT_TOKEN(anon_sym_start); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -42545,351 +42573,351 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3244: + case 3246: ACCEPT_TOKEN(anon_sym_start); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3245: + case 3247: ACCEPT_TOKEN(anon_sym_start); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3246: + case 3248: ACCEPT_TOKEN(anon_sym_stop); END_STATE(); - case 3247: + case 3249: ACCEPT_TOKEN(anon_sym_stop); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3248: + case 3250: ACCEPT_TOKEN(sym__hl_color_nr); END_STATE(); - case 3249: + case 3251: ACCEPT_TOKEN(sym__hl_color_nr); - if (lookahead == '*') ADVANCE(3248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3249); + if (lookahead == '*') ADVANCE(3250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3251); END_STATE(); - case 3250: + case 3252: ACCEPT_TOKEN(anon_sym_ctermfg); END_STATE(); - case 3251: + case 3253: ACCEPT_TOKEN(anon_sym_ctermfg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3252: + case 3254: ACCEPT_TOKEN(anon_sym_ctermbg); END_STATE(); - case 3253: + case 3255: ACCEPT_TOKEN(anon_sym_ctermbg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3254: + case 3256: ACCEPT_TOKEN(anon_sym_gui); - if (lookahead == 'b') ADVANCE(3217); - if (lookahead == 'f') ADVANCE(3218); - if (lookahead == 's') ADVANCE(3229); + if (lookahead == 'b') ADVANCE(3219); + if (lookahead == 'f') ADVANCE(3220); + if (lookahead == 's') ADVANCE(3231); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3255: + case 3257: ACCEPT_TOKEN(anon_sym_gui); - if (lookahead == 'b') ADVANCE(407); - if (lookahead == 'f') ADVANCE(408); - if (lookahead == 's') ADVANCE(541); + if (lookahead == 'b') ADVANCE(408); + if (lookahead == 'f') ADVANCE(409); + if (lookahead == 's') ADVANCE(543); END_STATE(); - case 3256: + case 3258: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 3257: + case 3259: ACCEPT_TOKEN(aux_sym__hl_quoted_name_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\'') ADVANCE(3257); + lookahead != '\'') ADVANCE(3259); END_STATE(); - case 3258: + case 3260: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 3259: + case 3261: ACCEPT_TOKEN(aux_sym_color_token1); END_STATE(); - case 3260: + case 3262: ACCEPT_TOKEN(aux_sym_color_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(2145); - if (lookahead == 'E') ADVANCE(3204); + if (lookahead == 'E') ADVANCE(3206); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3265); END_STATE(); - case 3261: + case 3263: ACCEPT_TOKEN(aux_sym_color_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(2145); - if (lookahead == 'N') ADVANCE(3260); + if (lookahead == 'N') ADVANCE(3262); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3265); END_STATE(); - case 3262: + case 3264: ACCEPT_TOKEN(aux_sym_color_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(2145); - if (lookahead == 'O') ADVANCE(3261); + if (lookahead == 'O') ADVANCE(3263); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3265); END_STATE(); - case 3263: + case 3265: ACCEPT_TOKEN(aux_sym_color_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(2145); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3265); END_STATE(); - case 3264: + case 3266: ACCEPT_TOKEN(anon_sym_guifg); END_STATE(); - case 3265: + case 3267: ACCEPT_TOKEN(anon_sym_guifg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3266: + case 3268: ACCEPT_TOKEN(anon_sym_guibg); END_STATE(); - case 3267: + case 3269: ACCEPT_TOKEN(anon_sym_guibg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3268: + case 3270: ACCEPT_TOKEN(anon_sym_guisp); END_STATE(); - case 3269: + case 3271: ACCEPT_TOKEN(anon_sym_guisp); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3270: + case 3272: ACCEPT_TOKEN(aux_sym_font_token1); - if (lookahead == 'E') ADVANCE(3205); + if (lookahead == 'E') ADVANCE(3207); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3273); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3275); END_STATE(); - case 3271: + case 3273: ACCEPT_TOKEN(aux_sym_font_token1); - if (lookahead == 'N') ADVANCE(3270); + if (lookahead == 'N') ADVANCE(3272); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3273); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3275); END_STATE(); - case 3272: + case 3274: ACCEPT_TOKEN(aux_sym_font_token1); - if (lookahead == 'O') ADVANCE(3271); + if (lookahead == 'O') ADVANCE(3273); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3273); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3275); END_STATE(); - case 3273: + case 3275: ACCEPT_TOKEN(aux_sym_font_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3273); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3275); END_STATE(); - case 3274: + case 3276: ACCEPT_TOKEN(anon_sym_font); END_STATE(); - case 3275: + case 3277: ACCEPT_TOKEN(anon_sym_font); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); + lookahead != ' ') ADVANCE(3243); END_STATE(); - case 3276: + case 3278: ACCEPT_TOKEN(anon_sym_blend); END_STATE(); - case 3277: + case 3279: ACCEPT_TOKEN(anon_sym_blend); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(3241); - END_STATE(); - case 3278: - ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '\t') ADVANCE(3278); - if (lookahead == '<') ADVANCE(3288); - if (lookahead == '\\') ADVANCE(3286); - if (lookahead == 'c') ADVANCE(3284); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); - END_STATE(); - case 3279: - ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '\t') ADVANCE(3279); - if (lookahead == 'c') ADVANCE(3284); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3243); END_STATE(); case 3280: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '>') ADVANCE(2363); + if (lookahead == '\t') ADVANCE(3280); + if (lookahead == '<') ADVANCE(3290); + if (lookahead == '\\') ADVANCE(3288); + if (lookahead == 'c') ADVANCE(3286); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3281: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '>') ADVANCE(2359); + if (lookahead == '\t') ADVANCE(3281); + if (lookahead == 'c') ADVANCE(3286); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3282: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'a') ADVANCE(3285); + if (lookahead == '>') ADVANCE(2364); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3283: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'e') ADVANCE(3282); + if (lookahead == '>') ADVANCE(2360); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3284: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'l') ADVANCE(3283); + if (lookahead == 'a') ADVANCE(3287); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3285: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'r') ADVANCE(3202); + if (lookahead == 'e') ADVANCE(3284); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3286: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '|') ADVANCE(2355); + if (lookahead == 'l') ADVANCE(3285); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3287: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3290); + if (lookahead == 'r') ADVANCE(3204); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3288: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3287); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(3289); + if (lookahead == '|') ADVANCE(2356); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3289: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(3280); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3292); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3290: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(3281); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3289); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(3291); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3291: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(3282); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(3291); + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3292: - ACCEPT_TOKEN(anon_sym_conceal); + ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(3283); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != ' ') ADVANCE(3293); END_STATE(); case 3293: + ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != ' ') ADVANCE(3293); + END_STATE(); + case 3294: ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == 'e') ADVANCE(3123); + END_STATE(); + case 3295: + ACCEPT_TOKEN(anon_sym_conceal); + if (lookahead == 'e') ADVANCE(3125); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3294: + case 3296: ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(512); END_STATE(); - case 3295: + case 3297: ACCEPT_TOKEN(anon_sym_conceal); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3296: + case 3298: ACCEPT_TOKEN(anon_sym_conceal); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -42899,7 +42927,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'z')) ADVANCE(2145); if (lookahead == 'e') ADVANCE(2073); END_STATE(); - case 3297: + case 3299: ACCEPT_TOKEN(anon_sym_conceal); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -42907,37 +42935,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3298: + case 3300: ACCEPT_TOKEN(anon_sym_conceal); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3299: + case 3301: ACCEPT_TOKEN(anon_sym_conceal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3300: + case 3302: ACCEPT_TOKEN(anon_sym_cchar); END_STATE(); - case 3301: + case 3303: ACCEPT_TOKEN(anon_sym_cchar); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3302: + case 3304: ACCEPT_TOKEN(anon_sym_cchar); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -42945,57 +42973,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3303: + case 3305: ACCEPT_TOKEN(anon_sym_cchar); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3304: + case 3306: ACCEPT_TOKEN(anon_sym_cchar); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3305: + case 3307: ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(3400); + if (lookahead == 'i') ADVANCE(3114); + if (lookahead == '.' || + lookahead == '@') ADVANCE(3200); + if (lookahead == '[' || + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3306: + case 3308: ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(3112); - if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); - if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + if (lookahead == 'i') ADVANCE(3402); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= '[') || + lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3307: + case 3309: ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(3109); + if (lookahead == 'i') ADVANCE(3111); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3308: + case 3310: ACCEPT_TOKEN(anon_sym_contained); if (lookahead == 'i') ADVANCE(495); END_STATE(); - case 3309: + case 3311: ACCEPT_TOKEN(anon_sym_contained); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43005,21 +43033,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z')) ADVANCE(2145); if (lookahead == 'i') ADVANCE(2066); END_STATE(); - case 3310: + case 3312: ACCEPT_TOKEN(anon_sym_containedin); END_STATE(); - case 3311: + case 3313: ACCEPT_TOKEN(anon_sym_containedin); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3312: + case 3314: ACCEPT_TOKEN(anon_sym_containedin); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43027,37 +43055,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3313: + case 3315: ACCEPT_TOKEN(anon_sym_containedin); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3314: + case 3316: ACCEPT_TOKEN(anon_sym_containedin); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3315: + case 3317: ACCEPT_TOKEN(anon_sym_nextgroup); END_STATE(); - case 3316: + case 3318: ACCEPT_TOKEN(anon_sym_nextgroup); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3317: + case 3319: ACCEPT_TOKEN(anon_sym_nextgroup); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43065,37 +43093,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3318: + case 3320: ACCEPT_TOKEN(anon_sym_nextgroup); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3319: + case 3321: ACCEPT_TOKEN(anon_sym_nextgroup); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3320: + case 3322: ACCEPT_TOKEN(anon_sym_transparent); END_STATE(); - case 3321: + case 3323: ACCEPT_TOKEN(anon_sym_transparent); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3322: + case 3324: ACCEPT_TOKEN(anon_sym_transparent); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43103,37 +43131,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3323: + case 3325: ACCEPT_TOKEN(anon_sym_transparent); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3324: + case 3326: ACCEPT_TOKEN(anon_sym_transparent); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3325: + case 3327: ACCEPT_TOKEN(anon_sym_skipwhite); END_STATE(); - case 3326: + case 3328: ACCEPT_TOKEN(anon_sym_skipwhite); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3327: + case 3329: ACCEPT_TOKEN(anon_sym_skipwhite); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43141,37 +43169,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3328: + case 3330: ACCEPT_TOKEN(anon_sym_skipwhite); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3329: + case 3331: ACCEPT_TOKEN(anon_sym_skipwhite); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3330: + case 3332: ACCEPT_TOKEN(anon_sym_skipnl); END_STATE(); - case 3331: + case 3333: ACCEPT_TOKEN(anon_sym_skipnl); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3332: + case 3334: ACCEPT_TOKEN(anon_sym_skipnl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43179,37 +43207,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3333: + case 3335: ACCEPT_TOKEN(anon_sym_skipnl); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3334: + case 3336: ACCEPT_TOKEN(anon_sym_skipnl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3335: + case 3337: ACCEPT_TOKEN(anon_sym_skipempty); END_STATE(); - case 3336: + case 3338: ACCEPT_TOKEN(anon_sym_skipempty); if (lookahead == '.' || - lookahead == '@') ADVANCE(3198); + lookahead == '@') ADVANCE(3200); if (lookahead == '[' || - lookahead == ']') ADVANCE(3420); + lookahead == ']') ADVANCE(3422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3199); END_STATE(); - case 3337: + case 3339: ACCEPT_TOKEN(anon_sym_skipempty); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43217,26 +43245,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3338: + case 3340: ACCEPT_TOKEN(anon_sym_skipempty); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3339: + case 3341: ACCEPT_TOKEN(anon_sym_skipempty); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); - case 3340: + case 3342: ACCEPT_TOKEN(anon_sym_contains); END_STATE(); - case 3341: + case 3343: ACCEPT_TOKEN(anon_sym_contains); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43244,18 +43272,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3342: + case 3344: ACCEPT_TOKEN(anon_sym_contains); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3343: + case 3345: ACCEPT_TOKEN(anon_sym_fold); END_STATE(); - case 3344: + case 3346: ACCEPT_TOKEN(anon_sym_fold); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43263,18 +43291,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3345: + case 3347: ACCEPT_TOKEN(anon_sym_fold); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3346: + case 3348: ACCEPT_TOKEN(anon_sym_display); END_STATE(); - case 3347: + case 3349: ACCEPT_TOKEN(anon_sym_display); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43282,18 +43310,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3348: + case 3350: ACCEPT_TOKEN(anon_sym_display); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3349: + case 3351: ACCEPT_TOKEN(anon_sym_extend); END_STATE(); - case 3350: + case 3352: ACCEPT_TOKEN(anon_sym_extend); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43301,18 +43329,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3351: + case 3353: ACCEPT_TOKEN(anon_sym_extend); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3352: + case 3354: ACCEPT_TOKEN(anon_sym_keepend); END_STATE(); - case 3353: + case 3355: ACCEPT_TOKEN(anon_sym_keepend); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43320,18 +43348,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3354: + case 3356: ACCEPT_TOKEN(anon_sym_keepend); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3355: + case 3357: ACCEPT_TOKEN(anon_sym_excludenl); END_STATE(); - case 3356: + case 3358: ACCEPT_TOKEN(anon_sym_excludenl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43339,18 +43367,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3357: + case 3359: ACCEPT_TOKEN(anon_sym_excludenl); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3358: + case 3360: ACCEPT_TOKEN(anon_sym_matchgroup); END_STATE(); - case 3359: + case 3361: ACCEPT_TOKEN(anon_sym_matchgroup); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43358,18 +43386,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3360: + case 3362: ACCEPT_TOKEN(anon_sym_matchgroup); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3361: + case 3363: ACCEPT_TOKEN(anon_sym_oneline); END_STATE(); - case 3362: + case 3364: ACCEPT_TOKEN(anon_sym_oneline); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43377,18 +43405,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3363: + case 3365: ACCEPT_TOKEN(anon_sym_oneline); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3364: + case 3366: ACCEPT_TOKEN(anon_sym_concealends); END_STATE(); - case 3365: + case 3367: ACCEPT_TOKEN(anon_sym_concealends); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43396,492 +43424,492 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3366: + case 3368: ACCEPT_TOKEN(anon_sym_concealends); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3367: + case 3369: ACCEPT_TOKEN(anon_sym_add); END_STATE(); - case 3368: + case 3370: ACCEPT_TOKEN(anon_sym_add); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3369: + case 3371: ACCEPT_TOKEN(anon_sym_remove); END_STATE(); - case 3370: + case 3372: ACCEPT_TOKEN(anon_sym_remove); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3371: + case 3373: ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token1); if (lookahead == '+' || lookahead == '-') ADVANCE(790); END_STATE(); - case 3372: - ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); - END_STATE(); - case 3373: - ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token2); - END_STATE(); case 3374: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'a') ADVANCE(3409); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); END_STATE(); case 3375: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'a') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token2); END_STATE(); case 3376: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'a') ADVANCE(3392); + if (lookahead == 'a') ADVANCE(3411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3377: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'a') ADVANCE(3396); + if (lookahead == 'a') ADVANCE(3401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3378: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'a') ADVANCE(3411); + if (lookahead == 'a') ADVANCE(3394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3379: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'c') ADVANCE(3389); - if (lookahead == 'o') ADVANCE(3398); + if (lookahead == 'a') ADVANCE(3398); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3380: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'c') ADVANCE(3387); - if (lookahead == 't') ADVANCE(3376); + if (lookahead == 'a') ADVANCE(3413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3381: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'd') ADVANCE(3305); + if (lookahead == 'c') ADVANCE(3391); + if (lookahead == 'o') ADVANCE(3400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3382: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'e') ADVANCE(3418); + if (lookahead == 'c') ADVANCE(3389); + if (lookahead == 't') ADVANCE(3378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3383: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'e') ADVANCE(3397); - if (lookahead == 'n') ADVANCE(3395); - if (lookahead == 'w') ADVANCE(3390); + if (lookahead == 'd') ADVANCE(3308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3384: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'e') ADVANCE(3381); + if (lookahead == 'e') ADVANCE(3420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3385: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'e') ADVANCE(3329); + if (lookahead == 'e') ADVANCE(3399); + if (lookahead == 'n') ADVANCE(3397); + if (lookahead == 'w') ADVANCE(3392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3386: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'e') ADVANCE(3402); + if (lookahead == 'e') ADVANCE(3383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3387: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'e') ADVANCE(3377); + if (lookahead == 'e') ADVANCE(3331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3388: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'g') ADVANCE(3410); + if (lookahead == 'e') ADVANCE(3404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3389: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'h') ADVANCE(3374); + if (lookahead == 'e') ADVANCE(3379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3390: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'h') ADVANCE(3393); + if (lookahead == 'g') ADVANCE(3412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3391: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'i') ADVANCE(3404); + if (lookahead == 'h') ADVANCE(3376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3392: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'i') ADVANCE(3401); + if (lookahead == 'h') ADVANCE(3395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3393: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'i') ADVANCE(3416); + if (lookahead == 'i') ADVANCE(3406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3394: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'k') ADVANCE(3391); + if (lookahead == 'i') ADVANCE(3403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3395: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'l') ADVANCE(3334); + if (lookahead == 'i') ADVANCE(3418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3396: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'l') ADVANCE(3299); + if (lookahead == 'k') ADVANCE(3393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3397: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'm') ADVANCE(3406); + if (lookahead == 'l') ADVANCE(3336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3398: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'n') ADVANCE(3380); + if (lookahead == 'l') ADVANCE(3301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3399: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'n') ADVANCE(3412); + if (lookahead == 'm') ADVANCE(3408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3400: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'n') ADVANCE(3314); + if (lookahead == 'n') ADVANCE(3382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3401: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'n') ADVANCE(3384); + if (lookahead == 'n') ADVANCE(3414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3402: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'n') ADVANCE(3415); + if (lookahead == 'n') ADVANCE(3316); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3403: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'o') ADVANCE(3417); + if (lookahead == 'n') ADVANCE(3386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3404: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'p') ADVANCE(3383); + if (lookahead == 'n') ADVANCE(3417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3405: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'p') ADVANCE(3319); + if (lookahead == 'o') ADVANCE(3419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3406: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'p') ADVANCE(3414); + if (lookahead == 'p') ADVANCE(3385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3407: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'p') ADVANCE(3378); + if (lookahead == 'p') ADVANCE(3321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3408: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'r') ADVANCE(3375); + if (lookahead == 'p') ADVANCE(3416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3409: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'r') ADVANCE(3304); + if (lookahead == 'p') ADVANCE(3380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3410: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'r') ADVANCE(3403); + if (lookahead == 'r') ADVANCE(3377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3411: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'r') ADVANCE(3386); + if (lookahead == 'r') ADVANCE(3306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3412: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 's') ADVANCE(3407); + if (lookahead == 'r') ADVANCE(3405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3413: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 't') ADVANCE(3388); + if (lookahead == 'r') ADVANCE(3388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3414: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 't') ADVANCE(3419); + if (lookahead == 's') ADVANCE(3409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3415: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 't') ADVANCE(3324); + if (lookahead == 't') ADVANCE(3390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3416: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 't') ADVANCE(3385); + if (lookahead == 't') ADVANCE(3421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3417: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'u') ADVANCE(3405); + if (lookahead == 't') ADVANCE(3326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3418: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'x') ADVANCE(3413); + if (lookahead == 't') ADVANCE(3387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3419: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (lookahead == 'y') ADVANCE(3339); + if (lookahead == 'u') ADVANCE(3407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3420: ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + if (lookahead == 'x') ADVANCE(3415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); END_STATE(); case 3421: + ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + if (lookahead == 'y') ADVANCE(3341); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= '[') || + lookahead == ']' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); + END_STATE(); + case 3422: + ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= '[') || + lookahead == ']' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3422); + END_STATE(); + case 3423: ACCEPT_TOKEN(anon_sym_skip); - if (lookahead == 'e') ADVANCE(3105); - if (lookahead == 'n') ADVANCE(3086); - if (lookahead == 'w') ADVANCE(3061); + if (lookahead == 'e') ADVANCE(3107); + if (lookahead == 'n') ADVANCE(3088); + if (lookahead == 'w') ADVANCE(3063); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3422: + case 3424: ACCEPT_TOKEN(anon_sym_skip); - if (lookahead == 'e') ADVANCE(482); - if (lookahead == 'n') ADVANCE(459); - if (lookahead == 'w') ADVANCE(418); + if (lookahead == 'e') ADVANCE(483); + if (lookahead == 'n') ADVANCE(456); + if (lookahead == 'w') ADVANCE(417); END_STATE(); - case 3423: + case 3425: ACCEPT_TOKEN(anon_sym_skip); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43895,10 +43923,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(2051); if (lookahead == 'w') ADVANCE(2035); END_STATE(); - case 3424: + case 3426: ACCEPT_TOKEN(anon_sym_end); END_STATE(); - case 3425: + case 3427: ACCEPT_TOKEN(anon_sym_end); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43906,18 +43934,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3426: + case 3428: ACCEPT_TOKEN(anon_sym_end); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3427: + case 3429: ACCEPT_TOKEN(anon_sym_minlines); END_STATE(); - case 3428: + case 3430: ACCEPT_TOKEN(anon_sym_minlines); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43925,18 +43953,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3429: + case 3431: ACCEPT_TOKEN(anon_sym_minlines); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3430: + case 3432: ACCEPT_TOKEN(anon_sym_maxlines); END_STATE(); - case 3431: + case 3433: ACCEPT_TOKEN(anon_sym_maxlines); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43944,19 +43972,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3432: + case 3434: ACCEPT_TOKEN(anon_sym_maxlines); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3200); END_STATE(); - case 3433: + case 3435: ACCEPT_TOKEN(aux_sym__syn_sync_lines_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3435); END_STATE(); - case 3434: + case 3436: ACCEPT_TOKEN(anon_sym_lines2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -43964,10 +43992,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2145); END_STATE(); - case 3435: + case 3437: ACCEPT_TOKEN(anon_sym_grouphere); END_STATE(); - case 3436: + case 3438: ACCEPT_TOKEN(anon_sym_groupthere); END_STATE(); default: @@ -46212,123 +46240,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 812, .external_lex_state = 2}, [2] = {.lex_state = 812, .external_lex_state = 3}, - [3] = {.lex_state = 812, .external_lex_state = 3}, + [3] = {.lex_state = 812, .external_lex_state = 4}, [4] = {.lex_state = 812, .external_lex_state = 4}, - [5] = {.lex_state = 812, .external_lex_state = 4}, - [6] = {.lex_state = 812, .external_lex_state = 3}, - [7] = {.lex_state = 812, .external_lex_state = 4}, + [5] = {.lex_state = 812, .external_lex_state = 3}, + [6] = {.lex_state = 812, .external_lex_state = 4}, + [7] = {.lex_state = 812, .external_lex_state = 3}, [8] = {.lex_state = 812, .external_lex_state = 3}, [9] = {.lex_state = 812, .external_lex_state = 4}, - [10] = {.lex_state = 812, .external_lex_state = 4}, - [11] = {.lex_state = 812, .external_lex_state = 3}, + [10] = {.lex_state = 812, .external_lex_state = 3}, + [11] = {.lex_state = 812, .external_lex_state = 4}, [12] = {.lex_state = 812, .external_lex_state = 3}, - [13] = {.lex_state = 812, .external_lex_state = 3}, - [14] = {.lex_state = 812, .external_lex_state = 3}, - [15] = {.lex_state = 812, .external_lex_state = 4}, - [16] = {.lex_state = 812, .external_lex_state = 3}, + [13] = {.lex_state = 812, .external_lex_state = 4}, + [14] = {.lex_state = 812, .external_lex_state = 4}, + [15] = {.lex_state = 812, .external_lex_state = 3}, + [16] = {.lex_state = 812, .external_lex_state = 4}, [17] = {.lex_state = 812, .external_lex_state = 4}, [18] = {.lex_state = 812, .external_lex_state = 5}, [19] = {.lex_state = 812, .external_lex_state = 6}, - [20] = {.lex_state = 812, .external_lex_state = 5}, - [21] = {.lex_state = 812, .external_lex_state = 7}, - [22] = {.lex_state = 102, .external_lex_state = 8}, - [23] = {.lex_state = 812, .external_lex_state = 2}, - [24] = {.lex_state = 812, .external_lex_state = 5}, - [25] = {.lex_state = 812, .external_lex_state = 5}, + [20] = {.lex_state = 812, .external_lex_state = 7}, + [21] = {.lex_state = 812, .external_lex_state = 5}, + [22] = {.lex_state = 812, .external_lex_state = 8}, + [23] = {.lex_state = 102, .external_lex_state = 9}, + [24] = {.lex_state = 812, .external_lex_state = 8}, + [25] = {.lex_state = 812, .external_lex_state = 7}, [26] = {.lex_state = 812, .external_lex_state = 7}, - [27] = {.lex_state = 812, .external_lex_state = 9}, - [28] = {.lex_state = 812, .external_lex_state = 5}, - [29] = {.lex_state = 102, .external_lex_state = 8}, - [30] = {.lex_state = 812, .external_lex_state = 6}, + [27] = {.lex_state = 102, .external_lex_state = 9}, + [28] = {.lex_state = 812, .external_lex_state = 2}, + [29] = {.lex_state = 812, .external_lex_state = 10}, + [30] = {.lex_state = 812, .external_lex_state = 7}, [31] = {.lex_state = 812, .external_lex_state = 10}, - [32] = {.lex_state = 812, .external_lex_state = 9}, + [32] = {.lex_state = 812, .external_lex_state = 7}, [33] = {.lex_state = 812, .external_lex_state = 7}, - [34] = {.lex_state = 812, .external_lex_state = 5}, - [35] = {.lex_state = 812, .external_lex_state = 5}, - [36] = {.lex_state = 812, .external_lex_state = 7}, - [37] = {.lex_state = 812, .external_lex_state = 10}, - [38] = {.lex_state = 812, .external_lex_state = 7}, - [39] = {.lex_state = 812, .external_lex_state = 5}, - [40] = {.lex_state = 812, .external_lex_state = 9}, - [41] = {.lex_state = 102, .external_lex_state = 8}, - [42] = {.lex_state = 812, .external_lex_state = 5}, - [43] = {.lex_state = 102, .external_lex_state = 8}, - [44] = {.lex_state = 812, .external_lex_state = 6}, - [45] = {.lex_state = 812, .external_lex_state = 6}, - [46] = {.lex_state = 812, .external_lex_state = 6}, - [47] = {.lex_state = 812, .external_lex_state = 5}, - [48] = {.lex_state = 812, .external_lex_state = 10}, - [49] = {.lex_state = 812, .external_lex_state = 2}, - [50] = {.lex_state = 812, .external_lex_state = 5}, - [51] = {.lex_state = 812, .external_lex_state = 5}, + [34] = {.lex_state = 102, .external_lex_state = 9}, + [35] = {.lex_state = 812, .external_lex_state = 6}, + [36] = {.lex_state = 812, .external_lex_state = 2}, + [37] = {.lex_state = 812, .external_lex_state = 7}, + [38] = {.lex_state = 812, .external_lex_state = 8}, + [39] = {.lex_state = 812, .external_lex_state = 6}, + [40] = {.lex_state = 812, .external_lex_state = 7}, + [41] = {.lex_state = 812, .external_lex_state = 7}, + [42] = {.lex_state = 812, .external_lex_state = 7}, + [43] = {.lex_state = 812, .external_lex_state = 8}, + [44] = {.lex_state = 812, .external_lex_state = 5}, + [45] = {.lex_state = 812, .external_lex_state = 7}, + [46] = {.lex_state = 812, .external_lex_state = 5}, + [47] = {.lex_state = 812, .external_lex_state = 10}, + [48] = {.lex_state = 812, .external_lex_state = 7}, + [49] = {.lex_state = 102, .external_lex_state = 9}, + [50] = {.lex_state = 812, .external_lex_state = 8}, + [51] = {.lex_state = 812, .external_lex_state = 7}, [52] = {.lex_state = 812, .external_lex_state = 5}, [53] = {.lex_state = 102, .external_lex_state = 2}, [54] = {.lex_state = 102, .external_lex_state = 2}, [55] = {.lex_state = 102, .external_lex_state = 2}, [56] = {.lex_state = 102, .external_lex_state = 2}, - [57] = {.lex_state = 812, .external_lex_state = 8}, - [58] = {.lex_state = 812, .external_lex_state = 8}, - [59] = {.lex_state = 103, .external_lex_state = 8}, - [60] = {.lex_state = 103, .external_lex_state = 8}, - [61] = {.lex_state = 812, .external_lex_state = 8}, - [62] = {.lex_state = 812, .external_lex_state = 8}, - [63] = {.lex_state = 812, .external_lex_state = 8}, - [64] = {.lex_state = 812, .external_lex_state = 8}, - [65] = {.lex_state = 812, .external_lex_state = 8}, - [66] = {.lex_state = 812, .external_lex_state = 8}, - [67] = {.lex_state = 812, .external_lex_state = 8}, - [68] = {.lex_state = 812, .external_lex_state = 8}, - [69] = {.lex_state = 812, .external_lex_state = 8}, - [70] = {.lex_state = 812, .external_lex_state = 8}, - [71] = {.lex_state = 812, .external_lex_state = 8}, - [72] = {.lex_state = 812, .external_lex_state = 8}, - [73] = {.lex_state = 812, .external_lex_state = 8}, - [74] = {.lex_state = 812, .external_lex_state = 8}, - [75] = {.lex_state = 812, .external_lex_state = 8}, - [76] = {.lex_state = 812, .external_lex_state = 8}, - [77] = {.lex_state = 812, .external_lex_state = 8}, - [78] = {.lex_state = 812, .external_lex_state = 8}, - [79] = {.lex_state = 812, .external_lex_state = 8}, - [80] = {.lex_state = 812, .external_lex_state = 8}, - [81] = {.lex_state = 812, .external_lex_state = 8}, - [82] = {.lex_state = 812, .external_lex_state = 8}, - [83] = {.lex_state = 812, .external_lex_state = 8}, - [84] = {.lex_state = 812, .external_lex_state = 8}, - [85] = {.lex_state = 812, .external_lex_state = 8}, - [86] = {.lex_state = 812, .external_lex_state = 8}, - [87] = {.lex_state = 812, .external_lex_state = 8}, - [88] = {.lex_state = 812, .external_lex_state = 8}, - [89] = {.lex_state = 812, .external_lex_state = 8}, - [90] = {.lex_state = 812, .external_lex_state = 8}, - [91] = {.lex_state = 812, .external_lex_state = 8}, - [92] = {.lex_state = 812, .external_lex_state = 8}, - [93] = {.lex_state = 812, .external_lex_state = 8}, - [94] = {.lex_state = 102, .external_lex_state = 8}, - [95] = {.lex_state = 102, .external_lex_state = 8}, - [96] = {.lex_state = 102, .external_lex_state = 8}, - [97] = {.lex_state = 102, .external_lex_state = 8}, + [57] = {.lex_state = 812, .external_lex_state = 9}, + [58] = {.lex_state = 812, .external_lex_state = 9}, + [59] = {.lex_state = 103, .external_lex_state = 9}, + [60] = {.lex_state = 103, .external_lex_state = 9}, + [61] = {.lex_state = 812, .external_lex_state = 9}, + [62] = {.lex_state = 812, .external_lex_state = 9}, + [63] = {.lex_state = 812, .external_lex_state = 9}, + [64] = {.lex_state = 812, .external_lex_state = 9}, + [65] = {.lex_state = 812, .external_lex_state = 9}, + [66] = {.lex_state = 812, .external_lex_state = 9}, + [67] = {.lex_state = 812, .external_lex_state = 9}, + [68] = {.lex_state = 812, .external_lex_state = 9}, + [69] = {.lex_state = 812, .external_lex_state = 9}, + [70] = {.lex_state = 812, .external_lex_state = 9}, + [71] = {.lex_state = 812, .external_lex_state = 9}, + [72] = {.lex_state = 812, .external_lex_state = 9}, + [73] = {.lex_state = 812, .external_lex_state = 9}, + [74] = {.lex_state = 812, .external_lex_state = 9}, + [75] = {.lex_state = 812, .external_lex_state = 9}, + [76] = {.lex_state = 812, .external_lex_state = 9}, + [77] = {.lex_state = 812, .external_lex_state = 9}, + [78] = {.lex_state = 812, .external_lex_state = 9}, + [79] = {.lex_state = 812, .external_lex_state = 9}, + [80] = {.lex_state = 812, .external_lex_state = 9}, + [81] = {.lex_state = 812, .external_lex_state = 9}, + [82] = {.lex_state = 812, .external_lex_state = 9}, + [83] = {.lex_state = 812, .external_lex_state = 9}, + [84] = {.lex_state = 812, .external_lex_state = 9}, + [85] = {.lex_state = 812, .external_lex_state = 9}, + [86] = {.lex_state = 812, .external_lex_state = 9}, + [87] = {.lex_state = 812, .external_lex_state = 9}, + [88] = {.lex_state = 812, .external_lex_state = 9}, + [89] = {.lex_state = 812, .external_lex_state = 9}, + [90] = {.lex_state = 812, .external_lex_state = 9}, + [91] = {.lex_state = 812, .external_lex_state = 9}, + [92] = {.lex_state = 812, .external_lex_state = 9}, + [93] = {.lex_state = 812, .external_lex_state = 9}, + [94] = {.lex_state = 102, .external_lex_state = 9}, + [95] = {.lex_state = 102, .external_lex_state = 9}, + [96] = {.lex_state = 102, .external_lex_state = 9}, + [97] = {.lex_state = 102, .external_lex_state = 9}, [98] = {.lex_state = 102, .external_lex_state = 2}, [99] = {.lex_state = 102, .external_lex_state = 2}, [100] = {.lex_state = 102, .external_lex_state = 2}, - [101] = {.lex_state = 812, .external_lex_state = 4}, + [101] = {.lex_state = 102, .external_lex_state = 2}, [102] = {.lex_state = 812, .external_lex_state = 4}, [103] = {.lex_state = 812, .external_lex_state = 3}, - [104] = {.lex_state = 102, .external_lex_state = 2}, + [104] = {.lex_state = 812, .external_lex_state = 4}, [105] = {.lex_state = 812, .external_lex_state = 3}, - [106] = {.lex_state = 812, .external_lex_state = 9}, - [107] = {.lex_state = 812, .external_lex_state = 5}, - [108] = {.lex_state = 812, .external_lex_state = 9}, + [106] = {.lex_state = 812, .external_lex_state = 5}, + [107] = {.lex_state = 812, .external_lex_state = 8}, + [108] = {.lex_state = 812, .external_lex_state = 2}, [109] = {.lex_state = 812, .external_lex_state = 7}, - [110] = {.lex_state = 812, .external_lex_state = 7}, - [111] = {.lex_state = 812, .external_lex_state = 2}, - [112] = {.lex_state = 812, .external_lex_state = 2}, - [113] = {.lex_state = 812, .external_lex_state = 6}, + [110] = {.lex_state = 812, .external_lex_state = 2}, + [111] = {.lex_state = 812, .external_lex_state = 7}, + [112] = {.lex_state = 812, .external_lex_state = 8}, + [113] = {.lex_state = 812, .external_lex_state = 10}, [114] = {.lex_state = 812, .external_lex_state = 6}, - [115] = {.lex_state = 812, .external_lex_state = 10}, - [116] = {.lex_state = 812, .external_lex_state = 10}, - [117] = {.lex_state = 812, .external_lex_state = 5}, - [118] = {.lex_state = 812, .external_lex_state = 8}, - [119] = {.lex_state = 812, .external_lex_state = 8}, + [115] = {.lex_state = 812, .external_lex_state = 6}, + [116] = {.lex_state = 812, .external_lex_state = 5}, + [117] = {.lex_state = 812, .external_lex_state = 10}, + [118] = {.lex_state = 812, .external_lex_state = 9}, + [119] = {.lex_state = 812, .external_lex_state = 9}, [120] = {.lex_state = 59, .external_lex_state = 11}, [121] = {.lex_state = 59, .external_lex_state = 11}, [122] = {.lex_state = 812, .external_lex_state = 12}, @@ -46340,8 +46368,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [128] = {.lex_state = 31, .external_lex_state = 12}, [129] = {.lex_state = 213, .external_lex_state = 12}, [130] = {.lex_state = 216, .external_lex_state = 12}, - [131] = {.lex_state = 187, .external_lex_state = 13}, - [132] = {.lex_state = 213, .external_lex_state = 12}, + [131] = {.lex_state = 213, .external_lex_state = 12}, + [132] = {.lex_state = 187, .external_lex_state = 13}, [133] = {.lex_state = 216, .external_lex_state = 12}, [134] = {.lex_state = 187, .external_lex_state = 13}, [135] = {.lex_state = 63, .external_lex_state = 11}, @@ -46351,76 +46379,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [139] = {.lex_state = 59, .external_lex_state = 12}, [140] = {.lex_state = 63, .external_lex_state = 11}, [141] = {.lex_state = 63, .external_lex_state = 11}, - [142] = {.lex_state = 63, .external_lex_state = 11}, - [143] = {.lex_state = 63, .external_lex_state = 11}, + [142] = {.lex_state = 68, .external_lex_state = 11}, + [143] = {.lex_state = 68, .external_lex_state = 11}, [144] = {.lex_state = 63, .external_lex_state = 11}, [145] = {.lex_state = 63, .external_lex_state = 11}, - [146] = {.lex_state = 63, .external_lex_state = 11}, + [146] = {.lex_state = 90, .external_lex_state = 15}, [147] = {.lex_state = 63, .external_lex_state = 11}, [148] = {.lex_state = 63, .external_lex_state = 11}, [149] = {.lex_state = 63, .external_lex_state = 11}, - [150] = {.lex_state = 63, .external_lex_state = 11}, + [150] = {.lex_state = 90, .external_lex_state = 15}, [151] = {.lex_state = 63, .external_lex_state = 11}, [152] = {.lex_state = 63, .external_lex_state = 11}, [153] = {.lex_state = 63, .external_lex_state = 11}, - [154] = {.lex_state = 68, .external_lex_state = 11}, - [155] = {.lex_state = 68, .external_lex_state = 11}, - [156] = {.lex_state = 68, .external_lex_state = 11}, - [157] = {.lex_state = 90, .external_lex_state = 15}, + [154] = {.lex_state = 63, .external_lex_state = 11}, + [155] = {.lex_state = 90, .external_lex_state = 15}, + [156] = {.lex_state = 63, .external_lex_state = 11}, + [157] = {.lex_state = 63, .external_lex_state = 11}, [158] = {.lex_state = 63, .external_lex_state = 11}, - [159] = {.lex_state = 90, .external_lex_state = 15}, + [159] = {.lex_state = 63, .external_lex_state = 11}, [160] = {.lex_state = 63, .external_lex_state = 11}, [161] = {.lex_state = 63, .external_lex_state = 11}, - [162] = {.lex_state = 63, .external_lex_state = 11}, + [162] = {.lex_state = 68, .external_lex_state = 11}, [163] = {.lex_state = 63, .external_lex_state = 11}, - [164] = {.lex_state = 90, .external_lex_state = 15}, + [164] = {.lex_state = 63, .external_lex_state = 11}, [165] = {.lex_state = 63, .external_lex_state = 11}, - [166] = {.lex_state = 63, .external_lex_state = 14}, - [167] = {.lex_state = 69, .external_lex_state = 14}, - [168] = {.lex_state = 91, .external_lex_state = 16}, - [169] = {.lex_state = 63, .external_lex_state = 14}, - [170] = {.lex_state = 30, .external_lex_state = 11}, - [171] = {.lex_state = 63, .external_lex_state = 11}, - [172] = {.lex_state = 63, .external_lex_state = 11}, - [173] = {.lex_state = 91, .external_lex_state = 16}, - [174] = {.lex_state = 63, .external_lex_state = 14}, - [175] = {.lex_state = 63, .external_lex_state = 14}, - [176] = {.lex_state = 30, .external_lex_state = 11}, - [177] = {.lex_state = 63, .external_lex_state = 11}, - [178] = {.lex_state = 63, .external_lex_state = 14}, - [179] = {.lex_state = 30, .external_lex_state = 11}, - [180] = {.lex_state = 63, .external_lex_state = 11}, - [181] = {.lex_state = 63, .external_lex_state = 11}, - [182] = {.lex_state = 63, .external_lex_state = 14}, - [183] = {.lex_state = 63, .external_lex_state = 14}, + [166] = {.lex_state = 69, .external_lex_state = 14}, + [167] = {.lex_state = 91, .external_lex_state = 16}, + [168] = {.lex_state = 63, .external_lex_state = 14}, + [169] = {.lex_state = 30, .external_lex_state = 11}, + [170] = {.lex_state = 63, .external_lex_state = 11}, + [171] = {.lex_state = 63, .external_lex_state = 14}, + [172] = {.lex_state = 91, .external_lex_state = 16}, + [173] = {.lex_state = 63, .external_lex_state = 11}, + [174] = {.lex_state = 69, .external_lex_state = 14}, + [175] = {.lex_state = 63, .external_lex_state = 11}, + [176] = {.lex_state = 63, .external_lex_state = 14}, + [177] = {.lex_state = 91, .external_lex_state = 16}, + [178] = {.lex_state = 63, .external_lex_state = 11}, + [179] = {.lex_state = 63, .external_lex_state = 14}, + [180] = {.lex_state = 63, .external_lex_state = 14}, + [181] = {.lex_state = 30, .external_lex_state = 11}, + [182] = {.lex_state = 30, .external_lex_state = 11}, + [183] = {.lex_state = 69, .external_lex_state = 14}, [184] = {.lex_state = 63, .external_lex_state = 14}, - [185] = {.lex_state = 63, .external_lex_state = 11}, + [185] = {.lex_state = 30, .external_lex_state = 11}, [186] = {.lex_state = 63, .external_lex_state = 14}, - [187] = {.lex_state = 30, .external_lex_state = 11}, + [187] = {.lex_state = 63, .external_lex_state = 14}, [188] = {.lex_state = 63, .external_lex_state = 14}, [189] = {.lex_state = 63, .external_lex_state = 14}, [190] = {.lex_state = 63, .external_lex_state = 14}, - [191] = {.lex_state = 91, .external_lex_state = 16}, + [191] = {.lex_state = 63, .external_lex_state = 11}, [192] = {.lex_state = 63, .external_lex_state = 11}, - [193] = {.lex_state = 69, .external_lex_state = 14}, - [194] = {.lex_state = 69, .external_lex_state = 14}, + [193] = {.lex_state = 63, .external_lex_state = 11}, + [194] = {.lex_state = 63, .external_lex_state = 14}, [195] = {.lex_state = 63, .external_lex_state = 11}, [196] = {.lex_state = 63, .external_lex_state = 11}, [197] = {.lex_state = 63, .external_lex_state = 11}, [198] = {.lex_state = 63, .external_lex_state = 11}, - [199] = {.lex_state = 68, .external_lex_state = 11}, + [199] = {.lex_state = 63, .external_lex_state = 14}, [200] = {.lex_state = 63, .external_lex_state = 11}, - [201] = {.lex_state = 63, .external_lex_state = 11}, - [202] = {.lex_state = 63, .external_lex_state = 14}, + [201] = {.lex_state = 68, .external_lex_state = 11}, + [202] = {.lex_state = 63, .external_lex_state = 11}, [203] = {.lex_state = 63, .external_lex_state = 11}, - [204] = {.lex_state = 90, .external_lex_state = 15}, + [204] = {.lex_state = 68, .external_lex_state = 11}, [205] = {.lex_state = 63, .external_lex_state = 11}, - [206] = {.lex_state = 68, .external_lex_state = 11}, - [207] = {.lex_state = 66, .external_lex_state = 11}, + [206] = {.lex_state = 63, .external_lex_state = 11}, + [207] = {.lex_state = 63, .external_lex_state = 11}, [208] = {.lex_state = 63, .external_lex_state = 11}, [209] = {.lex_state = 63, .external_lex_state = 11}, - [210] = {.lex_state = 63, .external_lex_state = 11}, - [211] = {.lex_state = 63, .external_lex_state = 11}, + [210] = {.lex_state = 66, .external_lex_state = 11}, + [211] = {.lex_state = 90, .external_lex_state = 15}, [212] = {.lex_state = 63, .external_lex_state = 11}, [213] = {.lex_state = 63, .external_lex_state = 11}, [214] = {.lex_state = 63, .external_lex_state = 11}, @@ -46431,16 +46459,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [219] = {.lex_state = 63, .external_lex_state = 11}, [220] = {.lex_state = 63, .external_lex_state = 11}, [221] = {.lex_state = 63, .external_lex_state = 11}, - [222] = {.lex_state = 63, .external_lex_state = 11}, - [223] = {.lex_state = 91, .external_lex_state = 16}, - [224] = {.lex_state = 91, .external_lex_state = 16}, + [222] = {.lex_state = 91, .external_lex_state = 16}, + [223] = {.lex_state = 63, .external_lex_state = 11}, + [224] = {.lex_state = 63, .external_lex_state = 11}, [225] = {.lex_state = 63, .external_lex_state = 11}, - [226] = {.lex_state = 69, .external_lex_state = 14}, + [226] = {.lex_state = 63, .external_lex_state = 11}, [227] = {.lex_state = 63, .external_lex_state = 11}, - [228] = {.lex_state = 63, .external_lex_state = 11}, + [228] = {.lex_state = 91, .external_lex_state = 16}, [229] = {.lex_state = 63, .external_lex_state = 11}, [230] = {.lex_state = 63, .external_lex_state = 11}, - [231] = {.lex_state = 63, .external_lex_state = 11}, + [231] = {.lex_state = 67, .external_lex_state = 14}, [232] = {.lex_state = 63, .external_lex_state = 11}, [233] = {.lex_state = 63, .external_lex_state = 11}, [234] = {.lex_state = 63, .external_lex_state = 11}, @@ -46453,11 +46481,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [241] = {.lex_state = 63, .external_lex_state = 11}, [242] = {.lex_state = 63, .external_lex_state = 11}, [243] = {.lex_state = 63, .external_lex_state = 11}, - [244] = {.lex_state = 63, .external_lex_state = 11}, - [245] = {.lex_state = 63, .external_lex_state = 11}, + [244] = {.lex_state = 69, .external_lex_state = 14}, + [245] = {.lex_state = 69, .external_lex_state = 14}, [246] = {.lex_state = 63, .external_lex_state = 11}, - [247] = {.lex_state = 69, .external_lex_state = 14}, - [248] = {.lex_state = 67, .external_lex_state = 14}, + [247] = {.lex_state = 63, .external_lex_state = 11}, + [248] = {.lex_state = 63, .external_lex_state = 11}, [249] = {.lex_state = 63, .external_lex_state = 11}, [250] = {.lex_state = 63, .external_lex_state = 11}, [251] = {.lex_state = 63, .external_lex_state = 11}, @@ -46476,7 +46504,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 63, .external_lex_state = 11}, [265] = {.lex_state = 63, .external_lex_state = 11}, [266] = {.lex_state = 63, .external_lex_state = 11}, - [267] = {.lex_state = 63, .external_lex_state = 11}, + [267] = {.lex_state = 64, .external_lex_state = 11}, [268] = {.lex_state = 63, .external_lex_state = 11}, [269] = {.lex_state = 63, .external_lex_state = 11}, [270] = {.lex_state = 63, .external_lex_state = 11}, @@ -46496,7 +46524,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [284] = {.lex_state = 63, .external_lex_state = 11}, [285] = {.lex_state = 63, .external_lex_state = 11}, [286] = {.lex_state = 63, .external_lex_state = 11}, - [287] = {.lex_state = 63, .external_lex_state = 11}, + [287] = {.lex_state = 86, .external_lex_state = 15}, [288] = {.lex_state = 63, .external_lex_state = 11}, [289] = {.lex_state = 63, .external_lex_state = 11}, [290] = {.lex_state = 63, .external_lex_state = 11}, @@ -46509,7 +46537,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [297] = {.lex_state = 63, .external_lex_state = 11}, [298] = {.lex_state = 63, .external_lex_state = 11}, [299] = {.lex_state = 63, .external_lex_state = 11}, - [300] = {.lex_state = 64, .external_lex_state = 11}, + [300] = {.lex_state = 63, .external_lex_state = 11}, [301] = {.lex_state = 63, .external_lex_state = 11}, [302] = {.lex_state = 63, .external_lex_state = 11}, [303] = {.lex_state = 63, .external_lex_state = 11}, @@ -46520,21 +46548,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [308] = {.lex_state = 63, .external_lex_state = 11}, [309] = {.lex_state = 63, .external_lex_state = 11}, [310] = {.lex_state = 63, .external_lex_state = 11}, - [311] = {.lex_state = 64, .external_lex_state = 11}, + [311] = {.lex_state = 63, .external_lex_state = 11}, [312] = {.lex_state = 63, .external_lex_state = 11}, [313] = {.lex_state = 63, .external_lex_state = 11}, - [314] = {.lex_state = 64, .external_lex_state = 11}, + [314] = {.lex_state = 63, .external_lex_state = 11}, [315] = {.lex_state = 63, .external_lex_state = 11}, [316] = {.lex_state = 63, .external_lex_state = 11}, [317] = {.lex_state = 63, .external_lex_state = 11}, - [318] = {.lex_state = 64, .external_lex_state = 11}, + [318] = {.lex_state = 63, .external_lex_state = 11}, [319] = {.lex_state = 63, .external_lex_state = 11}, [320] = {.lex_state = 64, .external_lex_state = 11}, [321] = {.lex_state = 63, .external_lex_state = 11}, [322] = {.lex_state = 63, .external_lex_state = 11}, - [323] = {.lex_state = 63, .external_lex_state = 11}, + [323] = {.lex_state = 64, .external_lex_state = 11}, [324] = {.lex_state = 63, .external_lex_state = 11}, - [325] = {.lex_state = 63, .external_lex_state = 11}, + [325] = {.lex_state = 64, .external_lex_state = 11}, [326] = {.lex_state = 63, .external_lex_state = 11}, [327] = {.lex_state = 64, .external_lex_state = 11}, [328] = {.lex_state = 63, .external_lex_state = 11}, @@ -46543,7 +46571,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [331] = {.lex_state = 63, .external_lex_state = 11}, [332] = {.lex_state = 63, .external_lex_state = 11}, [333] = {.lex_state = 63, .external_lex_state = 11}, - [334] = {.lex_state = 64, .external_lex_state = 11}, + [334] = {.lex_state = 63, .external_lex_state = 11}, [335] = {.lex_state = 63, .external_lex_state = 11}, [336] = {.lex_state = 63, .external_lex_state = 11}, [337] = {.lex_state = 63, .external_lex_state = 11}, @@ -46560,9 +46588,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [348] = {.lex_state = 63, .external_lex_state = 11}, [349] = {.lex_state = 63, .external_lex_state = 11}, [350] = {.lex_state = 63, .external_lex_state = 11}, - [351] = {.lex_state = 63, .external_lex_state = 11}, + [351] = {.lex_state = 64, .external_lex_state = 11}, [352] = {.lex_state = 63, .external_lex_state = 11}, - [353] = {.lex_state = 86, .external_lex_state = 15}, + [353] = {.lex_state = 63, .external_lex_state = 11}, [354] = {.lex_state = 63, .external_lex_state = 11}, [355] = {.lex_state = 63, .external_lex_state = 11}, [356] = {.lex_state = 63, .external_lex_state = 11}, @@ -46574,46 +46602,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [362] = {.lex_state = 63, .external_lex_state = 11}, [363] = {.lex_state = 63, .external_lex_state = 11}, [364] = {.lex_state = 63, .external_lex_state = 11}, - [365] = {.lex_state = 63, .external_lex_state = 11}, - [366] = {.lex_state = 64, .external_lex_state = 11}, - [367] = {.lex_state = 63, .external_lex_state = 11}, - [368] = {.lex_state = 64, .external_lex_state = 11}, + [365] = {.lex_state = 64, .external_lex_state = 11}, + [366] = {.lex_state = 63, .external_lex_state = 11}, + [367] = {.lex_state = 64, .external_lex_state = 11}, + [368] = {.lex_state = 63, .external_lex_state = 11}, [369] = {.lex_state = 64, .external_lex_state = 11}, [370] = {.lex_state = 64, .external_lex_state = 11}, - [371] = {.lex_state = 64, .external_lex_state = 11}, + [371] = {.lex_state = 63, .external_lex_state = 11}, [372] = {.lex_state = 64, .external_lex_state = 11}, - [373] = {.lex_state = 63, .external_lex_state = 11}, + [373] = {.lex_state = 64, .external_lex_state = 11}, [374] = {.lex_state = 63, .external_lex_state = 11}, - [375] = {.lex_state = 63, .external_lex_state = 11}, + [375] = {.lex_state = 64, .external_lex_state = 11}, [376] = {.lex_state = 63, .external_lex_state = 11}, [377] = {.lex_state = 63, .external_lex_state = 11}, [378] = {.lex_state = 63, .external_lex_state = 11}, [379] = {.lex_state = 63, .external_lex_state = 11}, - [380] = {.lex_state = 64, .external_lex_state = 11}, + [380] = {.lex_state = 63, .external_lex_state = 11}, [381] = {.lex_state = 63, .external_lex_state = 11}, - [382] = {.lex_state = 64, .external_lex_state = 11}, - [383] = {.lex_state = 63, .external_lex_state = 11}, + [382] = {.lex_state = 63, .external_lex_state = 11}, + [383] = {.lex_state = 64, .external_lex_state = 11}, [384] = {.lex_state = 64, .external_lex_state = 11}, - [385] = {.lex_state = 64, .external_lex_state = 11}, - [386] = {.lex_state = 63, .external_lex_state = 11}, + [385] = {.lex_state = 63, .external_lex_state = 11}, + [386] = {.lex_state = 64, .external_lex_state = 11}, [387] = {.lex_state = 63, .external_lex_state = 11}, [388] = {.lex_state = 63, .external_lex_state = 11}, [389] = {.lex_state = 63, .external_lex_state = 11}, [390] = {.lex_state = 63, .external_lex_state = 11}, - [391] = {.lex_state = 64, .external_lex_state = 11}, + [391] = {.lex_state = 63, .external_lex_state = 11}, [392] = {.lex_state = 63, .external_lex_state = 11}, - [393] = {.lex_state = 64, .external_lex_state = 11}, + [393] = {.lex_state = 63, .external_lex_state = 11}, [394] = {.lex_state = 64, .external_lex_state = 11}, - [395] = {.lex_state = 63, .external_lex_state = 11}, + [395] = {.lex_state = 64, .external_lex_state = 11}, [396] = {.lex_state = 63, .external_lex_state = 11}, [397] = {.lex_state = 63, .external_lex_state = 11}, [398] = {.lex_state = 63, .external_lex_state = 11}, [399] = {.lex_state = 63, .external_lex_state = 11}, [400] = {.lex_state = 63, .external_lex_state = 11}, [401] = {.lex_state = 63, .external_lex_state = 11}, - [402] = {.lex_state = 64, .external_lex_state = 11}, + [402] = {.lex_state = 63, .external_lex_state = 11}, [403] = {.lex_state = 64, .external_lex_state = 11}, - [404] = {.lex_state = 63, .external_lex_state = 11}, + [404] = {.lex_state = 64, .external_lex_state = 11}, [405] = {.lex_state = 63, .external_lex_state = 11}, [406] = {.lex_state = 63, .external_lex_state = 11}, [407] = {.lex_state = 63, .external_lex_state = 11}, @@ -46622,21 +46650,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [410] = {.lex_state = 63, .external_lex_state = 11}, [411] = {.lex_state = 64, .external_lex_state = 11}, [412] = {.lex_state = 63, .external_lex_state = 11}, - [413] = {.lex_state = 63, .external_lex_state = 11}, + [413] = {.lex_state = 64, .external_lex_state = 11}, [414] = {.lex_state = 64, .external_lex_state = 11}, [415] = {.lex_state = 64, .external_lex_state = 11}, - [416] = {.lex_state = 64, .external_lex_state = 11}, + [416] = {.lex_state = 63, .external_lex_state = 11}, [417] = {.lex_state = 64, .external_lex_state = 11}, [418] = {.lex_state = 63, .external_lex_state = 11}, - [419] = {.lex_state = 64, .external_lex_state = 11}, - [420] = {.lex_state = 64, .external_lex_state = 11}, + [419] = {.lex_state = 63, .external_lex_state = 11}, + [420] = {.lex_state = 63, .external_lex_state = 11}, [421] = {.lex_state = 64, .external_lex_state = 11}, - [422] = {.lex_state = 63, .external_lex_state = 11}, - [423] = {.lex_state = 63, .external_lex_state = 11}, - [424] = {.lex_state = 64, .external_lex_state = 11}, + [422] = {.lex_state = 64, .external_lex_state = 11}, + [423] = {.lex_state = 64, .external_lex_state = 11}, + [424] = {.lex_state = 63, .external_lex_state = 11}, [425] = {.lex_state = 64, .external_lex_state = 11}, [426] = {.lex_state = 63, .external_lex_state = 11}, - [427] = {.lex_state = 63, .external_lex_state = 11}, + [427] = {.lex_state = 64, .external_lex_state = 11}, [428] = {.lex_state = 63, .external_lex_state = 11}, [429] = {.lex_state = 64, .external_lex_state = 11}, [430] = {.lex_state = 64, .external_lex_state = 11}, @@ -46648,26 +46676,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [436] = {.lex_state = 63, .external_lex_state = 11}, [437] = {.lex_state = 64, .external_lex_state = 11}, [438] = {.lex_state = 63, .external_lex_state = 11}, - [439] = {.lex_state = 64, .external_lex_state = 11}, - [440] = {.lex_state = 63, .external_lex_state = 11}, + [439] = {.lex_state = 63, .external_lex_state = 11}, + [440] = {.lex_state = 64, .external_lex_state = 11}, [441] = {.lex_state = 64, .external_lex_state = 11}, - [442] = {.lex_state = 63, .external_lex_state = 11}, + [442] = {.lex_state = 64, .external_lex_state = 11}, [443] = {.lex_state = 63, .external_lex_state = 11}, - [444] = {.lex_state = 64, .external_lex_state = 11}, + [444] = {.lex_state = 63, .external_lex_state = 11}, [445] = {.lex_state = 64, .external_lex_state = 11}, [446] = {.lex_state = 64, .external_lex_state = 11}, [447] = {.lex_state = 64, .external_lex_state = 11}, - [448] = {.lex_state = 63, .external_lex_state = 11}, - [449] = {.lex_state = 64, .external_lex_state = 11}, + [448] = {.lex_state = 64, .external_lex_state = 11}, + [449] = {.lex_state = 63, .external_lex_state = 11}, [450] = {.lex_state = 64, .external_lex_state = 11}, [451] = {.lex_state = 64, .external_lex_state = 11}, [452] = {.lex_state = 64, .external_lex_state = 11}, - [453] = {.lex_state = 65, .external_lex_state = 14}, - [454] = {.lex_state = 65, .external_lex_state = 14}, - [455] = {.lex_state = 65, .external_lex_state = 14}, - [456] = {.lex_state = 65, .external_lex_state = 14}, - [457] = {.lex_state = 65, .external_lex_state = 14}, - [458] = {.lex_state = 65, .external_lex_state = 14}, + [453] = {.lex_state = 64, .external_lex_state = 11}, + [454] = {.lex_state = 64, .external_lex_state = 11}, + [455] = {.lex_state = 64, .external_lex_state = 11}, + [456] = {.lex_state = 63, .external_lex_state = 11}, + [457] = {.lex_state = 63, .external_lex_state = 11}, + [458] = {.lex_state = 63, .external_lex_state = 11}, [459] = {.lex_state = 65, .external_lex_state = 14}, [460] = {.lex_state = 65, .external_lex_state = 14}, [461] = {.lex_state = 65, .external_lex_state = 14}, @@ -46691,7 +46719,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [479] = {.lex_state = 65, .external_lex_state = 14}, [480] = {.lex_state = 65, .external_lex_state = 14}, [481] = {.lex_state = 65, .external_lex_state = 14}, - [482] = {.lex_state = 88, .external_lex_state = 16}, + [482] = {.lex_state = 65, .external_lex_state = 14}, [483] = {.lex_state = 65, .external_lex_state = 14}, [484] = {.lex_state = 65, .external_lex_state = 14}, [485] = {.lex_state = 65, .external_lex_state = 14}, @@ -46700,7 +46728,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [488] = {.lex_state = 65, .external_lex_state = 14}, [489] = {.lex_state = 65, .external_lex_state = 14}, [490] = {.lex_state = 65, .external_lex_state = 14}, - [491] = {.lex_state = 65, .external_lex_state = 14}, + [491] = {.lex_state = 88, .external_lex_state = 16}, [492] = {.lex_state = 65, .external_lex_state = 14}, [493] = {.lex_state = 65, .external_lex_state = 14}, [494] = {.lex_state = 65, .external_lex_state = 14}, @@ -46712,202 +46740,202 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 65, .external_lex_state = 14}, [501] = {.lex_state = 65, .external_lex_state = 14}, [502] = {.lex_state = 65, .external_lex_state = 14}, - [503] = {.lex_state = 397, .external_lex_state = 12}, - [504] = {.lex_state = 94, .external_lex_state = 12}, - [505] = {.lex_state = 94, .external_lex_state = 12}, - [506] = {.lex_state = 94, .external_lex_state = 12}, - [507] = {.lex_state = 94, .external_lex_state = 12}, - [508] = {.lex_state = 87, .external_lex_state = 12}, - [509] = {.lex_state = 87, .external_lex_state = 12}, - [510] = {.lex_state = 94, .external_lex_state = 12}, - [511] = {.lex_state = 196, .external_lex_state = 12}, - [512] = {.lex_state = 87, .external_lex_state = 12}, - [513] = {.lex_state = 87, .external_lex_state = 12}, - [514] = {.lex_state = 92, .external_lex_state = 12}, - [515] = {.lex_state = 92, .external_lex_state = 12}, - [516] = {.lex_state = 196, .external_lex_state = 13}, - [517] = {.lex_state = 92, .external_lex_state = 12}, - [518] = {.lex_state = 77, .external_lex_state = 12}, + [503] = {.lex_state = 65, .external_lex_state = 14}, + [504] = {.lex_state = 65, .external_lex_state = 14}, + [505] = {.lex_state = 65, .external_lex_state = 14}, + [506] = {.lex_state = 65, .external_lex_state = 14}, + [507] = {.lex_state = 65, .external_lex_state = 14}, + [508] = {.lex_state = 65, .external_lex_state = 14}, + [509] = {.lex_state = 65, .external_lex_state = 14}, + [510] = {.lex_state = 398, .external_lex_state = 12}, + [511] = {.lex_state = 94, .external_lex_state = 12}, + [512] = {.lex_state = 94, .external_lex_state = 12}, + [513] = {.lex_state = 94, .external_lex_state = 12}, + [514] = {.lex_state = 94, .external_lex_state = 12}, + [515] = {.lex_state = 94, .external_lex_state = 12}, + [516] = {.lex_state = 87, .external_lex_state = 12}, + [517] = {.lex_state = 87, .external_lex_state = 12}, + [518] = {.lex_state = 87, .external_lex_state = 12}, [519] = {.lex_state = 87, .external_lex_state = 12}, - [520] = {.lex_state = 87, .external_lex_state = 12}, - [521] = {.lex_state = 87, .external_lex_state = 12}, - [522] = {.lex_state = 77, .external_lex_state = 12}, - [523] = {.lex_state = 87, .external_lex_state = 12}, + [520] = {.lex_state = 92, .external_lex_state = 12}, + [521] = {.lex_state = 196, .external_lex_state = 12}, + [522] = {.lex_state = 92, .external_lex_state = 12}, + [523] = {.lex_state = 92, .external_lex_state = 12}, [524] = {.lex_state = 87, .external_lex_state = 12}, [525] = {.lex_state = 87, .external_lex_state = 12}, [526] = {.lex_state = 87, .external_lex_state = 12}, - [527] = {.lex_state = 80, .external_lex_state = 15}, - [528] = {.lex_state = 87, .external_lex_state = 12}, + [527] = {.lex_state = 196, .external_lex_state = 13}, + [528] = {.lex_state = 80, .external_lex_state = 15}, [529] = {.lex_state = 87, .external_lex_state = 12}, [530] = {.lex_state = 87, .external_lex_state = 12}, - [531] = {.lex_state = 77, .external_lex_state = 12}, - [532] = {.lex_state = 87, .external_lex_state = 12}, + [531] = {.lex_state = 87, .external_lex_state = 12}, + [532] = {.lex_state = 77, .external_lex_state = 12}, [533] = {.lex_state = 87, .external_lex_state = 12}, [534] = {.lex_state = 87, .external_lex_state = 12}, - [535] = {.lex_state = 74, .external_lex_state = 12}, - [536] = {.lex_state = 84, .external_lex_state = 16}, - [537] = {.lex_state = 92, .external_lex_state = 12}, - [538] = {.lex_state = 92, .external_lex_state = 12}, - [539] = {.lex_state = 197, .external_lex_state = 12}, - [540] = {.lex_state = 93, .external_lex_state = 12}, - [541] = {.lex_state = 79, .external_lex_state = 15}, - [542] = {.lex_state = 198, .external_lex_state = 12}, - [543] = {.lex_state = 93, .external_lex_state = 12}, - [544] = {.lex_state = 79, .external_lex_state = 15}, - [545] = {.lex_state = 93, .external_lex_state = 12}, - [546] = {.lex_state = 77, .external_lex_state = 12}, - [547] = {.lex_state = 77, .external_lex_state = 12}, - [548] = {.lex_state = 77, .external_lex_state = 12}, - [549] = {.lex_state = 77, .external_lex_state = 12}, - [550] = {.lex_state = 77, .external_lex_state = 12}, + [535] = {.lex_state = 77, .external_lex_state = 12}, + [536] = {.lex_state = 87, .external_lex_state = 12}, + [537] = {.lex_state = 87, .external_lex_state = 12}, + [538] = {.lex_state = 77, .external_lex_state = 12}, + [539] = {.lex_state = 87, .external_lex_state = 12}, + [540] = {.lex_state = 87, .external_lex_state = 12}, + [541] = {.lex_state = 87, .external_lex_state = 12}, + [542] = {.lex_state = 84, .external_lex_state = 16}, + [543] = {.lex_state = 92, .external_lex_state = 12}, + [544] = {.lex_state = 74, .external_lex_state = 12}, + [545] = {.lex_state = 92, .external_lex_state = 12}, + [546] = {.lex_state = 79, .external_lex_state = 15}, + [547] = {.lex_state = 79, .external_lex_state = 15}, + [548] = {.lex_state = 93, .external_lex_state = 12}, + [549] = {.lex_state = 93, .external_lex_state = 12}, + [550] = {.lex_state = 93, .external_lex_state = 12}, [551] = {.lex_state = 77, .external_lex_state = 12}, - [552] = {.lex_state = 83, .external_lex_state = 16}, + [552] = {.lex_state = 77, .external_lex_state = 12}, [553] = {.lex_state = 77, .external_lex_state = 12}, - [554] = {.lex_state = 204, .external_lex_state = 12}, - [555] = {.lex_state = 92, .external_lex_state = 13}, - [556] = {.lex_state = 77, .external_lex_state = 12}, + [554] = {.lex_state = 77, .external_lex_state = 12}, + [555] = {.lex_state = 77, .external_lex_state = 12}, + [556] = {.lex_state = 92, .external_lex_state = 13}, [557] = {.lex_state = 77, .external_lex_state = 12}, [558] = {.lex_state = 77, .external_lex_state = 12}, [559] = {.lex_state = 77, .external_lex_state = 12}, - [560] = {.lex_state = 204, .external_lex_state = 12}, + [560] = {.lex_state = 77, .external_lex_state = 12}, [561] = {.lex_state = 77, .external_lex_state = 12}, [562] = {.lex_state = 77, .external_lex_state = 12}, - [563] = {.lex_state = 92, .external_lex_state = 13}, + [563] = {.lex_state = 77, .external_lex_state = 12}, [564] = {.lex_state = 77, .external_lex_state = 12}, [565] = {.lex_state = 77, .external_lex_state = 12}, [566] = {.lex_state = 77, .external_lex_state = 12}, [567] = {.lex_state = 77, .external_lex_state = 12}, - [568] = {.lex_state = 77, .external_lex_state = 12}, + [568] = {.lex_state = 197, .external_lex_state = 12}, [569] = {.lex_state = 77, .external_lex_state = 12}, [570] = {.lex_state = 77, .external_lex_state = 12}, [571] = {.lex_state = 77, .external_lex_state = 12}, - [572] = {.lex_state = 77, .external_lex_state = 12}, + [572] = {.lex_state = 92, .external_lex_state = 13}, [573] = {.lex_state = 77, .external_lex_state = 12}, [574] = {.lex_state = 77, .external_lex_state = 12}, - [575] = {.lex_state = 77, .external_lex_state = 12}, + [575] = {.lex_state = 83, .external_lex_state = 16}, [576] = {.lex_state = 77, .external_lex_state = 12}, [577] = {.lex_state = 77, .external_lex_state = 12}, - [578] = {.lex_state = 92, .external_lex_state = 13}, + [578] = {.lex_state = 83, .external_lex_state = 16}, [579] = {.lex_state = 77, .external_lex_state = 12}, [580] = {.lex_state = 77, .external_lex_state = 12}, [581] = {.lex_state = 77, .external_lex_state = 12}, [582] = {.lex_state = 77, .external_lex_state = 12}, - [583] = {.lex_state = 77, .external_lex_state = 12}, + [583] = {.lex_state = 92, .external_lex_state = 13}, [584] = {.lex_state = 77, .external_lex_state = 12}, - [585] = {.lex_state = 197, .external_lex_state = 13}, + [585] = {.lex_state = 77, .external_lex_state = 12}, [586] = {.lex_state = 77, .external_lex_state = 12}, [587] = {.lex_state = 77, .external_lex_state = 12}, [588] = {.lex_state = 77, .external_lex_state = 12}, [589] = {.lex_state = 77, .external_lex_state = 12}, [590] = {.lex_state = 77, .external_lex_state = 12}, - [591] = {.lex_state = 83, .external_lex_state = 16}, + [591] = {.lex_state = 77, .external_lex_state = 12}, [592] = {.lex_state = 77, .external_lex_state = 12}, [593] = {.lex_state = 77, .external_lex_state = 12}, [594] = {.lex_state = 77, .external_lex_state = 12}, [595] = {.lex_state = 77, .external_lex_state = 12}, [596] = {.lex_state = 77, .external_lex_state = 12}, - [597] = {.lex_state = 77, .external_lex_state = 12}, + [597] = {.lex_state = 198, .external_lex_state = 12}, [598] = {.lex_state = 77, .external_lex_state = 12}, - [599] = {.lex_state = 93, .external_lex_state = 12}, - [600] = {.lex_state = 197, .external_lex_state = 13}, - [601] = {.lex_state = 812, .external_lex_state = 12}, - [602] = {.lex_state = 198, .external_lex_state = 12}, - [603] = {.lex_state = 204, .external_lex_state = 13}, + [599] = {.lex_state = 77, .external_lex_state = 12}, + [600] = {.lex_state = 77, .external_lex_state = 12}, + [601] = {.lex_state = 77, .external_lex_state = 12}, + [602] = {.lex_state = 77, .external_lex_state = 12}, + [603] = {.lex_state = 77, .external_lex_state = 12}, [604] = {.lex_state = 93, .external_lex_state = 12}, - [605] = {.lex_state = 812, .external_lex_state = 12}, + [605] = {.lex_state = 204, .external_lex_state = 12}, [606] = {.lex_state = 81, .external_lex_state = 12}, - [607] = {.lex_state = 204, .external_lex_state = 13}, - [608] = {.lex_state = 812, .external_lex_state = 12}, - [609] = {.lex_state = 77, .external_lex_state = 12}, - [610] = {.lex_state = 77, .external_lex_state = 12}, - [611] = {.lex_state = 77, .external_lex_state = 12}, + [607] = {.lex_state = 204, .external_lex_state = 12}, + [608] = {.lex_state = 93, .external_lex_state = 12}, + [609] = {.lex_state = 197, .external_lex_state = 13}, + [610] = {.lex_state = 74, .external_lex_state = 13}, + [611] = {.lex_state = 812, .external_lex_state = 12}, [612] = {.lex_state = 77, .external_lex_state = 12}, [613] = {.lex_state = 77, .external_lex_state = 12}, - [614] = {.lex_state = 812, .external_lex_state = 12}, - [615] = {.lex_state = 77, .external_lex_state = 12}, - [616] = {.lex_state = 812, .external_lex_state = 12}, - [617] = {.lex_state = 812, .external_lex_state = 12}, - [618] = {.lex_state = 812, .external_lex_state = 12}, - [619] = {.lex_state = 812, .external_lex_state = 12}, - [620] = {.lex_state = 77, .external_lex_state = 12}, - [621] = {.lex_state = 197, .external_lex_state = 12}, - [622] = {.lex_state = 92, .external_lex_state = 13}, - [623] = {.lex_state = 812, .external_lex_state = 12}, - [624] = {.lex_state = 74, .external_lex_state = 13}, + [614] = {.lex_state = 197, .external_lex_state = 13}, + [615] = {.lex_state = 812, .external_lex_state = 12}, + [616] = {.lex_state = 92, .external_lex_state = 13}, + [617] = {.lex_state = 77, .external_lex_state = 12}, + [618] = {.lex_state = 77, .external_lex_state = 12}, + [619] = {.lex_state = 204, .external_lex_state = 13}, + [620] = {.lex_state = 204, .external_lex_state = 13}, + [621] = {.lex_state = 77, .external_lex_state = 12}, + [622] = {.lex_state = 77, .external_lex_state = 12}, + [623] = {.lex_state = 92, .external_lex_state = 13}, + [624] = {.lex_state = 77, .external_lex_state = 12}, [625] = {.lex_state = 77, .external_lex_state = 12}, - [626] = {.lex_state = 812, .external_lex_state = 12}, - [627] = {.lex_state = 92, .external_lex_state = 13}, - [628] = {.lex_state = 812, .external_lex_state = 12}, - [629] = {.lex_state = 812, .external_lex_state = 12}, - [630] = {.lex_state = 77, .external_lex_state = 13}, + [626] = {.lex_state = 198, .external_lex_state = 12}, + [627] = {.lex_state = 812, .external_lex_state = 12}, + [628] = {.lex_state = 78, .external_lex_state = 12}, + [629] = {.lex_state = 77, .external_lex_state = 12}, + [630] = {.lex_state = 78, .external_lex_state = 12}, [631] = {.lex_state = 78, .external_lex_state = 12}, - [632] = {.lex_state = 78, .external_lex_state = 12}, - [633] = {.lex_state = 78, .external_lex_state = 12}, + [632] = {.lex_state = 77, .external_lex_state = 12}, + [633] = {.lex_state = 812, .external_lex_state = 12}, [634] = {.lex_state = 78, .external_lex_state = 12}, - [635] = {.lex_state = 78, .external_lex_state = 12}, + [635] = {.lex_state = 812, .external_lex_state = 12}, [636] = {.lex_state = 78, .external_lex_state = 12}, [637] = {.lex_state = 78, .external_lex_state = 12}, - [638] = {.lex_state = 78, .external_lex_state = 12}, - [639] = {.lex_state = 77, .external_lex_state = 13}, + [638] = {.lex_state = 812, .external_lex_state = 12}, + [639] = {.lex_state = 78, .external_lex_state = 12}, [640] = {.lex_state = 78, .external_lex_state = 12}, [641] = {.lex_state = 78, .external_lex_state = 12}, - [642] = {.lex_state = 77, .external_lex_state = 13}, - [643] = {.lex_state = 77, .external_lex_state = 12}, - [644] = {.lex_state = 78, .external_lex_state = 12}, - [645] = {.lex_state = 77, .external_lex_state = 13}, - [646] = {.lex_state = 77, .external_lex_state = 13}, - [647] = {.lex_state = 77, .external_lex_state = 13}, - [648] = {.lex_state = 77, .external_lex_state = 13}, + [642] = {.lex_state = 78, .external_lex_state = 12}, + [643] = {.lex_state = 77, .external_lex_state = 13}, + [644] = {.lex_state = 77, .external_lex_state = 12}, + [645] = {.lex_state = 77, .external_lex_state = 12}, + [646] = {.lex_state = 78, .external_lex_state = 12}, + [647] = {.lex_state = 77, .external_lex_state = 12}, + [648] = {.lex_state = 77, .external_lex_state = 12}, [649] = {.lex_state = 78, .external_lex_state = 12}, [650] = {.lex_state = 77, .external_lex_state = 12}, [651] = {.lex_state = 78, .external_lex_state = 12}, [652] = {.lex_state = 78, .external_lex_state = 12}, - [653] = {.lex_state = 78, .external_lex_state = 12}, + [653] = {.lex_state = 77, .external_lex_state = 13}, [654] = {.lex_state = 78, .external_lex_state = 12}, - [655] = {.lex_state = 77, .external_lex_state = 12}, + [655] = {.lex_state = 78, .external_lex_state = 12}, [656] = {.lex_state = 78, .external_lex_state = 12}, - [657] = {.lex_state = 812, .external_lex_state = 12}, - [658] = {.lex_state = 78, .external_lex_state = 12}, + [657] = {.lex_state = 197, .external_lex_state = 12}, + [658] = {.lex_state = 812, .external_lex_state = 12}, [659] = {.lex_state = 78, .external_lex_state = 12}, - [660] = {.lex_state = 78, .external_lex_state = 12}, - [661] = {.lex_state = 77, .external_lex_state = 12}, + [660] = {.lex_state = 77, .external_lex_state = 12}, + [661] = {.lex_state = 77, .external_lex_state = 13}, [662] = {.lex_state = 78, .external_lex_state = 12}, - [663] = {.lex_state = 77, .external_lex_state = 12}, - [664] = {.lex_state = 78, .external_lex_state = 12}, + [663] = {.lex_state = 78, .external_lex_state = 12}, + [664] = {.lex_state = 77, .external_lex_state = 13}, [665] = {.lex_state = 78, .external_lex_state = 12}, [666] = {.lex_state = 78, .external_lex_state = 12}, - [667] = {.lex_state = 78, .external_lex_state = 12}, + [667] = {.lex_state = 812, .external_lex_state = 12}, [668] = {.lex_state = 78, .external_lex_state = 12}, - [669] = {.lex_state = 812, .external_lex_state = 12}, - [670] = {.lex_state = 77, .external_lex_state = 12}, + [669] = {.lex_state = 77, .external_lex_state = 12}, + [670] = {.lex_state = 78, .external_lex_state = 12}, [671] = {.lex_state = 78, .external_lex_state = 12}, - [672] = {.lex_state = 77, .external_lex_state = 12}, - [673] = {.lex_state = 78, .external_lex_state = 12}, - [674] = {.lex_state = 78, .external_lex_state = 12}, - [675] = {.lex_state = 78, .external_lex_state = 12}, - [676] = {.lex_state = 78, .external_lex_state = 12}, - [677] = {.lex_state = 78, .external_lex_state = 12}, - [678] = {.lex_state = 77, .external_lex_state = 12}, + [672] = {.lex_state = 78, .external_lex_state = 12}, + [673] = {.lex_state = 77, .external_lex_state = 12}, + [674] = {.lex_state = 77, .external_lex_state = 12}, + [675] = {.lex_state = 77, .external_lex_state = 12}, + [676] = {.lex_state = 77, .external_lex_state = 12}, + [677] = {.lex_state = 77, .external_lex_state = 13}, + [678] = {.lex_state = 77, .external_lex_state = 13}, [679] = {.lex_state = 78, .external_lex_state = 12}, [680] = {.lex_state = 78, .external_lex_state = 12}, - [681] = {.lex_state = 77, .external_lex_state = 12}, - [682] = {.lex_state = 812, .external_lex_state = 12}, + [681] = {.lex_state = 78, .external_lex_state = 12}, + [682] = {.lex_state = 78, .external_lex_state = 12}, [683] = {.lex_state = 78, .external_lex_state = 12}, [684] = {.lex_state = 78, .external_lex_state = 12}, [685] = {.lex_state = 78, .external_lex_state = 12}, [686] = {.lex_state = 78, .external_lex_state = 12}, - [687] = {.lex_state = 78, .external_lex_state = 12}, + [687] = {.lex_state = 77, .external_lex_state = 12}, [688] = {.lex_state = 78, .external_lex_state = 12}, [689] = {.lex_state = 78, .external_lex_state = 12}, - [690] = {.lex_state = 78, .external_lex_state = 12}, + [690] = {.lex_state = 77, .external_lex_state = 12}, [691] = {.lex_state = 77, .external_lex_state = 12}, - [692] = {.lex_state = 77, .external_lex_state = 12}, - [693] = {.lex_state = 77, .external_lex_state = 12}, - [694] = {.lex_state = 77, .external_lex_state = 12}, + [692] = {.lex_state = 78, .external_lex_state = 12}, + [693] = {.lex_state = 78, .external_lex_state = 12}, + [694] = {.lex_state = 812, .external_lex_state = 12}, [695] = {.lex_state = 78, .external_lex_state = 12}, [696] = {.lex_state = 78, .external_lex_state = 12}, - [697] = {.lex_state = 78, .external_lex_state = 12}, - [698] = {.lex_state = 78, .external_lex_state = 12}, + [697] = {.lex_state = 812, .external_lex_state = 12}, + [698] = {.lex_state = 812, .external_lex_state = 12}, [699] = {.lex_state = 78, .external_lex_state = 12}, [700] = {.lex_state = 78, .external_lex_state = 12}, [701] = {.lex_state = 78, .external_lex_state = 12}, @@ -46917,1672 +46945,1672 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [705] = {.lex_state = 78, .external_lex_state = 12}, [706] = {.lex_state = 78, .external_lex_state = 12}, [707] = {.lex_state = 78, .external_lex_state = 12}, - [708] = {.lex_state = 77, .external_lex_state = 12}, + [708] = {.lex_state = 78, .external_lex_state = 12}, [709] = {.lex_state = 78, .external_lex_state = 12}, [710] = {.lex_state = 78, .external_lex_state = 12}, [711] = {.lex_state = 78, .external_lex_state = 12}, - [712] = {.lex_state = 77, .external_lex_state = 12}, - [713] = {.lex_state = 77, .external_lex_state = 12}, + [712] = {.lex_state = 78, .external_lex_state = 12}, + [713] = {.lex_state = 78, .external_lex_state = 12}, [714] = {.lex_state = 78, .external_lex_state = 12}, - [715] = {.lex_state = 78, .external_lex_state = 12}, - [716] = {.lex_state = 77, .external_lex_state = 13}, - [717] = {.lex_state = 77, .external_lex_state = 13}, - [718] = {.lex_state = 77, .external_lex_state = 12}, - [719] = {.lex_state = 77, .external_lex_state = 13}, - [720] = {.lex_state = 77, .external_lex_state = 13}, - [721] = {.lex_state = 812, .external_lex_state = 12}, + [715] = {.lex_state = 77, .external_lex_state = 13}, + [716] = {.lex_state = 78, .external_lex_state = 12}, + [717] = {.lex_state = 812, .external_lex_state = 12}, + [718] = {.lex_state = 78, .external_lex_state = 12}, + [719] = {.lex_state = 78, .external_lex_state = 12}, + [720] = {.lex_state = 78, .external_lex_state = 12}, + [721] = {.lex_state = 78, .external_lex_state = 12}, [722] = {.lex_state = 77, .external_lex_state = 13}, [723] = {.lex_state = 77, .external_lex_state = 13}, - [724] = {.lex_state = 812, .external_lex_state = 12}, - [725] = {.lex_state = 812, .external_lex_state = 12}, - [726] = {.lex_state = 812, .external_lex_state = 12}, - [727] = {.lex_state = 812, .external_lex_state = 12}, - [728] = {.lex_state = 812, .external_lex_state = 12}, - [729] = {.lex_state = 77, .external_lex_state = 12}, + [724] = {.lex_state = 77, .external_lex_state = 13}, + [725] = {.lex_state = 77, .external_lex_state = 13}, + [726] = {.lex_state = 77, .external_lex_state = 12}, + [727] = {.lex_state = 77, .external_lex_state = 13}, + [728] = {.lex_state = 77, .external_lex_state = 12}, + [729] = {.lex_state = 77, .external_lex_state = 13}, [730] = {.lex_state = 77, .external_lex_state = 13}, - [731] = {.lex_state = 77, .external_lex_state = 12}, - [732] = {.lex_state = 77, .external_lex_state = 12}, - [733] = {.lex_state = 77, .external_lex_state = 13}, - [734] = {.lex_state = 812, .external_lex_state = 13}, - [735] = {.lex_state = 812, .external_lex_state = 12}, + [731] = {.lex_state = 77, .external_lex_state = 13}, + [732] = {.lex_state = 77, .external_lex_state = 13}, + [733] = {.lex_state = 77, .external_lex_state = 12}, + [734] = {.lex_state = 77, .external_lex_state = 13}, + [735] = {.lex_state = 77, .external_lex_state = 13}, [736] = {.lex_state = 77, .external_lex_state = 13}, - [737] = {.lex_state = 78, .external_lex_state = 12}, - [738] = {.lex_state = 77, .external_lex_state = 13}, - [739] = {.lex_state = 812, .external_lex_state = 12}, - [740] = {.lex_state = 812, .external_lex_state = 12}, - [741] = {.lex_state = 77, .external_lex_state = 13}, + [737] = {.lex_state = 77, .external_lex_state = 13}, + [738] = {.lex_state = 77, .external_lex_state = 12}, + [739] = {.lex_state = 77, .external_lex_state = 13}, + [740] = {.lex_state = 77, .external_lex_state = 12}, + [741] = {.lex_state = 77, .external_lex_state = 12}, [742] = {.lex_state = 77, .external_lex_state = 13}, - [743] = {.lex_state = 812, .external_lex_state = 12}, - [744] = {.lex_state = 812, .external_lex_state = 12}, + [743] = {.lex_state = 77, .external_lex_state = 13}, + [744] = {.lex_state = 77, .external_lex_state = 13}, [745] = {.lex_state = 77, .external_lex_state = 13}, - [746] = {.lex_state = 812, .external_lex_state = 12}, + [746] = {.lex_state = 77, .external_lex_state = 13}, [747] = {.lex_state = 77, .external_lex_state = 13}, [748] = {.lex_state = 77, .external_lex_state = 13}, [749] = {.lex_state = 77, .external_lex_state = 13}, [750] = {.lex_state = 77, .external_lex_state = 13}, - [751] = {.lex_state = 77, .external_lex_state = 13}, + [751] = {.lex_state = 77, .external_lex_state = 12}, [752] = {.lex_state = 77, .external_lex_state = 13}, [753] = {.lex_state = 77, .external_lex_state = 13}, - [754] = {.lex_state = 812, .external_lex_state = 12}, + [754] = {.lex_state = 77, .external_lex_state = 13}, [755] = {.lex_state = 77, .external_lex_state = 13}, [756] = {.lex_state = 77, .external_lex_state = 13}, [757] = {.lex_state = 77, .external_lex_state = 13}, - [758] = {.lex_state = 812, .external_lex_state = 12}, + [758] = {.lex_state = 77, .external_lex_state = 13}, [759] = {.lex_state = 77, .external_lex_state = 13}, - [760] = {.lex_state = 77, .external_lex_state = 12}, + [760] = {.lex_state = 77, .external_lex_state = 13}, [761] = {.lex_state = 77, .external_lex_state = 13}, - [762] = {.lex_state = 77, .external_lex_state = 13}, - [763] = {.lex_state = 77, .external_lex_state = 13}, - [764] = {.lex_state = 77, .external_lex_state = 12}, - [765] = {.lex_state = 77, .external_lex_state = 12}, + [762] = {.lex_state = 812, .external_lex_state = 12}, + [763] = {.lex_state = 812, .external_lex_state = 12}, + [764] = {.lex_state = 77, .external_lex_state = 13}, + [765] = {.lex_state = 77, .external_lex_state = 13}, [766] = {.lex_state = 77, .external_lex_state = 13}, [767] = {.lex_state = 77, .external_lex_state = 13}, [768] = {.lex_state = 77, .external_lex_state = 13}, [769] = {.lex_state = 77, .external_lex_state = 13}, [770] = {.lex_state = 77, .external_lex_state = 13}, - [771] = {.lex_state = 77, .external_lex_state = 12}, - [772] = {.lex_state = 77, .external_lex_state = 12}, - [773] = {.lex_state = 812, .external_lex_state = 13}, + [771] = {.lex_state = 77, .external_lex_state = 13}, + [772] = {.lex_state = 77, .external_lex_state = 13}, + [773] = {.lex_state = 812, .external_lex_state = 12}, [774] = {.lex_state = 77, .external_lex_state = 13}, - [775] = {.lex_state = 77, .external_lex_state = 13}, - [776] = {.lex_state = 77, .external_lex_state = 13}, - [777] = {.lex_state = 77, .external_lex_state = 12}, + [775] = {.lex_state = 77, .external_lex_state = 12}, + [776] = {.lex_state = 77, .external_lex_state = 12}, + [777] = {.lex_state = 77, .external_lex_state = 13}, [778] = {.lex_state = 77, .external_lex_state = 13}, - [779] = {.lex_state = 204, .external_lex_state = 12}, - [780] = {.lex_state = 77, .external_lex_state = 12}, + [779] = {.lex_state = 77, .external_lex_state = 13}, + [780] = {.lex_state = 77, .external_lex_state = 13}, [781] = {.lex_state = 77, .external_lex_state = 12}, - [782] = {.lex_state = 77, .external_lex_state = 12}, - [783] = {.lex_state = 812, .external_lex_state = 12}, + [782] = {.lex_state = 77, .external_lex_state = 13}, + [783] = {.lex_state = 77, .external_lex_state = 13}, [784] = {.lex_state = 77, .external_lex_state = 13}, [785] = {.lex_state = 77, .external_lex_state = 13}, [786] = {.lex_state = 77, .external_lex_state = 13}, [787] = {.lex_state = 77, .external_lex_state = 13}, - [788] = {.lex_state = 812, .external_lex_state = 12}, - [789] = {.lex_state = 77, .external_lex_state = 13}, - [790] = {.lex_state = 77, .external_lex_state = 13}, - [791] = {.lex_state = 77, .external_lex_state = 13}, + [788] = {.lex_state = 77, .external_lex_state = 13}, + [789] = {.lex_state = 77, .external_lex_state = 12}, + [790] = {.lex_state = 77, .external_lex_state = 12}, + [791] = {.lex_state = 77, .external_lex_state = 12}, [792] = {.lex_state = 77, .external_lex_state = 13}, - [793] = {.lex_state = 77, .external_lex_state = 13}, - [794] = {.lex_state = 812, .external_lex_state = 13}, + [793] = {.lex_state = 77, .external_lex_state = 12}, + [794] = {.lex_state = 77, .external_lex_state = 13}, [795] = {.lex_state = 77, .external_lex_state = 13}, - [796] = {.lex_state = 77, .external_lex_state = 13}, - [797] = {.lex_state = 812, .external_lex_state = 12}, + [796] = {.lex_state = 77, .external_lex_state = 12}, + [797] = {.lex_state = 77, .external_lex_state = 12}, [798] = {.lex_state = 77, .external_lex_state = 13}, [799] = {.lex_state = 77, .external_lex_state = 13}, - [800] = {.lex_state = 77, .external_lex_state = 13}, - [801] = {.lex_state = 77, .external_lex_state = 12}, + [800] = {.lex_state = 77, .external_lex_state = 12}, + [801] = {.lex_state = 77, .external_lex_state = 13}, [802] = {.lex_state = 77, .external_lex_state = 13}, [803] = {.lex_state = 77, .external_lex_state = 12}, - [804] = {.lex_state = 77, .external_lex_state = 13}, - [805] = {.lex_state = 77, .external_lex_state = 13}, + [804] = {.lex_state = 812, .external_lex_state = 12}, + [805] = {.lex_state = 812, .external_lex_state = 12}, [806] = {.lex_state = 77, .external_lex_state = 12}, [807] = {.lex_state = 77, .external_lex_state = 12}, - [808] = {.lex_state = 77, .external_lex_state = 13}, - [809] = {.lex_state = 77, .external_lex_state = 13}, - [810] = {.lex_state = 77, .external_lex_state = 13}, - [811] = {.lex_state = 77, .external_lex_state = 13}, - [812] = {.lex_state = 77, .external_lex_state = 13}, - [813] = {.lex_state = 77, .external_lex_state = 13}, - [814] = {.lex_state = 77, .external_lex_state = 13}, + [808] = {.lex_state = 77, .external_lex_state = 12}, + [809] = {.lex_state = 77, .external_lex_state = 12}, + [810] = {.lex_state = 77, .external_lex_state = 12}, + [811] = {.lex_state = 77, .external_lex_state = 12}, + [812] = {.lex_state = 812, .external_lex_state = 12}, + [813] = {.lex_state = 77, .external_lex_state = 12}, + [814] = {.lex_state = 812, .external_lex_state = 13}, [815] = {.lex_state = 77, .external_lex_state = 12}, - [816] = {.lex_state = 812, .external_lex_state = 12}, + [816] = {.lex_state = 77, .external_lex_state = 12}, [817] = {.lex_state = 77, .external_lex_state = 12}, [818] = {.lex_state = 77, .external_lex_state = 12}, - [819] = {.lex_state = 77, .external_lex_state = 12}, - [820] = {.lex_state = 204, .external_lex_state = 13}, + [819] = {.lex_state = 812, .external_lex_state = 12}, + [820] = {.lex_state = 77, .external_lex_state = 12}, [821] = {.lex_state = 812, .external_lex_state = 12}, - [822] = {.lex_state = 812, .external_lex_state = 12}, + [822] = {.lex_state = 77, .external_lex_state = 12}, [823] = {.lex_state = 77, .external_lex_state = 12}, [824] = {.lex_state = 77, .external_lex_state = 12}, - [825] = {.lex_state = 77, .external_lex_state = 12}, + [825] = {.lex_state = 204, .external_lex_state = 12}, [826] = {.lex_state = 77, .external_lex_state = 12}, [827] = {.lex_state = 77, .external_lex_state = 12}, [828] = {.lex_state = 77, .external_lex_state = 12}, [829] = {.lex_state = 77, .external_lex_state = 12}, [830] = {.lex_state = 77, .external_lex_state = 12}, [831] = {.lex_state = 77, .external_lex_state = 12}, - [832] = {.lex_state = 812, .external_lex_state = 12}, + [832] = {.lex_state = 77, .external_lex_state = 12}, [833] = {.lex_state = 77, .external_lex_state = 12}, [834] = {.lex_state = 77, .external_lex_state = 12}, - [835] = {.lex_state = 35, .external_lex_state = 17}, - [836] = {.lex_state = 50, .external_lex_state = 17}, - [837] = {.lex_state = 812, .external_lex_state = 12}, + [835] = {.lex_state = 77, .external_lex_state = 12}, + [836] = {.lex_state = 77, .external_lex_state = 12}, + [837] = {.lex_state = 77, .external_lex_state = 12}, [838] = {.lex_state = 77, .external_lex_state = 12}, - [839] = {.lex_state = 87, .external_lex_state = 13}, + [839] = {.lex_state = 77, .external_lex_state = 12}, [840] = {.lex_state = 77, .external_lex_state = 12}, [841] = {.lex_state = 77, .external_lex_state = 12}, - [842] = {.lex_state = 812, .external_lex_state = 12}, + [842] = {.lex_state = 77, .external_lex_state = 12}, [843] = {.lex_state = 77, .external_lex_state = 12}, - [844] = {.lex_state = 812, .external_lex_state = 12}, - [845] = {.lex_state = 35, .external_lex_state = 17}, + [844] = {.lex_state = 77, .external_lex_state = 12}, + [845] = {.lex_state = 77, .external_lex_state = 12}, [846] = {.lex_state = 77, .external_lex_state = 12}, - [847] = {.lex_state = 812, .external_lex_state = 12}, - [848] = {.lex_state = 812, .external_lex_state = 12}, + [847] = {.lex_state = 77, .external_lex_state = 12}, + [848] = {.lex_state = 77, .external_lex_state = 12}, [849] = {.lex_state = 77, .external_lex_state = 12}, [850] = {.lex_state = 77, .external_lex_state = 12}, [851] = {.lex_state = 77, .external_lex_state = 12}, [852] = {.lex_state = 77, .external_lex_state = 12}, [853] = {.lex_state = 77, .external_lex_state = 12}, - [854] = {.lex_state = 77, .external_lex_state = 12}, - [855] = {.lex_state = 33, .external_lex_state = 17}, - [856] = {.lex_state = 48, .external_lex_state = 17}, + [854] = {.lex_state = 812, .external_lex_state = 12}, + [855] = {.lex_state = 812, .external_lex_state = 13}, + [856] = {.lex_state = 77, .external_lex_state = 12}, [857] = {.lex_state = 77, .external_lex_state = 12}, - [858] = {.lex_state = 77, .external_lex_state = 12}, - [859] = {.lex_state = 33, .external_lex_state = 17}, - [860] = {.lex_state = 199, .external_lex_state = 12}, - [861] = {.lex_state = 802, .external_lex_state = 12}, + [858] = {.lex_state = 812, .external_lex_state = 12}, + [859] = {.lex_state = 77, .external_lex_state = 12}, + [860] = {.lex_state = 77, .external_lex_state = 12}, + [861] = {.lex_state = 77, .external_lex_state = 12}, [862] = {.lex_state = 77, .external_lex_state = 12}, [863] = {.lex_state = 77, .external_lex_state = 12}, [864] = {.lex_state = 77, .external_lex_state = 12}, [865] = {.lex_state = 77, .external_lex_state = 12}, [866] = {.lex_state = 77, .external_lex_state = 12}, [867] = {.lex_state = 77, .external_lex_state = 12}, - [868] = {.lex_state = 77, .external_lex_state = 12}, - [869] = {.lex_state = 812, .external_lex_state = 12}, + [868] = {.lex_state = 812, .external_lex_state = 12}, + [869] = {.lex_state = 77, .external_lex_state = 12}, [870] = {.lex_state = 77, .external_lex_state = 12}, - [871] = {.lex_state = 812, .external_lex_state = 12}, - [872] = {.lex_state = 812, .external_lex_state = 12}, - [873] = {.lex_state = 812, .external_lex_state = 12}, - [874] = {.lex_state = 34, .external_lex_state = 18}, - [875] = {.lex_state = 812, .external_lex_state = 12}, + [871] = {.lex_state = 77, .external_lex_state = 12}, + [872] = {.lex_state = 77, .external_lex_state = 12}, + [873] = {.lex_state = 78, .external_lex_state = 12}, + [874] = {.lex_state = 812, .external_lex_state = 12}, + [875] = {.lex_state = 77, .external_lex_state = 12}, [876] = {.lex_state = 77, .external_lex_state = 12}, [877] = {.lex_state = 77, .external_lex_state = 12}, - [878] = {.lex_state = 812, .external_lex_state = 12}, + [878] = {.lex_state = 77, .external_lex_state = 12}, [879] = {.lex_state = 77, .external_lex_state = 12}, [880] = {.lex_state = 77, .external_lex_state = 12}, - [881] = {.lex_state = 36, .external_lex_state = 18}, + [881] = {.lex_state = 77, .external_lex_state = 12}, [882] = {.lex_state = 77, .external_lex_state = 12}, - [883] = {.lex_state = 77, .external_lex_state = 12}, - [884] = {.lex_state = 77, .external_lex_state = 12}, + [883] = {.lex_state = 812, .external_lex_state = 13}, + [884] = {.lex_state = 812, .external_lex_state = 12}, [885] = {.lex_state = 812, .external_lex_state = 12}, - [886] = {.lex_state = 199, .external_lex_state = 12}, + [886] = {.lex_state = 77, .external_lex_state = 12}, [887] = {.lex_state = 77, .external_lex_state = 12}, - [888] = {.lex_state = 77, .external_lex_state = 12}, + [888] = {.lex_state = 812, .external_lex_state = 12}, [889] = {.lex_state = 77, .external_lex_state = 12}, [890] = {.lex_state = 77, .external_lex_state = 12}, - [891] = {.lex_state = 812, .external_lex_state = 12}, - [892] = {.lex_state = 77, .external_lex_state = 12}, + [891] = {.lex_state = 77, .external_lex_state = 12}, + [892] = {.lex_state = 812, .external_lex_state = 12}, [893] = {.lex_state = 77, .external_lex_state = 12}, [894] = {.lex_state = 812, .external_lex_state = 12}, - [895] = {.lex_state = 77, .external_lex_state = 12}, + [895] = {.lex_state = 812, .external_lex_state = 12}, [896] = {.lex_state = 77, .external_lex_state = 12}, [897] = {.lex_state = 77, .external_lex_state = 12}, [898] = {.lex_state = 77, .external_lex_state = 12}, - [899] = {.lex_state = 77, .external_lex_state = 12}, + [899] = {.lex_state = 812, .external_lex_state = 12}, [900] = {.lex_state = 812, .external_lex_state = 12}, - [901] = {.lex_state = 812, .external_lex_state = 12}, + [901] = {.lex_state = 77, .external_lex_state = 12}, [902] = {.lex_state = 77, .external_lex_state = 12}, [903] = {.lex_state = 77, .external_lex_state = 12}, [904] = {.lex_state = 77, .external_lex_state = 12}, - [905] = {.lex_state = 77, .external_lex_state = 12}, - [906] = {.lex_state = 77, .external_lex_state = 12}, - [907] = {.lex_state = 49, .external_lex_state = 18}, - [908] = {.lex_state = 34, .external_lex_state = 18}, - [909] = {.lex_state = 812, .external_lex_state = 12}, - [910] = {.lex_state = 77, .external_lex_state = 12}, - [911] = {.lex_state = 77, .external_lex_state = 12}, - [912] = {.lex_state = 77, .external_lex_state = 12}, - [913] = {.lex_state = 77, .external_lex_state = 12}, - [914] = {.lex_state = 77, .external_lex_state = 12}, - [915] = {.lex_state = 77, .external_lex_state = 12}, - [916] = {.lex_state = 77, .external_lex_state = 12}, - [917] = {.lex_state = 77, .external_lex_state = 12}, - [918] = {.lex_state = 77, .external_lex_state = 12}, - [919] = {.lex_state = 77, .external_lex_state = 12}, - [920] = {.lex_state = 77, .external_lex_state = 12}, - [921] = {.lex_state = 77, .external_lex_state = 12}, - [922] = {.lex_state = 77, .external_lex_state = 12}, - [923] = {.lex_state = 77, .external_lex_state = 12}, - [924] = {.lex_state = 77, .external_lex_state = 12}, - [925] = {.lex_state = 77, .external_lex_state = 12}, - [926] = {.lex_state = 77, .external_lex_state = 12}, - [927] = {.lex_state = 77, .external_lex_state = 12}, + [905] = {.lex_state = 812, .external_lex_state = 12}, + [906] = {.lex_state = 87, .external_lex_state = 13}, + [907] = {.lex_state = 204, .external_lex_state = 13}, + [908] = {.lex_state = 812, .external_lex_state = 12}, + [909] = {.lex_state = 802, .external_lex_state = 12}, + [910] = {.lex_state = 812, .external_lex_state = 12}, + [911] = {.lex_state = 33, .external_lex_state = 17}, + [912] = {.lex_state = 34, .external_lex_state = 18}, + [913] = {.lex_state = 49, .external_lex_state = 18}, + [914] = {.lex_state = 34, .external_lex_state = 18}, + [915] = {.lex_state = 199, .external_lex_state = 12}, + [916] = {.lex_state = 812, .external_lex_state = 12}, + [917] = {.lex_state = 51, .external_lex_state = 18}, + [918] = {.lex_state = 812, .external_lex_state = 12}, + [919] = {.lex_state = 812, .external_lex_state = 12}, + [920] = {.lex_state = 36, .external_lex_state = 18}, + [921] = {.lex_state = 812, .external_lex_state = 12}, + [922] = {.lex_state = 812, .external_lex_state = 12}, + [923] = {.lex_state = 812, .external_lex_state = 12}, + [924] = {.lex_state = 48, .external_lex_state = 17}, + [925] = {.lex_state = 36, .external_lex_state = 18}, + [926] = {.lex_state = 33, .external_lex_state = 17}, + [927] = {.lex_state = 812, .external_lex_state = 12}, [928] = {.lex_state = 77, .external_lex_state = 12}, - [929] = {.lex_state = 77, .external_lex_state = 12}, - [930] = {.lex_state = 199, .external_lex_state = 12}, - [931] = {.lex_state = 36, .external_lex_state = 18}, - [932] = {.lex_state = 77, .external_lex_state = 12}, - [933] = {.lex_state = 51, .external_lex_state = 18}, - [934] = {.lex_state = 812, .external_lex_state = 13}, - [935] = {.lex_state = 812, .external_lex_state = 13}, - [936] = {.lex_state = 77, .external_lex_state = 12}, - [937] = {.lex_state = 812, .external_lex_state = 13}, - [938] = {.lex_state = 102, .external_lex_state = 12}, + [929] = {.lex_state = 812, .external_lex_state = 12}, + [930] = {.lex_state = 812, .external_lex_state = 12}, + [931] = {.lex_state = 199, .external_lex_state = 12}, + [932] = {.lex_state = 35, .external_lex_state = 17}, + [933] = {.lex_state = 50, .external_lex_state = 17}, + [934] = {.lex_state = 35, .external_lex_state = 17}, + [935] = {.lex_state = 77, .external_lex_state = 12}, + [936] = {.lex_state = 812, .external_lex_state = 12}, + [937] = {.lex_state = 812, .external_lex_state = 12}, + [938] = {.lex_state = 812, .external_lex_state = 12}, [939] = {.lex_state = 812, .external_lex_state = 12}, - [940] = {.lex_state = 36, .external_lex_state = 18}, - [941] = {.lex_state = 51, .external_lex_state = 18}, - [942] = {.lex_state = 199, .external_lex_state = 13}, - [943] = {.lex_state = 77, .external_lex_state = 12}, - [944] = {.lex_state = 812, .external_lex_state = 13}, - [945] = {.lex_state = 36, .external_lex_state = 18}, - [946] = {.lex_state = 49, .external_lex_state = 18}, - [947] = {.lex_state = 102, .external_lex_state = 12}, - [948] = {.lex_state = 34, .external_lex_state = 18}, - [949] = {.lex_state = 34, .external_lex_state = 18}, - [950] = {.lex_state = 102, .external_lex_state = 12}, - [951] = {.lex_state = 102, .external_lex_state = 12}, - [952] = {.lex_state = 812, .external_lex_state = 13}, - [953] = {.lex_state = 812, .external_lex_state = 13}, - [954] = {.lex_state = 77, .external_lex_state = 12}, - [955] = {.lex_state = 802, .external_lex_state = 12}, - [956] = {.lex_state = 812, .external_lex_state = 13}, - [957] = {.lex_state = 35, .external_lex_state = 17}, - [958] = {.lex_state = 50, .external_lex_state = 17}, - [959] = {.lex_state = 77, .external_lex_state = 12}, - [960] = {.lex_state = 812, .external_lex_state = 13}, + [940] = {.lex_state = 812, .external_lex_state = 12}, + [941] = {.lex_state = 812, .external_lex_state = 12}, + [942] = {.lex_state = 199, .external_lex_state = 12}, + [943] = {.lex_state = 812, .external_lex_state = 12}, + [944] = {.lex_state = 812, .external_lex_state = 12}, + [945] = {.lex_state = 77, .external_lex_state = 12}, + [946] = {.lex_state = 812, .external_lex_state = 12}, + [947] = {.lex_state = 77, .external_lex_state = 12}, + [948] = {.lex_state = 199, .external_lex_state = 13}, + [949] = {.lex_state = 812, .external_lex_state = 13}, + [950] = {.lex_state = 49, .external_lex_state = 18}, + [951] = {.lex_state = 34, .external_lex_state = 18}, + [952] = {.lex_state = 812, .external_lex_state = 12}, + [953] = {.lex_state = 51, .external_lex_state = 18}, + [954] = {.lex_state = 102, .external_lex_state = 12}, + [955] = {.lex_state = 812, .external_lex_state = 13}, + [956] = {.lex_state = 34, .external_lex_state = 18}, + [957] = {.lex_state = 812, .external_lex_state = 13}, + [958] = {.lex_state = 812, .external_lex_state = 13}, + [959] = {.lex_state = 199, .external_lex_state = 13}, + [960] = {.lex_state = 199, .external_lex_state = 13}, [961] = {.lex_state = 812, .external_lex_state = 13}, - [962] = {.lex_state = 51, .external_lex_state = 18}, - [963] = {.lex_state = 35, .external_lex_state = 17}, - [964] = {.lex_state = 35, .external_lex_state = 17}, - [965] = {.lex_state = 34, .external_lex_state = 18}, - [966] = {.lex_state = 49, .external_lex_state = 18}, - [967] = {.lex_state = 50, .external_lex_state = 17}, - [968] = {.lex_state = 199, .external_lex_state = 13}, - [969] = {.lex_state = 802, .external_lex_state = 12}, - [970] = {.lex_state = 36, .external_lex_state = 18}, - [971] = {.lex_state = 199, .external_lex_state = 13}, + [962] = {.lex_state = 812, .external_lex_state = 13}, + [963] = {.lex_state = 36, .external_lex_state = 18}, + [964] = {.lex_state = 812, .external_lex_state = 13}, + [965] = {.lex_state = 812, .external_lex_state = 13}, + [966] = {.lex_state = 36, .external_lex_state = 18}, + [967] = {.lex_state = 35, .external_lex_state = 17}, + [968] = {.lex_state = 36, .external_lex_state = 18}, + [969] = {.lex_state = 812, .external_lex_state = 13}, + [970] = {.lex_state = 35, .external_lex_state = 17}, + [971] = {.lex_state = 50, .external_lex_state = 17}, [972] = {.lex_state = 48, .external_lex_state = 17}, [973] = {.lex_state = 33, .external_lex_state = 17}, - [974] = {.lex_state = 33, .external_lex_state = 17}, - [975] = {.lex_state = 48, .external_lex_state = 17}, + [974] = {.lex_state = 51, .external_lex_state = 18}, + [975] = {.lex_state = 35, .external_lex_state = 17}, [976] = {.lex_state = 33, .external_lex_state = 17}, - [977] = {.lex_state = 60, .external_lex_state = 11}, - [978] = {.lex_state = 300, .external_lex_state = 12}, - [979] = {.lex_state = 40, .external_lex_state = 18}, - [980] = {.lex_state = 55, .external_lex_state = 18}, - [981] = {.lex_state = 54, .external_lex_state = 17}, - [982] = {.lex_state = 102, .external_lex_state = 13}, - [983] = {.lex_state = 812, .external_lex_state = 12}, - [984] = {.lex_state = 812, .external_lex_state = 13}, - [985] = {.lex_state = 812, .external_lex_state = 13}, - [986] = {.lex_state = 802, .external_lex_state = 12}, - [987] = {.lex_state = 39, .external_lex_state = 17}, - [988] = {.lex_state = 38, .external_lex_state = 18}, - [989] = {.lex_state = 60, .external_lex_state = 11}, - [990] = {.lex_state = 37, .external_lex_state = 17}, - [991] = {.lex_state = 102, .external_lex_state = 13}, - [992] = {.lex_state = 60, .external_lex_state = 11}, - [993] = {.lex_state = 812, .external_lex_state = 12}, - [994] = {.lex_state = 60, .external_lex_state = 11}, - [995] = {.lex_state = 37, .external_lex_state = 17}, - [996] = {.lex_state = 38, .external_lex_state = 18}, - [997] = {.lex_state = 53, .external_lex_state = 18}, - [998] = {.lex_state = 52, .external_lex_state = 17}, - [999] = {.lex_state = 812, .external_lex_state = 13}, - [1000] = {.lex_state = 102, .external_lex_state = 13}, - [1001] = {.lex_state = 102, .external_lex_state = 13}, - [1002] = {.lex_state = 300, .external_lex_state = 12}, + [977] = {.lex_state = 34, .external_lex_state = 18}, + [978] = {.lex_state = 49, .external_lex_state = 18}, + [979] = {.lex_state = 33, .external_lex_state = 17}, + [980] = {.lex_state = 802, .external_lex_state = 12}, + [981] = {.lex_state = 102, .external_lex_state = 12}, + [982] = {.lex_state = 802, .external_lex_state = 12}, + [983] = {.lex_state = 48, .external_lex_state = 17}, + [984] = {.lex_state = 102, .external_lex_state = 12}, + [985] = {.lex_state = 102, .external_lex_state = 12}, + [986] = {.lex_state = 50, .external_lex_state = 17}, + [987] = {.lex_state = 812, .external_lex_state = 12}, + [988] = {.lex_state = 102, .external_lex_state = 13}, + [989] = {.lex_state = 38, .external_lex_state = 18}, + [990] = {.lex_state = 300, .external_lex_state = 12}, + [991] = {.lex_state = 40, .external_lex_state = 18}, + [992] = {.lex_state = 55, .external_lex_state = 18}, + [993] = {.lex_state = 812, .external_lex_state = 13}, + [994] = {.lex_state = 300, .external_lex_state = 12}, + [995] = {.lex_state = 60, .external_lex_state = 11}, + [996] = {.lex_state = 60, .external_lex_state = 11}, + [997] = {.lex_state = 802, .external_lex_state = 12}, + [998] = {.lex_state = 39, .external_lex_state = 17}, + [999] = {.lex_state = 54, .external_lex_state = 17}, + [1000] = {.lex_state = 60, .external_lex_state = 11}, + [1001] = {.lex_state = 60, .external_lex_state = 11}, + [1002] = {.lex_state = 812, .external_lex_state = 12}, [1003] = {.lex_state = 39, .external_lex_state = 17}, - [1004] = {.lex_state = 300, .external_lex_state = 12}, - [1005] = {.lex_state = 40, .external_lex_state = 18}, - [1006] = {.lex_state = 60, .external_lex_state = 11}, - [1007] = {.lex_state = 54, .external_lex_state = 17}, + [1004] = {.lex_state = 812, .external_lex_state = 13}, + [1005] = {.lex_state = 102, .external_lex_state = 13}, + [1006] = {.lex_state = 37, .external_lex_state = 17}, + [1007] = {.lex_state = 300, .external_lex_state = 12}, [1008] = {.lex_state = 812, .external_lex_state = 13}, - [1009] = {.lex_state = 102, .external_lex_state = 12}, - [1010] = {.lex_state = 55, .external_lex_state = 18}, - [1011] = {.lex_state = 40, .external_lex_state = 18}, - [1012] = {.lex_state = 40, .external_lex_state = 18}, + [1009] = {.lex_state = 38, .external_lex_state = 18}, + [1010] = {.lex_state = 37, .external_lex_state = 17}, + [1011] = {.lex_state = 52, .external_lex_state = 17}, + [1012] = {.lex_state = 60, .external_lex_state = 11}, [1013] = {.lex_state = 40, .external_lex_state = 18}, - [1014] = {.lex_state = 102, .external_lex_state = 12}, - [1015] = {.lex_state = 52, .external_lex_state = 17}, - [1016] = {.lex_state = 37, .external_lex_state = 17}, - [1017] = {.lex_state = 37, .external_lex_state = 17}, - [1018] = {.lex_state = 812, .external_lex_state = 13}, - [1019] = {.lex_state = 52, .external_lex_state = 17}, - [1020] = {.lex_state = 102, .external_lex_state = 12}, - [1021] = {.lex_state = 102, .external_lex_state = 13}, - [1022] = {.lex_state = 812, .external_lex_state = 12}, - [1023] = {.lex_state = 102, .external_lex_state = 13}, - [1024] = {.lex_state = 812, .external_lex_state = 13}, - [1025] = {.lex_state = 812, .external_lex_state = 12}, - [1026] = {.lex_state = 102, .external_lex_state = 13}, - [1027] = {.lex_state = 812, .external_lex_state = 13}, - [1028] = {.lex_state = 39, .external_lex_state = 17}, - [1029] = {.lex_state = 301, .external_lex_state = 12}, - [1030] = {.lex_state = 301, .external_lex_state = 12}, - [1031] = {.lex_state = 812, .external_lex_state = 12}, - [1032] = {.lex_state = 102, .external_lex_state = 12}, - [1033] = {.lex_state = 38, .external_lex_state = 18}, - [1034] = {.lex_state = 54, .external_lex_state = 17}, - [1035] = {.lex_state = 55, .external_lex_state = 18}, - [1036] = {.lex_state = 53, .external_lex_state = 18}, - [1037] = {.lex_state = 812, .external_lex_state = 13}, + [1014] = {.lex_state = 53, .external_lex_state = 18}, + [1015] = {.lex_state = 102, .external_lex_state = 13}, + [1016] = {.lex_state = 102, .external_lex_state = 13}, + [1017] = {.lex_state = 39, .external_lex_state = 17}, + [1018] = {.lex_state = 55, .external_lex_state = 18}, + [1019] = {.lex_state = 40, .external_lex_state = 18}, + [1020] = {.lex_state = 40, .external_lex_state = 18}, + [1021] = {.lex_state = 102, .external_lex_state = 12}, + [1022] = {.lex_state = 812, .external_lex_state = 13}, + [1023] = {.lex_state = 102, .external_lex_state = 12}, + [1024] = {.lex_state = 301, .external_lex_state = 12}, + [1025] = {.lex_state = 102, .external_lex_state = 12}, + [1026] = {.lex_state = 52, .external_lex_state = 17}, + [1027] = {.lex_state = 37, .external_lex_state = 17}, + [1028] = {.lex_state = 53, .external_lex_state = 18}, + [1029] = {.lex_state = 812, .external_lex_state = 13}, + [1030] = {.lex_state = 38, .external_lex_state = 18}, + [1031] = {.lex_state = 38, .external_lex_state = 18}, + [1032] = {.lex_state = 37, .external_lex_state = 17}, + [1033] = {.lex_state = 812, .external_lex_state = 13}, + [1034] = {.lex_state = 52, .external_lex_state = 17}, + [1035] = {.lex_state = 812, .external_lex_state = 13}, + [1036] = {.lex_state = 802, .external_lex_state = 12}, + [1037] = {.lex_state = 102, .external_lex_state = 12}, [1038] = {.lex_state = 812, .external_lex_state = 13}, [1039] = {.lex_state = 812, .external_lex_state = 13}, [1040] = {.lex_state = 812, .external_lex_state = 13}, - [1041] = {.lex_state = 812, .external_lex_state = 13}, + [1041] = {.lex_state = 102, .external_lex_state = 12}, [1042] = {.lex_state = 812, .external_lex_state = 12}, - [1043] = {.lex_state = 102, .external_lex_state = 12}, - [1044] = {.lex_state = 301, .external_lex_state = 12}, - [1045] = {.lex_state = 53, .external_lex_state = 18}, + [1043] = {.lex_state = 37, .external_lex_state = 17}, + [1044] = {.lex_state = 102, .external_lex_state = 13}, + [1045] = {.lex_state = 54, .external_lex_state = 17}, [1046] = {.lex_state = 38, .external_lex_state = 18}, - [1047] = {.lex_state = 38, .external_lex_state = 18}, - [1048] = {.lex_state = 102, .external_lex_state = 12}, - [1049] = {.lex_state = 102, .external_lex_state = 12}, - [1050] = {.lex_state = 39, .external_lex_state = 17}, - [1051] = {.lex_state = 802, .external_lex_state = 12}, - [1052] = {.lex_state = 37, .external_lex_state = 17}, - [1053] = {.lex_state = 39, .external_lex_state = 17}, - [1054] = {.lex_state = 102, .external_lex_state = 12}, - [1055] = {.lex_state = 205, .external_lex_state = 12}, - [1056] = {.lex_state = 102, .external_lex_state = 13}, - [1057] = {.lex_state = 102, .external_lex_state = 13}, - [1058] = {.lex_state = 102, .external_lex_state = 19}, - [1059] = {.lex_state = 102, .external_lex_state = 13}, - [1060] = {.lex_state = 102, .external_lex_state = 13}, - [1061] = {.lex_state = 102, .external_lex_state = 13}, - [1062] = {.lex_state = 60, .external_lex_state = 11}, - [1063] = {.lex_state = 60, .external_lex_state = 11}, + [1047] = {.lex_state = 55, .external_lex_state = 18}, + [1048] = {.lex_state = 39, .external_lex_state = 17}, + [1049] = {.lex_state = 40, .external_lex_state = 18}, + [1050] = {.lex_state = 812, .external_lex_state = 12}, + [1051] = {.lex_state = 54, .external_lex_state = 17}, + [1052] = {.lex_state = 102, .external_lex_state = 13}, + [1053] = {.lex_state = 53, .external_lex_state = 18}, + [1054] = {.lex_state = 812, .external_lex_state = 13}, + [1055] = {.lex_state = 301, .external_lex_state = 12}, + [1056] = {.lex_state = 812, .external_lex_state = 12}, + [1057] = {.lex_state = 812, .external_lex_state = 12}, + [1058] = {.lex_state = 102, .external_lex_state = 13}, + [1059] = {.lex_state = 39, .external_lex_state = 17}, + [1060] = {.lex_state = 301, .external_lex_state = 12}, + [1061] = {.lex_state = 812, .external_lex_state = 13}, + [1062] = {.lex_state = 102, .external_lex_state = 12}, + [1063] = {.lex_state = 102, .external_lex_state = 12}, [1064] = {.lex_state = 102, .external_lex_state = 13}, - [1065] = {.lex_state = 102, .external_lex_state = 12}, - [1066] = {.lex_state = 102, .external_lex_state = 13}, - [1067] = {.lex_state = 102, .external_lex_state = 19}, - [1068] = {.lex_state = 102, .external_lex_state = 19}, + [1065] = {.lex_state = 102, .external_lex_state = 19}, + [1066] = {.lex_state = 102, .external_lex_state = 19}, + [1067] = {.lex_state = 102, .external_lex_state = 12}, + [1068] = {.lex_state = 102, .external_lex_state = 13}, [1069] = {.lex_state = 60, .external_lex_state = 11}, - [1070] = {.lex_state = 102, .external_lex_state = 19}, + [1070] = {.lex_state = 102, .external_lex_state = 13}, [1071] = {.lex_state = 60, .external_lex_state = 11}, - [1072] = {.lex_state = 102, .external_lex_state = 12}, + [1072] = {.lex_state = 102, .external_lex_state = 13}, [1073] = {.lex_state = 102, .external_lex_state = 13}, [1074] = {.lex_state = 205, .external_lex_state = 12}, - [1075] = {.lex_state = 102, .external_lex_state = 12}, - [1076] = {.lex_state = 102, .external_lex_state = 19}, - [1077] = {.lex_state = 205, .external_lex_state = 13}, - [1078] = {.lex_state = 63, .external_lex_state = 20}, - [1079] = {.lex_state = 51, .external_lex_state = 18}, - [1080] = {.lex_state = 48, .external_lex_state = 17}, - [1081] = {.lex_state = 49, .external_lex_state = 18}, - [1082] = {.lex_state = 49, .external_lex_state = 18}, - [1083] = {.lex_state = 220, .external_lex_state = 12}, - [1084] = {.lex_state = 51, .external_lex_state = 18}, - [1085] = {.lex_state = 48, .external_lex_state = 17}, - [1086] = {.lex_state = 50, .external_lex_state = 17}, - [1087] = {.lex_state = 205, .external_lex_state = 13}, - [1088] = {.lex_state = 102, .external_lex_state = 12}, - [1089] = {.lex_state = 102, .external_lex_state = 12}, - [1090] = {.lex_state = 102, .external_lex_state = 12}, - [1091] = {.lex_state = 50, .external_lex_state = 17}, - [1092] = {.lex_state = 102, .external_lex_state = 13}, - [1093] = {.lex_state = 220, .external_lex_state = 12}, - [1094] = {.lex_state = 812, .external_lex_state = 12}, - [1095] = {.lex_state = 102, .external_lex_state = 19}, - [1096] = {.lex_state = 102, .external_lex_state = 13}, - [1097] = {.lex_state = 102, .external_lex_state = 13}, - [1098] = {.lex_state = 221, .external_lex_state = 13}, - [1099] = {.lex_state = 102, .external_lex_state = 12}, - [1100] = {.lex_state = 205, .external_lex_state = 19}, - [1101] = {.lex_state = 4, .external_lex_state = 12}, - [1102] = {.lex_state = 63, .external_lex_state = 21}, - [1103] = {.lex_state = 28, .external_lex_state = 12}, - [1104] = {.lex_state = 102, .external_lex_state = 19}, - [1105] = {.lex_state = 102, .external_lex_state = 12}, + [1075] = {.lex_state = 102, .external_lex_state = 19}, + [1076] = {.lex_state = 205, .external_lex_state = 12}, + [1077] = {.lex_state = 60, .external_lex_state = 11}, + [1078] = {.lex_state = 102, .external_lex_state = 13}, + [1079] = {.lex_state = 102, .external_lex_state = 12}, + [1080] = {.lex_state = 102, .external_lex_state = 13}, + [1081] = {.lex_state = 102, .external_lex_state = 12}, + [1082] = {.lex_state = 102, .external_lex_state = 19}, + [1083] = {.lex_state = 60, .external_lex_state = 11}, + [1084] = {.lex_state = 102, .external_lex_state = 13}, + [1085] = {.lex_state = 102, .external_lex_state = 12}, + [1086] = {.lex_state = 49, .external_lex_state = 18}, + [1087] = {.lex_state = 48, .external_lex_state = 17}, + [1088] = {.lex_state = 63, .external_lex_state = 20}, + [1089] = {.lex_state = 50, .external_lex_state = 17}, + [1090] = {.lex_state = 48, .external_lex_state = 17}, + [1091] = {.lex_state = 220, .external_lex_state = 12}, + [1092] = {.lex_state = 50, .external_lex_state = 17}, + [1093] = {.lex_state = 102, .external_lex_state = 12}, + [1094] = {.lex_state = 102, .external_lex_state = 12}, + [1095] = {.lex_state = 220, .external_lex_state = 12}, + [1096] = {.lex_state = 102, .external_lex_state = 19}, + [1097] = {.lex_state = 205, .external_lex_state = 13}, + [1098] = {.lex_state = 49, .external_lex_state = 18}, + [1099] = {.lex_state = 205, .external_lex_state = 13}, + [1100] = {.lex_state = 102, .external_lex_state = 12}, + [1101] = {.lex_state = 102, .external_lex_state = 13}, + [1102] = {.lex_state = 51, .external_lex_state = 18}, + [1103] = {.lex_state = 51, .external_lex_state = 18}, + [1104] = {.lex_state = 221, .external_lex_state = 13}, + [1105] = {.lex_state = 102, .external_lex_state = 19}, [1106] = {.lex_state = 102, .external_lex_state = 12}, - [1107] = {.lex_state = 102, .external_lex_state = 19}, - [1108] = {.lex_state = 205, .external_lex_state = 19}, - [1109] = {.lex_state = 221, .external_lex_state = 13}, - [1110] = {.lex_state = 102, .external_lex_state = 12}, - [1111] = {.lex_state = 102, .external_lex_state = 12}, - [1112] = {.lex_state = 102, .external_lex_state = 12}, - [1113] = {.lex_state = 812, .external_lex_state = 13}, - [1114] = {.lex_state = 5, .external_lex_state = 13}, - [1115] = {.lex_state = 259, .external_lex_state = 13}, - [1116] = {.lex_state = 118, .external_lex_state = 13}, - [1117] = {.lex_state = 53, .external_lex_state = 18}, - [1118] = {.lex_state = 41, .external_lex_state = 12}, - [1119] = {.lex_state = 54, .external_lex_state = 17}, - [1120] = {.lex_state = 53, .external_lex_state = 18}, - [1121] = {.lex_state = 102, .external_lex_state = 13}, - [1122] = {.lex_state = 6, .external_lex_state = 12}, - [1123] = {.lex_state = 812, .external_lex_state = 12}, - [1124] = {.lex_state = 55, .external_lex_state = 18}, - [1125] = {.lex_state = 55, .external_lex_state = 18}, + [1107] = {.lex_state = 102, .external_lex_state = 12}, + [1108] = {.lex_state = 28, .external_lex_state = 12}, + [1109] = {.lex_state = 63, .external_lex_state = 21}, + [1110] = {.lex_state = 221, .external_lex_state = 13}, + [1111] = {.lex_state = 102, .external_lex_state = 19}, + [1112] = {.lex_state = 205, .external_lex_state = 19}, + [1113] = {.lex_state = 205, .external_lex_state = 19}, + [1114] = {.lex_state = 4, .external_lex_state = 12}, + [1115] = {.lex_state = 102, .external_lex_state = 12}, + [1116] = {.lex_state = 102, .external_lex_state = 19}, + [1117] = {.lex_state = 102, .external_lex_state = 12}, + [1118] = {.lex_state = 102, .external_lex_state = 13}, + [1119] = {.lex_state = 102, .external_lex_state = 13}, + [1120] = {.lex_state = 812, .external_lex_state = 12}, + [1121] = {.lex_state = 102, .external_lex_state = 12}, + [1122] = {.lex_state = 102, .external_lex_state = 12}, + [1123] = {.lex_state = 218, .external_lex_state = 12}, + [1124] = {.lex_state = 41, .external_lex_state = 12}, + [1125] = {.lex_state = 116, .external_lex_state = 12}, [1126] = {.lex_state = 54, .external_lex_state = 17}, - [1127] = {.lex_state = 102, .external_lex_state = 19}, - [1128] = {.lex_state = 812, .external_lex_state = 12}, - [1129] = {.lex_state = 102, .external_lex_state = 13}, - [1130] = {.lex_state = 116, .external_lex_state = 12}, - [1131] = {.lex_state = 220, .external_lex_state = 12}, - [1132] = {.lex_state = 29, .external_lex_state = 13}, - [1133] = {.lex_state = 218, .external_lex_state = 12}, - [1134] = {.lex_state = 102, .external_lex_state = 13}, - [1135] = {.lex_state = 812, .external_lex_state = 12}, - [1136] = {.lex_state = 63, .external_lex_state = 11}, - [1137] = {.lex_state = 116, .external_lex_state = 12}, - [1138] = {.lex_state = 118, .external_lex_state = 13}, - [1139] = {.lex_state = 102, .external_lex_state = 13}, - [1140] = {.lex_state = 102, .external_lex_state = 13}, - [1141] = {.lex_state = 52, .external_lex_state = 17}, - [1142] = {.lex_state = 63, .external_lex_state = 11}, - [1143] = {.lex_state = 102, .external_lex_state = 13}, - [1144] = {.lex_state = 52, .external_lex_state = 17}, - [1145] = {.lex_state = 99, .external_lex_state = 12}, - [1146] = {.lex_state = 102, .external_lex_state = 19}, - [1147] = {.lex_state = 99, .external_lex_state = 12}, - [1148] = {.lex_state = 218, .external_lex_state = 12}, - [1149] = {.lex_state = 116, .external_lex_state = 12}, - [1150] = {.lex_state = 812, .external_lex_state = 12}, - [1151] = {.lex_state = 102, .external_lex_state = 19}, - [1152] = {.lex_state = 102, .external_lex_state = 19}, - [1153] = {.lex_state = 102, .external_lex_state = 19}, - [1154] = {.lex_state = 812, .external_lex_state = 13}, - [1155] = {.lex_state = 102, .external_lex_state = 19}, - [1156] = {.lex_state = 99, .external_lex_state = 12}, - [1157] = {.lex_state = 262, .external_lex_state = 12}, - [1158] = {.lex_state = 812, .external_lex_state = 13}, - [1159] = {.lex_state = 42, .external_lex_state = 13}, - [1160] = {.lex_state = 118, .external_lex_state = 13}, - [1161] = {.lex_state = 7, .external_lex_state = 13}, - [1162] = {.lex_state = 812, .external_lex_state = 13}, - [1163] = {.lex_state = 262, .external_lex_state = 12}, - [1164] = {.lex_state = 221, .external_lex_state = 13}, - [1165] = {.lex_state = 262, .external_lex_state = 12}, + [1127] = {.lex_state = 63, .external_lex_state = 11}, + [1128] = {.lex_state = 5, .external_lex_state = 13}, + [1129] = {.lex_state = 102, .external_lex_state = 19}, + [1130] = {.lex_state = 6, .external_lex_state = 12}, + [1131] = {.lex_state = 812, .external_lex_state = 13}, + [1132] = {.lex_state = 54, .external_lex_state = 17}, + [1133] = {.lex_state = 812, .external_lex_state = 12}, + [1134] = {.lex_state = 55, .external_lex_state = 18}, + [1135] = {.lex_state = 55, .external_lex_state = 18}, + [1136] = {.lex_state = 102, .external_lex_state = 13}, + [1137] = {.lex_state = 118, .external_lex_state = 13}, + [1138] = {.lex_state = 102, .external_lex_state = 13}, + [1139] = {.lex_state = 812, .external_lex_state = 12}, + [1140] = {.lex_state = 259, .external_lex_state = 13}, + [1141] = {.lex_state = 116, .external_lex_state = 12}, + [1142] = {.lex_state = 52, .external_lex_state = 17}, + [1143] = {.lex_state = 52, .external_lex_state = 17}, + [1144] = {.lex_state = 102, .external_lex_state = 13}, + [1145] = {.lex_state = 118, .external_lex_state = 13}, + [1146] = {.lex_state = 102, .external_lex_state = 13}, + [1147] = {.lex_state = 102, .external_lex_state = 13}, + [1148] = {.lex_state = 63, .external_lex_state = 11}, + [1149] = {.lex_state = 53, .external_lex_state = 18}, + [1150] = {.lex_state = 53, .external_lex_state = 18}, + [1151] = {.lex_state = 29, .external_lex_state = 13}, + [1152] = {.lex_state = 102, .external_lex_state = 13}, + [1153] = {.lex_state = 812, .external_lex_state = 12}, + [1154] = {.lex_state = 220, .external_lex_state = 12}, + [1155] = {.lex_state = 218, .external_lex_state = 12}, + [1156] = {.lex_state = 812, .external_lex_state = 12}, + [1157] = {.lex_state = 812, .external_lex_state = 13}, + [1158] = {.lex_state = 102, .external_lex_state = 19}, + [1159] = {.lex_state = 262, .external_lex_state = 12}, + [1160] = {.lex_state = 102, .external_lex_state = 19}, + [1161] = {.lex_state = 259, .external_lex_state = 13}, + [1162] = {.lex_state = 118, .external_lex_state = 13}, + [1163] = {.lex_state = 118, .external_lex_state = 13}, + [1164] = {.lex_state = 259, .external_lex_state = 13}, + [1165] = {.lex_state = 7, .external_lex_state = 13}, [1166] = {.lex_state = 262, .external_lex_state = 12}, - [1167] = {.lex_state = 259, .external_lex_state = 13}, - [1168] = {.lex_state = 116, .external_lex_state = 12}, - [1169] = {.lex_state = 116, .external_lex_state = 12}, - [1170] = {.lex_state = 259, .external_lex_state = 13}, - [1171] = {.lex_state = 812, .external_lex_state = 12}, - [1172] = {.lex_state = 218, .external_lex_state = 12}, - [1173] = {.lex_state = 118, .external_lex_state = 13}, + [1167] = {.lex_state = 218, .external_lex_state = 12}, + [1168] = {.lex_state = 99, .external_lex_state = 12}, + [1169] = {.lex_state = 221, .external_lex_state = 13}, + [1170] = {.lex_state = 102, .external_lex_state = 19}, + [1171] = {.lex_state = 102, .external_lex_state = 19}, + [1172] = {.lex_state = 116, .external_lex_state = 12}, + [1173] = {.lex_state = 102, .external_lex_state = 19}, [1174] = {.lex_state = 118, .external_lex_state = 13}, - [1175] = {.lex_state = 102, .external_lex_state = 19}, - [1176] = {.lex_state = 125, .external_lex_state = 12}, - [1177] = {.lex_state = 260, .external_lex_state = 13}, - [1178] = {.lex_state = 812, .external_lex_state = 12}, - [1179] = {.lex_state = 100, .external_lex_state = 13}, - [1180] = {.lex_state = 100, .external_lex_state = 13}, - [1181] = {.lex_state = 812, .external_lex_state = 12}, - [1182] = {.lex_state = 125, .external_lex_state = 12}, - [1183] = {.lex_state = 142, .external_lex_state = 12}, - [1184] = {.lex_state = 812, .external_lex_state = 12}, - [1185] = {.lex_state = 812, .external_lex_state = 12}, - [1186] = {.lex_state = 812, .external_lex_state = 12}, + [1175] = {.lex_state = 116, .external_lex_state = 12}, + [1176] = {.lex_state = 812, .external_lex_state = 13}, + [1177] = {.lex_state = 812, .external_lex_state = 12}, + [1178] = {.lex_state = 102, .external_lex_state = 19}, + [1179] = {.lex_state = 42, .external_lex_state = 13}, + [1180] = {.lex_state = 116, .external_lex_state = 12}, + [1181] = {.lex_state = 99, .external_lex_state = 12}, + [1182] = {.lex_state = 99, .external_lex_state = 12}, + [1183] = {.lex_state = 262, .external_lex_state = 12}, + [1184] = {.lex_state = 812, .external_lex_state = 13}, + [1185] = {.lex_state = 262, .external_lex_state = 12}, + [1186] = {.lex_state = 200, .external_lex_state = 12}, [1187] = {.lex_state = 812, .external_lex_state = 12}, - [1188] = {.lex_state = 100, .external_lex_state = 13}, - [1189] = {.lex_state = 133, .external_lex_state = 12}, - [1190] = {.lex_state = 135, .external_lex_state = 12}, - [1191] = {.lex_state = 812, .external_lex_state = 12}, - [1192] = {.lex_state = 812, .external_lex_state = 12}, - [1193] = {.lex_state = 812, .external_lex_state = 12}, - [1194] = {.lex_state = 812, .external_lex_state = 12}, - [1195] = {.lex_state = 125, .external_lex_state = 12}, - [1196] = {.lex_state = 125, .external_lex_state = 12}, - [1197] = {.lex_state = 125, .external_lex_state = 12}, + [1188] = {.lex_state = 812, .external_lex_state = 12}, + [1189] = {.lex_state = 812, .external_lex_state = 13}, + [1190] = {.lex_state = 125, .external_lex_state = 12}, + [1191] = {.lex_state = 142, .external_lex_state = 12}, + [1192] = {.lex_state = 142, .external_lex_state = 12}, + [1193] = {.lex_state = 125, .external_lex_state = 12}, + [1194] = {.lex_state = 125, .external_lex_state = 12}, + [1195] = {.lex_state = 812, .external_lex_state = 12}, + [1196] = {.lex_state = 812, .external_lex_state = 12}, + [1197] = {.lex_state = 812, .external_lex_state = 12}, [1198] = {.lex_state = 812, .external_lex_state = 12}, - [1199] = {.lex_state = 135, .external_lex_state = 12}, - [1200] = {.lex_state = 142, .external_lex_state = 12}, + [1199] = {.lex_state = 125, .external_lex_state = 12}, + [1200] = {.lex_state = 100, .external_lex_state = 13}, [1201] = {.lex_state = 812, .external_lex_state = 12}, [1202] = {.lex_state = 812, .external_lex_state = 12}, - [1203] = {.lex_state = 812, .external_lex_state = 12}, - [1204] = {.lex_state = 117, .external_lex_state = 12}, - [1205] = {.lex_state = 133, .external_lex_state = 12}, - [1206] = {.lex_state = 219, .external_lex_state = 12}, - [1207] = {.lex_state = 117, .external_lex_state = 12}, - [1208] = {.lex_state = 812, .external_lex_state = 12}, - [1209] = {.lex_state = 70, .external_lex_state = 12}, - [1210] = {.lex_state = 133, .external_lex_state = 12}, + [1203] = {.lex_state = 142, .external_lex_state = 12}, + [1204] = {.lex_state = 135, .external_lex_state = 12}, + [1205] = {.lex_state = 812, .external_lex_state = 12}, + [1206] = {.lex_state = 135, .external_lex_state = 12}, + [1207] = {.lex_state = 135, .external_lex_state = 12}, + [1208] = {.lex_state = 135, .external_lex_state = 12}, + [1209] = {.lex_state = 127, .external_lex_state = 12}, + [1210] = {.lex_state = 135, .external_lex_state = 12}, [1211] = {.lex_state = 812, .external_lex_state = 12}, - [1212] = {.lex_state = 200, .external_lex_state = 12}, - [1213] = {.lex_state = 142, .external_lex_state = 12}, - [1214] = {.lex_state = 812, .external_lex_state = 13}, + [1212] = {.lex_state = 812, .external_lex_state = 12}, + [1213] = {.lex_state = 812, .external_lex_state = 12}, + [1214] = {.lex_state = 812, .external_lex_state = 12}, [1215] = {.lex_state = 142, .external_lex_state = 12}, - [1216] = {.lex_state = 135, .external_lex_state = 12}, - [1217] = {.lex_state = 135, .external_lex_state = 12}, - [1218] = {.lex_state = 127, .external_lex_state = 12}, - [1219] = {.lex_state = 135, .external_lex_state = 12}, - [1220] = {.lex_state = 812, .external_lex_state = 12}, - [1221] = {.lex_state = 119, .external_lex_state = 13}, - [1222] = {.lex_state = 812, .external_lex_state = 12}, - [1223] = {.lex_state = 142, .external_lex_state = 12}, + [1216] = {.lex_state = 812, .external_lex_state = 12}, + [1217] = {.lex_state = 219, .external_lex_state = 12}, + [1218] = {.lex_state = 133, .external_lex_state = 12}, + [1219] = {.lex_state = 70, .external_lex_state = 12}, + [1220] = {.lex_state = 260, .external_lex_state = 13}, + [1221] = {.lex_state = 125, .external_lex_state = 12}, + [1222] = {.lex_state = 133, .external_lex_state = 12}, + [1223] = {.lex_state = 133, .external_lex_state = 12}, [1224] = {.lex_state = 142, .external_lex_state = 12}, - [1225] = {.lex_state = 133, .external_lex_state = 12}, - [1226] = {.lex_state = 142, .external_lex_state = 12}, - [1227] = {.lex_state = 119, .external_lex_state = 13}, - [1228] = {.lex_state = 142, .external_lex_state = 12}, + [1225] = {.lex_state = 100, .external_lex_state = 13}, + [1226] = {.lex_state = 100, .external_lex_state = 13}, + [1227] = {.lex_state = 812, .external_lex_state = 12}, + [1228] = {.lex_state = 117, .external_lex_state = 12}, [1229] = {.lex_state = 133, .external_lex_state = 12}, - [1230] = {.lex_state = 812, .external_lex_state = 13}, - [1231] = {.lex_state = 812, .external_lex_state = 13}, - [1232] = {.lex_state = 126, .external_lex_state = 13}, - [1233] = {.lex_state = 119, .external_lex_state = 13}, - [1234] = {.lex_state = 119, .external_lex_state = 13}, - [1235] = {.lex_state = 261, .external_lex_state = 12}, - [1236] = {.lex_state = 260, .external_lex_state = 13}, - [1237] = {.lex_state = 119, .external_lex_state = 13}, - [1238] = {.lex_state = 812, .external_lex_state = 13}, - [1239] = {.lex_state = 137, .external_lex_state = 12}, - [1240] = {.lex_state = 142, .external_lex_state = 13}, - [1241] = {.lex_state = 137, .external_lex_state = 12}, - [1242] = {.lex_state = 264, .external_lex_state = 12}, - [1243] = {.lex_state = 812, .external_lex_state = 13}, - [1244] = {.lex_state = 31, .external_lex_state = 18}, - [1245] = {.lex_state = 120, .external_lex_state = 12}, - [1246] = {.lex_state = 31, .external_lex_state = 17}, - [1247] = {.lex_state = 140, .external_lex_state = 13}, - [1248] = {.lex_state = 812, .external_lex_state = 13}, - [1249] = {.lex_state = 812, .external_lex_state = 13}, - [1250] = {.lex_state = 812, .external_lex_state = 13}, - [1251] = {.lex_state = 254, .external_lex_state = 12}, - [1252] = {.lex_state = 42, .external_lex_state = 12}, - [1253] = {.lex_state = 42, .external_lex_state = 12}, - [1254] = {.lex_state = 138, .external_lex_state = 13}, - [1255] = {.lex_state = 812, .external_lex_state = 13}, - [1256] = {.lex_state = 44, .external_lex_state = 12}, - [1257] = {.lex_state = 812, .external_lex_state = 13}, - [1258] = {.lex_state = 812, .external_lex_state = 13}, - [1259] = {.lex_state = 254, .external_lex_state = 12}, - [1260] = {.lex_state = 138, .external_lex_state = 13}, - [1261] = {.lex_state = 812, .external_lex_state = 13}, - [1262] = {.lex_state = 140, .external_lex_state = 13}, - [1263] = {.lex_state = 140, .external_lex_state = 13}, - [1264] = {.lex_state = 42, .external_lex_state = 12}, - [1265] = {.lex_state = 126, .external_lex_state = 13}, - [1266] = {.lex_state = 812, .external_lex_state = 13}, - [1267] = {.lex_state = 42, .external_lex_state = 12}, - [1268] = {.lex_state = 200, .external_lex_state = 13}, - [1269] = {.lex_state = 142, .external_lex_state = 13}, - [1270] = {.lex_state = 31, .external_lex_state = 17}, - [1271] = {.lex_state = 812, .external_lex_state = 13}, - [1272] = {.lex_state = 142, .external_lex_state = 13}, - [1273] = {.lex_state = 142, .external_lex_state = 13}, - [1274] = {.lex_state = 260, .external_lex_state = 13}, - [1275] = {.lex_state = 812, .external_lex_state = 12}, - [1276] = {.lex_state = 119, .external_lex_state = 22}, - [1277] = {.lex_state = 120, .external_lex_state = 12}, + [1230] = {.lex_state = 133, .external_lex_state = 12}, + [1231] = {.lex_state = 812, .external_lex_state = 12}, + [1232] = {.lex_state = 119, .external_lex_state = 13}, + [1233] = {.lex_state = 142, .external_lex_state = 12}, + [1234] = {.lex_state = 142, .external_lex_state = 12}, + [1235] = {.lex_state = 119, .external_lex_state = 13}, + [1236] = {.lex_state = 812, .external_lex_state = 12}, + [1237] = {.lex_state = 142, .external_lex_state = 12}, + [1238] = {.lex_state = 812, .external_lex_state = 12}, + [1239] = {.lex_state = 812, .external_lex_state = 13}, + [1240] = {.lex_state = 117, .external_lex_state = 12}, + [1241] = {.lex_state = 812, .external_lex_state = 13}, + [1242] = {.lex_state = 120, .external_lex_state = 12}, + [1243] = {.lex_state = 117, .external_lex_state = 12}, + [1244] = {.lex_state = 131, .external_lex_state = 13}, + [1245] = {.lex_state = 142, .external_lex_state = 13}, + [1246] = {.lex_state = 71, .external_lex_state = 13}, + [1247] = {.lex_state = 219, .external_lex_state = 12}, + [1248] = {.lex_state = 117, .external_lex_state = 12}, + [1249] = {.lex_state = 117, .external_lex_state = 12}, + [1250] = {.lex_state = 219, .external_lex_state = 12}, + [1251] = {.lex_state = 200, .external_lex_state = 13}, + [1252] = {.lex_state = 142, .external_lex_state = 13}, + [1253] = {.lex_state = 142, .external_lex_state = 13}, + [1254] = {.lex_state = 137, .external_lex_state = 12}, + [1255] = {.lex_state = 812, .external_lex_state = 12}, + [1256] = {.lex_state = 142, .external_lex_state = 13}, + [1257] = {.lex_state = 140, .external_lex_state = 13}, + [1258] = {.lex_state = 31, .external_lex_state = 18}, + [1259] = {.lex_state = 119, .external_lex_state = 22}, + [1260] = {.lex_state = 137, .external_lex_state = 12}, + [1261] = {.lex_state = 31, .external_lex_state = 18}, + [1262] = {.lex_state = 44, .external_lex_state = 12}, + [1263] = {.lex_state = 42, .external_lex_state = 12}, + [1264] = {.lex_state = 126, .external_lex_state = 13}, + [1265] = {.lex_state = 137, .external_lex_state = 12}, + [1266] = {.lex_state = 42, .external_lex_state = 12}, + [1267] = {.lex_state = 812, .external_lex_state = 13}, + [1268] = {.lex_state = 140, .external_lex_state = 13}, + [1269] = {.lex_state = 137, .external_lex_state = 12}, + [1270] = {.lex_state = 140, .external_lex_state = 13}, + [1271] = {.lex_state = 126, .external_lex_state = 13}, + [1272] = {.lex_state = 812, .external_lex_state = 13}, + [1273] = {.lex_state = 812, .external_lex_state = 13}, + [1274] = {.lex_state = 812, .external_lex_state = 13}, + [1275] = {.lex_state = 31, .external_lex_state = 17}, + [1276] = {.lex_state = 137, .external_lex_state = 12}, + [1277] = {.lex_state = 260, .external_lex_state = 22}, [1278] = {.lex_state = 142, .external_lex_state = 13}, - [1279] = {.lex_state = 142, .external_lex_state = 13}, - [1280] = {.lex_state = 219, .external_lex_state = 12}, - [1281] = {.lex_state = 117, .external_lex_state = 12}, - [1282] = {.lex_state = 117, .external_lex_state = 12}, + [1279] = {.lex_state = 261, .external_lex_state = 12}, + [1280] = {.lex_state = 31, .external_lex_state = 18}, + [1281] = {.lex_state = 119, .external_lex_state = 22}, + [1282] = {.lex_state = 31, .external_lex_state = 18}, [1283] = {.lex_state = 44, .external_lex_state = 12}, - [1284] = {.lex_state = 219, .external_lex_state = 12}, - [1285] = {.lex_state = 126, .external_lex_state = 13}, - [1286] = {.lex_state = 31, .external_lex_state = 18}, - [1287] = {.lex_state = 138, .external_lex_state = 13}, - [1288] = {.lex_state = 254, .external_lex_state = 12}, - [1289] = {.lex_state = 254, .external_lex_state = 12}, - [1290] = {.lex_state = 117, .external_lex_state = 12}, - [1291] = {.lex_state = 260, .external_lex_state = 22}, - [1292] = {.lex_state = 119, .external_lex_state = 22}, - [1293] = {.lex_state = 131, .external_lex_state = 13}, - [1294] = {.lex_state = 7, .external_lex_state = 12}, - [1295] = {.lex_state = 138, .external_lex_state = 13}, - [1296] = {.lex_state = 261, .external_lex_state = 12}, - [1297] = {.lex_state = 138, .external_lex_state = 13}, - [1298] = {.lex_state = 812, .external_lex_state = 13}, - [1299] = {.lex_state = 56, .external_lex_state = 23}, - [1300] = {.lex_state = 31, .external_lex_state = 17}, - [1301] = {.lex_state = 126, .external_lex_state = 13}, - [1302] = {.lex_state = 126, .external_lex_state = 13}, - [1303] = {.lex_state = 31, .external_lex_state = 17}, - [1304] = {.lex_state = 137, .external_lex_state = 12}, - [1305] = {.lex_state = 137, .external_lex_state = 12}, - [1306] = {.lex_state = 137, .external_lex_state = 12}, - [1307] = {.lex_state = 812, .external_lex_state = 13}, - [1308] = {.lex_state = 140, .external_lex_state = 13}, - [1309] = {.lex_state = 31, .external_lex_state = 18}, - [1310] = {.lex_state = 142, .external_lex_state = 13}, - [1311] = {.lex_state = 142, .external_lex_state = 13}, - [1312] = {.lex_state = 140, .external_lex_state = 13}, - [1313] = {.lex_state = 812, .external_lex_state = 13}, - [1314] = {.lex_state = 31, .external_lex_state = 18}, - [1315] = {.lex_state = 812, .external_lex_state = 13}, - [1316] = {.lex_state = 71, .external_lex_state = 13}, - [1317] = {.lex_state = 142, .external_lex_state = 12}, - [1318] = {.lex_state = 812, .external_lex_state = 13}, + [1284] = {.lex_state = 260, .external_lex_state = 13}, + [1285] = {.lex_state = 42, .external_lex_state = 12}, + [1286] = {.lex_state = 42, .external_lex_state = 12}, + [1287] = {.lex_state = 119, .external_lex_state = 13}, + [1288] = {.lex_state = 812, .external_lex_state = 13}, + [1289] = {.lex_state = 812, .external_lex_state = 13}, + [1290] = {.lex_state = 140, .external_lex_state = 13}, + [1291] = {.lex_state = 140, .external_lex_state = 13}, + [1292] = {.lex_state = 126, .external_lex_state = 13}, + [1293] = {.lex_state = 812, .external_lex_state = 13}, + [1294] = {.lex_state = 126, .external_lex_state = 13}, + [1295] = {.lex_state = 31, .external_lex_state = 17}, + [1296] = {.lex_state = 812, .external_lex_state = 13}, + [1297] = {.lex_state = 261, .external_lex_state = 12}, + [1298] = {.lex_state = 119, .external_lex_state = 13}, + [1299] = {.lex_state = 142, .external_lex_state = 13}, + [1300] = {.lex_state = 260, .external_lex_state = 13}, + [1301] = {.lex_state = 812, .external_lex_state = 13}, + [1302] = {.lex_state = 254, .external_lex_state = 12}, + [1303] = {.lex_state = 812, .external_lex_state = 13}, + [1304] = {.lex_state = 254, .external_lex_state = 12}, + [1305] = {.lex_state = 126, .external_lex_state = 13}, + [1306] = {.lex_state = 812, .external_lex_state = 13}, + [1307] = {.lex_state = 142, .external_lex_state = 12}, + [1308] = {.lex_state = 119, .external_lex_state = 13}, + [1309] = {.lex_state = 138, .external_lex_state = 13}, + [1310] = {.lex_state = 812, .external_lex_state = 13}, + [1311] = {.lex_state = 812, .external_lex_state = 13}, + [1312] = {.lex_state = 812, .external_lex_state = 13}, + [1313] = {.lex_state = 138, .external_lex_state = 13}, + [1314] = {.lex_state = 138, .external_lex_state = 13}, + [1315] = {.lex_state = 120, .external_lex_state = 12}, + [1316] = {.lex_state = 7, .external_lex_state = 12}, + [1317] = {.lex_state = 264, .external_lex_state = 12}, + [1318] = {.lex_state = 31, .external_lex_state = 17}, [1319] = {.lex_state = 254, .external_lex_state = 12}, - [1320] = {.lex_state = 56, .external_lex_state = 24}, - [1321] = {.lex_state = 31, .external_lex_state = 17}, - [1322] = {.lex_state = 254, .external_lex_state = 12}, - [1323] = {.lex_state = 8, .external_lex_state = 12}, - [1324] = {.lex_state = 812, .external_lex_state = 12}, - [1325] = {.lex_state = 805, .external_lex_state = 12}, - [1326] = {.lex_state = 99, .external_lex_state = 12}, - [1327] = {.lex_state = 120, .external_lex_state = 12}, + [1320] = {.lex_state = 31, .external_lex_state = 17}, + [1321] = {.lex_state = 138, .external_lex_state = 13}, + [1322] = {.lex_state = 138, .external_lex_state = 13}, + [1323] = {.lex_state = 142, .external_lex_state = 13}, + [1324] = {.lex_state = 142, .external_lex_state = 13}, + [1325] = {.lex_state = 254, .external_lex_state = 12}, + [1326] = {.lex_state = 56, .external_lex_state = 23}, + [1327] = {.lex_state = 812, .external_lex_state = 13}, [1328] = {.lex_state = 804, .external_lex_state = 12}, - [1329] = {.lex_state = 142, .external_lex_state = 13}, - [1330] = {.lex_state = 31, .external_lex_state = 17}, - [1331] = {.lex_state = 31, .external_lex_state = 18}, - [1332] = {.lex_state = 812, .external_lex_state = 12}, - [1333] = {.lex_state = 31, .external_lex_state = 17}, - [1334] = {.lex_state = 264, .external_lex_state = 12}, - [1335] = {.lex_state = 812, .external_lex_state = 12}, - [1336] = {.lex_state = 142, .external_lex_state = 12}, - [1337] = {.lex_state = 805, .external_lex_state = 12}, - [1338] = {.lex_state = 97, .external_lex_state = 12}, - [1339] = {.lex_state = 260, .external_lex_state = 22}, - [1340] = {.lex_state = 46, .external_lex_state = 25}, - [1341] = {.lex_state = 805, .external_lex_state = 12}, - [1342] = {.lex_state = 119, .external_lex_state = 22}, - [1343] = {.lex_state = 46, .external_lex_state = 25}, - [1344] = {.lex_state = 119, .external_lex_state = 22}, - [1345] = {.lex_state = 812, .external_lex_state = 12}, - [1346] = {.lex_state = 8, .external_lex_state = 12}, - [1347] = {.lex_state = 226, .external_lex_state = 12}, - [1348] = {.lex_state = 142, .external_lex_state = 12}, - [1349] = {.lex_state = 141, .external_lex_state = 13}, - [1350] = {.lex_state = 804, .external_lex_state = 12}, + [1329] = {.lex_state = 31, .external_lex_state = 18}, + [1330] = {.lex_state = 260, .external_lex_state = 22}, + [1331] = {.lex_state = 254, .external_lex_state = 12}, + [1332] = {.lex_state = 97, .external_lex_state = 12}, + [1333] = {.lex_state = 31, .external_lex_state = 18}, + [1334] = {.lex_state = 119, .external_lex_state = 22}, + [1335] = {.lex_state = 46, .external_lex_state = 24}, + [1336] = {.lex_state = 119, .external_lex_state = 22}, + [1337] = {.lex_state = 46, .external_lex_state = 24}, + [1338] = {.lex_state = 226, .external_lex_state = 12}, + [1339] = {.lex_state = 812, .external_lex_state = 12}, + [1340] = {.lex_state = 226, .external_lex_state = 12}, + [1341] = {.lex_state = 812, .external_lex_state = 12}, + [1342] = {.lex_state = 142, .external_lex_state = 12}, + [1343] = {.lex_state = 56, .external_lex_state = 25}, + [1344] = {.lex_state = 31, .external_lex_state = 17}, + [1345] = {.lex_state = 46, .external_lex_state = 24}, + [1346] = {.lex_state = 141, .external_lex_state = 13}, + [1347] = {.lex_state = 141, .external_lex_state = 13}, + [1348] = {.lex_state = 805, .external_lex_state = 12}, + [1349] = {.lex_state = 8, .external_lex_state = 12}, + [1350] = {.lex_state = 99, .external_lex_state = 12}, [1351] = {.lex_state = 97, .external_lex_state = 12}, - [1352] = {.lex_state = 141, .external_lex_state = 13}, - [1353] = {.lex_state = 141, .external_lex_state = 13}, - [1354] = {.lex_state = 804, .external_lex_state = 12}, - [1355] = {.lex_state = 31, .external_lex_state = 17}, + [1352] = {.lex_state = 260, .external_lex_state = 22}, + [1353] = {.lex_state = 791, .external_lex_state = 15}, + [1354] = {.lex_state = 805, .external_lex_state = 12}, + [1355] = {.lex_state = 119, .external_lex_state = 22}, [1356] = {.lex_state = 31, .external_lex_state = 17}, - [1357] = {.lex_state = 8, .external_lex_state = 12}, + [1357] = {.lex_state = 120, .external_lex_state = 12}, [1358] = {.lex_state = 31, .external_lex_state = 18}, - [1359] = {.lex_state = 226, .external_lex_state = 12}, - [1360] = {.lex_state = 120, .external_lex_state = 12}, - [1361] = {.lex_state = 120, .external_lex_state = 12}, + [1359] = {.lex_state = 209, .external_lex_state = 12}, + [1360] = {.lex_state = 31, .external_lex_state = 18}, + [1361] = {.lex_state = 805, .external_lex_state = 12}, [1362] = {.lex_state = 264, .external_lex_state = 12}, - [1363] = {.lex_state = 46, .external_lex_state = 25}, - [1364] = {.lex_state = 31, .external_lex_state = 18}, - [1365] = {.lex_state = 46, .external_lex_state = 25}, - [1366] = {.lex_state = 142, .external_lex_state = 12}, - [1367] = {.lex_state = 226, .external_lex_state = 12}, - [1368] = {.lex_state = 260, .external_lex_state = 22}, - [1369] = {.lex_state = 119, .external_lex_state = 22}, - [1370] = {.lex_state = 141, .external_lex_state = 13}, - [1371] = {.lex_state = 141, .external_lex_state = 13}, - [1372] = {.lex_state = 97, .external_lex_state = 12}, - [1373] = {.lex_state = 46, .external_lex_state = 25}, - [1374] = {.lex_state = 31, .external_lex_state = 18}, - [1375] = {.lex_state = 226, .external_lex_state = 12}, - [1376] = {.lex_state = 31, .external_lex_state = 18}, - [1377] = {.lex_state = 791, .external_lex_state = 15}, - [1378] = {.lex_state = 223, .external_lex_state = 12}, - [1379] = {.lex_state = 31, .external_lex_state = 17}, - [1380] = {.lex_state = 209, .external_lex_state = 12}, - [1381] = {.lex_state = 791, .external_lex_state = 15}, - [1382] = {.lex_state = 812, .external_lex_state = 12}, - [1383] = {.lex_state = 31, .external_lex_state = 17}, - [1384] = {.lex_state = 31, .external_lex_state = 18}, - [1385] = {.lex_state = 791, .external_lex_state = 15}, - [1386] = {.lex_state = 31, .external_lex_state = 18}, - [1387] = {.lex_state = 10, .external_lex_state = 13}, - [1388] = {.lex_state = 10, .external_lex_state = 13}, - [1389] = {.lex_state = 31, .external_lex_state = 18}, - [1390] = {.lex_state = 31, .external_lex_state = 17}, - [1391] = {.lex_state = 10, .external_lex_state = 13}, - [1392] = {.lex_state = 103, .external_lex_state = 26}, - [1393] = {.lex_state = 259, .external_lex_state = 13}, - [1394] = {.lex_state = 263, .external_lex_state = 12}, - [1395] = {.lex_state = 259, .external_lex_state = 13}, - [1396] = {.lex_state = 126, .external_lex_state = 12}, - [1397] = {.lex_state = 126, .external_lex_state = 12}, + [1363] = {.lex_state = 791, .external_lex_state = 15}, + [1364] = {.lex_state = 791, .external_lex_state = 15}, + [1365] = {.lex_state = 97, .external_lex_state = 12}, + [1366] = {.lex_state = 31, .external_lex_state = 17}, + [1367] = {.lex_state = 812, .external_lex_state = 12}, + [1368] = {.lex_state = 46, .external_lex_state = 24}, + [1369] = {.lex_state = 804, .external_lex_state = 12}, + [1370] = {.lex_state = 804, .external_lex_state = 12}, + [1371] = {.lex_state = 8, .external_lex_state = 12}, + [1372] = {.lex_state = 254, .external_lex_state = 12}, + [1373] = {.lex_state = 120, .external_lex_state = 12}, + [1374] = {.lex_state = 8, .external_lex_state = 12}, + [1375] = {.lex_state = 812, .external_lex_state = 13}, + [1376] = {.lex_state = 120, .external_lex_state = 12}, + [1377] = {.lex_state = 31, .external_lex_state = 17}, + [1378] = {.lex_state = 31, .external_lex_state = 17}, + [1379] = {.lex_state = 142, .external_lex_state = 12}, + [1380] = {.lex_state = 142, .external_lex_state = 12}, + [1381] = {.lex_state = 31, .external_lex_state = 18}, + [1382] = {.lex_state = 226, .external_lex_state = 12}, + [1383] = {.lex_state = 141, .external_lex_state = 13}, + [1384] = {.lex_state = 812, .external_lex_state = 12}, + [1385] = {.lex_state = 141, .external_lex_state = 13}, + [1386] = {.lex_state = 46, .external_lex_state = 24}, + [1387] = {.lex_state = 142, .external_lex_state = 13}, + [1388] = {.lex_state = 141, .external_lex_state = 13}, + [1389] = {.lex_state = 31, .external_lex_state = 17}, + [1390] = {.lex_state = 223, .external_lex_state = 12}, + [1391] = {.lex_state = 264, .external_lex_state = 12}, + [1392] = {.lex_state = 226, .external_lex_state = 12}, + [1393] = {.lex_state = 31, .external_lex_state = 18}, + [1394] = {.lex_state = 812, .external_lex_state = 12}, + [1395] = {.lex_state = 31, .external_lex_state = 18}, + [1396] = {.lex_state = 31, .external_lex_state = 17}, + [1397] = {.lex_state = 263, .external_lex_state = 12}, [1398] = {.lex_state = 263, .external_lex_state = 12}, - [1399] = {.lex_state = 63, .external_lex_state = 15}, - [1400] = {.lex_state = 142, .external_lex_state = 12}, - [1401] = {.lex_state = 263, .external_lex_state = 12}, - [1402] = {.lex_state = 9, .external_lex_state = 12}, - [1403] = {.lex_state = 126, .external_lex_state = 12}, - [1404] = {.lex_state = 126, .external_lex_state = 12}, - [1405] = {.lex_state = 812, .external_lex_state = 27}, - [1406] = {.lex_state = 98, .external_lex_state = 13}, - [1407] = {.lex_state = 100, .external_lex_state = 13}, - [1408] = {.lex_state = 98, .external_lex_state = 13}, - [1409] = {.lex_state = 126, .external_lex_state = 12}, - [1410] = {.lex_state = 126, .external_lex_state = 12}, + [1399] = {.lex_state = 812, .external_lex_state = 12}, + [1400] = {.lex_state = 31, .external_lex_state = 18}, + [1401] = {.lex_state = 812, .external_lex_state = 12}, + [1402] = {.lex_state = 130, .external_lex_state = 12}, + [1403] = {.lex_state = 805, .external_lex_state = 13}, + [1404] = {.lex_state = 134, .external_lex_state = 12}, + [1405] = {.lex_state = 134, .external_lex_state = 12}, + [1406] = {.lex_state = 263, .external_lex_state = 12}, + [1407] = {.lex_state = 263, .external_lex_state = 12}, + [1408] = {.lex_state = 263, .external_lex_state = 12}, + [1409] = {.lex_state = 12, .external_lex_state = 12}, + [1410] = {.lex_state = 263, .external_lex_state = 12}, [1411] = {.lex_state = 263, .external_lex_state = 12}, - [1412] = {.lex_state = 31, .external_lex_state = 18}, - [1413] = {.lex_state = 263, .external_lex_state = 12}, + [1412] = {.lex_state = 263, .external_lex_state = 12}, + [1413] = {.lex_state = 142, .external_lex_state = 12}, [1414] = {.lex_state = 263, .external_lex_state = 12}, [1415] = {.lex_state = 263, .external_lex_state = 12}, - [1416] = {.lex_state = 47, .external_lex_state = 28}, - [1417] = {.lex_state = 130, .external_lex_state = 12}, - [1418] = {.lex_state = 218, .external_lex_state = 12}, - [1419] = {.lex_state = 263, .external_lex_state = 12}, - [1420] = {.lex_state = 126, .external_lex_state = 12}, - [1421] = {.lex_state = 123, .external_lex_state = 12}, - [1422] = {.lex_state = 142, .external_lex_state = 12}, - [1423] = {.lex_state = 218, .external_lex_state = 12}, - [1424] = {.lex_state = 47, .external_lex_state = 28}, - [1425] = {.lex_state = 103, .external_lex_state = 26}, - [1426] = {.lex_state = 47, .external_lex_state = 28}, - [1427] = {.lex_state = 812, .external_lex_state = 12}, - [1428] = {.lex_state = 812, .external_lex_state = 12}, - [1429] = {.lex_state = 56, .external_lex_state = 23}, - [1430] = {.lex_state = 9, .external_lex_state = 12}, - [1431] = {.lex_state = 130, .external_lex_state = 12}, + [1416] = {.lex_state = 98, .external_lex_state = 13}, + [1417] = {.lex_state = 47, .external_lex_state = 26}, + [1418] = {.lex_state = 126, .external_lex_state = 12}, + [1419] = {.lex_state = 31, .external_lex_state = 18}, + [1420] = {.lex_state = 263, .external_lex_state = 12}, + [1421] = {.lex_state = 209, .external_lex_state = 12}, + [1422] = {.lex_state = 126, .external_lex_state = 12}, + [1423] = {.lex_state = 103, .external_lex_state = 27}, + [1424] = {.lex_state = 263, .external_lex_state = 12}, + [1425] = {.lex_state = 98, .external_lex_state = 13}, + [1426] = {.lex_state = 12, .external_lex_state = 12}, + [1427] = {.lex_state = 263, .external_lex_state = 12}, + [1428] = {.lex_state = 103, .external_lex_state = 27}, + [1429] = {.lex_state = 103, .external_lex_state = 27}, + [1430] = {.lex_state = 263, .external_lex_state = 12}, + [1431] = {.lex_state = 263, .external_lex_state = 12}, [1432] = {.lex_state = 263, .external_lex_state = 12}, - [1433] = {.lex_state = 63, .external_lex_state = 15}, - [1434] = {.lex_state = 31, .external_lex_state = 17}, + [1433] = {.lex_state = 134, .external_lex_state = 12}, + [1434] = {.lex_state = 134, .external_lex_state = 12}, [1435] = {.lex_state = 263, .external_lex_state = 12}, - [1436] = {.lex_state = 31, .external_lex_state = 17}, + [1436] = {.lex_state = 126, .external_lex_state = 12}, [1437] = {.lex_state = 263, .external_lex_state = 12}, - [1438] = {.lex_state = 263, .external_lex_state = 12}, - [1439] = {.lex_state = 209, .external_lex_state = 12}, - [1440] = {.lex_state = 103, .external_lex_state = 26}, - [1441] = {.lex_state = 103, .external_lex_state = 26}, - [1442] = {.lex_state = 9, .external_lex_state = 12}, - [1443] = {.lex_state = 12, .external_lex_state = 12}, - [1444] = {.lex_state = 125, .external_lex_state = 12}, - [1445] = {.lex_state = 8, .external_lex_state = 12}, - [1446] = {.lex_state = 134, .external_lex_state = 12}, - [1447] = {.lex_state = 134, .external_lex_state = 12}, - [1448] = {.lex_state = 142, .external_lex_state = 13}, - [1449] = {.lex_state = 31, .external_lex_state = 18}, - [1450] = {.lex_state = 805, .external_lex_state = 13}, - [1451] = {.lex_state = 649, .external_lex_state = 13}, - [1452] = {.lex_state = 47, .external_lex_state = 28}, - [1453] = {.lex_state = 263, .external_lex_state = 12}, - [1454] = {.lex_state = 142, .external_lex_state = 13}, - [1455] = {.lex_state = 263, .external_lex_state = 12}, - [1456] = {.lex_state = 47, .external_lex_state = 28}, - [1457] = {.lex_state = 804, .external_lex_state = 13}, - [1458] = {.lex_state = 31, .external_lex_state = 17}, - [1459] = {.lex_state = 31, .external_lex_state = 17}, + [1438] = {.lex_state = 805, .external_lex_state = 13}, + [1439] = {.lex_state = 63, .external_lex_state = 15}, + [1440] = {.lex_state = 218, .external_lex_state = 12}, + [1441] = {.lex_state = 263, .external_lex_state = 12}, + [1442] = {.lex_state = 126, .external_lex_state = 12}, + [1443] = {.lex_state = 126, .external_lex_state = 12}, + [1444] = {.lex_state = 142, .external_lex_state = 12}, + [1445] = {.lex_state = 126, .external_lex_state = 12}, + [1446] = {.lex_state = 263, .external_lex_state = 12}, + [1447] = {.lex_state = 100, .external_lex_state = 13}, + [1448] = {.lex_state = 263, .external_lex_state = 12}, + [1449] = {.lex_state = 98, .external_lex_state = 13}, + [1450] = {.lex_state = 263, .external_lex_state = 12}, + [1451] = {.lex_state = 12, .external_lex_state = 12}, + [1452] = {.lex_state = 63, .external_lex_state = 15}, + [1453] = {.lex_state = 47, .external_lex_state = 26}, + [1454] = {.lex_state = 8, .external_lex_state = 12}, + [1455] = {.lex_state = 218, .external_lex_state = 12}, + [1456] = {.lex_state = 134, .external_lex_state = 12}, + [1457] = {.lex_state = 263, .external_lex_state = 12}, + [1458] = {.lex_state = 103, .external_lex_state = 27}, + [1459] = {.lex_state = 263, .external_lex_state = 12}, [1460] = {.lex_state = 263, .external_lex_state = 12}, [1461] = {.lex_state = 263, .external_lex_state = 12}, - [1462] = {.lex_state = 134, .external_lex_state = 12}, - [1463] = {.lex_state = 142, .external_lex_state = 13}, - [1464] = {.lex_state = 12, .external_lex_state = 12}, - [1465] = {.lex_state = 263, .external_lex_state = 12}, - [1466] = {.lex_state = 804, .external_lex_state = 13}, - [1467] = {.lex_state = 134, .external_lex_state = 12}, - [1468] = {.lex_state = 126, .external_lex_state = 12}, - [1469] = {.lex_state = 31, .external_lex_state = 17}, - [1470] = {.lex_state = 805, .external_lex_state = 13}, - [1471] = {.lex_state = 123, .external_lex_state = 12}, - [1472] = {.lex_state = 263, .external_lex_state = 12}, - [1473] = {.lex_state = 791, .external_lex_state = 16}, + [1462] = {.lex_state = 9, .external_lex_state = 12}, + [1463] = {.lex_state = 125, .external_lex_state = 12}, + [1464] = {.lex_state = 63, .external_lex_state = 15}, + [1465] = {.lex_state = 804, .external_lex_state = 13}, + [1466] = {.lex_state = 209, .external_lex_state = 13}, + [1467] = {.lex_state = 263, .external_lex_state = 12}, + [1468] = {.lex_state = 263, .external_lex_state = 12}, + [1469] = {.lex_state = 263, .external_lex_state = 12}, + [1470] = {.lex_state = 791, .external_lex_state = 16}, + [1471] = {.lex_state = 126, .external_lex_state = 12}, + [1472] = {.lex_state = 209, .external_lex_state = 12}, + [1473] = {.lex_state = 804, .external_lex_state = 13}, [1474] = {.lex_state = 123, .external_lex_state = 12}, - [1475] = {.lex_state = 263, .external_lex_state = 12}, - [1476] = {.lex_state = 126, .external_lex_state = 12}, - [1477] = {.lex_state = 142, .external_lex_state = 12}, - [1478] = {.lex_state = 31, .external_lex_state = 18}, - [1479] = {.lex_state = 263, .external_lex_state = 12}, - [1480] = {.lex_state = 134, .external_lex_state = 12}, - [1481] = {.lex_state = 805, .external_lex_state = 13}, - [1482] = {.lex_state = 263, .external_lex_state = 12}, - [1483] = {.lex_state = 142, .external_lex_state = 12}, - [1484] = {.lex_state = 263, .external_lex_state = 12}, - [1485] = {.lex_state = 63, .external_lex_state = 15}, + [1475] = {.lex_state = 31, .external_lex_state = 18}, + [1476] = {.lex_state = 263, .external_lex_state = 12}, + [1477] = {.lex_state = 123, .external_lex_state = 12}, + [1478] = {.lex_state = 804, .external_lex_state = 13}, + [1479] = {.lex_state = 126, .external_lex_state = 12}, + [1480] = {.lex_state = 263, .external_lex_state = 12}, + [1481] = {.lex_state = 259, .external_lex_state = 13}, + [1482] = {.lex_state = 259, .external_lex_state = 13}, + [1483] = {.lex_state = 10, .external_lex_state = 13}, + [1484] = {.lex_state = 142, .external_lex_state = 13}, + [1485] = {.lex_state = 142, .external_lex_state = 13}, [1486] = {.lex_state = 263, .external_lex_state = 12}, [1487] = {.lex_state = 263, .external_lex_state = 12}, - [1488] = {.lex_state = 126, .external_lex_state = 12}, - [1489] = {.lex_state = 142, .external_lex_state = 12}, - [1490] = {.lex_state = 126, .external_lex_state = 12}, - [1491] = {.lex_state = 263, .external_lex_state = 12}, - [1492] = {.lex_state = 263, .external_lex_state = 12}, - [1493] = {.lex_state = 123, .external_lex_state = 12}, - [1494] = {.lex_state = 263, .external_lex_state = 12}, + [1488] = {.lex_state = 142, .external_lex_state = 12}, + [1489] = {.lex_state = 263, .external_lex_state = 12}, + [1490] = {.lex_state = 47, .external_lex_state = 26}, + [1491] = {.lex_state = 805, .external_lex_state = 13}, + [1492] = {.lex_state = 649, .external_lex_state = 13}, + [1493] = {.lex_state = 31, .external_lex_state = 17}, + [1494] = {.lex_state = 123, .external_lex_state = 12}, [1495] = {.lex_state = 97, .external_lex_state = 12}, - [1496] = {.lex_state = 98, .external_lex_state = 13}, - [1497] = {.lex_state = 263, .external_lex_state = 12}, - [1498] = {.lex_state = 263, .external_lex_state = 12}, - [1499] = {.lex_state = 263, .external_lex_state = 12}, - [1500] = {.lex_state = 263, .external_lex_state = 12}, - [1501] = {.lex_state = 123, .external_lex_state = 12}, - [1502] = {.lex_state = 8, .external_lex_state = 12}, - [1503] = {.lex_state = 263, .external_lex_state = 12}, - [1504] = {.lex_state = 263, .external_lex_state = 12}, - [1505] = {.lex_state = 209, .external_lex_state = 13}, - [1506] = {.lex_state = 263, .external_lex_state = 12}, - [1507] = {.lex_state = 209, .external_lex_state = 12}, - [1508] = {.lex_state = 263, .external_lex_state = 12}, - [1509] = {.lex_state = 791, .external_lex_state = 16}, + [1496] = {.lex_state = 10, .external_lex_state = 13}, + [1497] = {.lex_state = 10, .external_lex_state = 13}, + [1498] = {.lex_state = 142, .external_lex_state = 12}, + [1499] = {.lex_state = 9, .external_lex_state = 12}, + [1500] = {.lex_state = 31, .external_lex_state = 17}, + [1501] = {.lex_state = 31, .external_lex_state = 17}, + [1502] = {.lex_state = 263, .external_lex_state = 12}, + [1503] = {.lex_state = 9, .external_lex_state = 12}, + [1504] = {.lex_state = 31, .external_lex_state = 17}, + [1505] = {.lex_state = 8, .external_lex_state = 12}, + [1506] = {.lex_state = 791, .external_lex_state = 16}, + [1507] = {.lex_state = 263, .external_lex_state = 12}, + [1508] = {.lex_state = 142, .external_lex_state = 12}, + [1509] = {.lex_state = 263, .external_lex_state = 12}, [1510] = {.lex_state = 263, .external_lex_state = 12}, - [1511] = {.lex_state = 804, .external_lex_state = 13}, - [1512] = {.lex_state = 263, .external_lex_state = 12}, - [1513] = {.lex_state = 126, .external_lex_state = 12}, - [1514] = {.lex_state = 791, .external_lex_state = 16}, - [1515] = {.lex_state = 263, .external_lex_state = 12}, - [1516] = {.lex_state = 263, .external_lex_state = 12}, - [1517] = {.lex_state = 263, .external_lex_state = 12}, - [1518] = {.lex_state = 103, .external_lex_state = 26}, - [1519] = {.lex_state = 103, .external_lex_state = 26}, - [1520] = {.lex_state = 12, .external_lex_state = 12}, - [1521] = {.lex_state = 90, .external_lex_state = 12}, - [1522] = {.lex_state = 43, .external_lex_state = 12}, - [1523] = {.lex_state = 263, .external_lex_state = 12}, - [1524] = {.lex_state = 812, .external_lex_state = 12}, - [1525] = {.lex_state = 99, .external_lex_state = 12}, - [1526] = {.lex_state = 101, .external_lex_state = 12}, + [1511] = {.lex_state = 103, .external_lex_state = 27}, + [1512] = {.lex_state = 103, .external_lex_state = 27}, + [1513] = {.lex_state = 31, .external_lex_state = 18}, + [1514] = {.lex_state = 130, .external_lex_state = 12}, + [1515] = {.lex_state = 126, .external_lex_state = 12}, + [1516] = {.lex_state = 31, .external_lex_state = 17}, + [1517] = {.lex_state = 812, .external_lex_state = 28}, + [1518] = {.lex_state = 56, .external_lex_state = 23}, + [1519] = {.lex_state = 126, .external_lex_state = 12}, + [1520] = {.lex_state = 47, .external_lex_state = 26}, + [1521] = {.lex_state = 123, .external_lex_state = 12}, + [1522] = {.lex_state = 47, .external_lex_state = 26}, + [1523] = {.lex_state = 123, .external_lex_state = 12}, + [1524] = {.lex_state = 142, .external_lex_state = 13}, + [1525] = {.lex_state = 791, .external_lex_state = 16}, + [1526] = {.lex_state = 126, .external_lex_state = 12}, [1527] = {.lex_state = 31, .external_lex_state = 17}, - [1528] = {.lex_state = 812, .external_lex_state = 29}, - [1529] = {.lex_state = 227, .external_lex_state = 12}, + [1528] = {.lex_state = 126, .external_lex_state = 12}, + [1529] = {.lex_state = 263, .external_lex_state = 12}, [1530] = {.lex_state = 263, .external_lex_state = 12}, - [1531] = {.lex_state = 31, .external_lex_state = 17}, - [1532] = {.lex_state = 63, .external_lex_state = 30}, - [1533] = {.lex_state = 263, .external_lex_state = 12}, - [1534] = {.lex_state = 43, .external_lex_state = 12}, - [1535] = {.lex_state = 227, .external_lex_state = 12}, - [1536] = {.lex_state = 63, .external_lex_state = 16}, - [1537] = {.lex_state = 11, .external_lex_state = 13}, - [1538] = {.lex_state = 11, .external_lex_state = 13}, - [1539] = {.lex_state = 227, .external_lex_state = 12}, - [1540] = {.lex_state = 812, .external_lex_state = 17}, + [1531] = {.lex_state = 812, .external_lex_state = 12}, + [1532] = {.lex_state = 11, .external_lex_state = 13}, + [1533] = {.lex_state = 43, .external_lex_state = 12}, + [1534] = {.lex_state = 31, .external_lex_state = 18}, + [1535] = {.lex_state = 90, .external_lex_state = 12}, + [1536] = {.lex_state = 263, .external_lex_state = 12}, + [1537] = {.lex_state = 63, .external_lex_state = 16}, + [1538] = {.lex_state = 9, .external_lex_state = 12}, + [1539] = {.lex_state = 31, .external_lex_state = 17}, + [1540] = {.lex_state = 124, .external_lex_state = 13}, [1541] = {.lex_state = 263, .external_lex_state = 12}, [1542] = {.lex_state = 227, .external_lex_state = 12}, - [1543] = {.lex_state = 56, .external_lex_state = 24}, - [1544] = {.lex_state = 31, .external_lex_state = 18}, - [1545] = {.lex_state = 12, .external_lex_state = 13}, - [1546] = {.lex_state = 31, .external_lex_state = 17}, - [1547] = {.lex_state = 12, .external_lex_state = 13}, - [1548] = {.lex_state = 99, .external_lex_state = 12}, - [1549] = {.lex_state = 812, .external_lex_state = 12}, - [1550] = {.lex_state = 812, .external_lex_state = 12}, - [1551] = {.lex_state = 263, .external_lex_state = 12}, - [1552] = {.lex_state = 63, .external_lex_state = 30}, - [1553] = {.lex_state = 126, .external_lex_state = 13}, - [1554] = {.lex_state = 11, .external_lex_state = 13}, - [1555] = {.lex_state = 263, .external_lex_state = 12}, - [1556] = {.lex_state = 812, .external_lex_state = 12}, - [1557] = {.lex_state = 31, .external_lex_state = 17}, - [1558] = {.lex_state = 812, .external_lex_state = 12}, - [1559] = {.lex_state = 812, .external_lex_state = 12}, - [1560] = {.lex_state = 812, .external_lex_state = 12}, - [1561] = {.lex_state = 31, .external_lex_state = 18}, - [1562] = {.lex_state = 812, .external_lex_state = 12}, - [1563] = {.lex_state = 812, .external_lex_state = 12}, - [1564] = {.lex_state = 263, .external_lex_state = 12}, - [1565] = {.lex_state = 31, .external_lex_state = 18}, - [1566] = {.lex_state = 263, .external_lex_state = 12}, - [1567] = {.lex_state = 31, .external_lex_state = 18}, - [1568] = {.lex_state = 43, .external_lex_state = 12}, + [1543] = {.lex_state = 812, .external_lex_state = 12}, + [1544] = {.lex_state = 10, .external_lex_state = 13}, + [1545] = {.lex_state = 263, .external_lex_state = 12}, + [1546] = {.lex_state = 812, .external_lex_state = 12}, + [1547] = {.lex_state = 263, .external_lex_state = 12}, + [1548] = {.lex_state = 31, .external_lex_state = 18}, + [1549] = {.lex_state = 123, .external_lex_state = 12}, + [1550] = {.lex_state = 102, .external_lex_state = 12}, + [1551] = {.lex_state = 9, .external_lex_state = 12}, + [1552] = {.lex_state = 263, .external_lex_state = 12}, + [1553] = {.lex_state = 14, .external_lex_state = 12}, + [1554] = {.lex_state = 124, .external_lex_state = 13}, + [1555] = {.lex_state = 98, .external_lex_state = 13}, + [1556] = {.lex_state = 31, .external_lex_state = 17}, + [1557] = {.lex_state = 124, .external_lex_state = 13}, + [1558] = {.lex_state = 15, .external_lex_state = 12}, + [1559] = {.lex_state = 124, .external_lex_state = 13}, + [1560] = {.lex_state = 101, .external_lex_state = 12}, + [1561] = {.lex_state = 124, .external_lex_state = 13}, + [1562] = {.lex_state = 812, .external_lex_state = 29}, + [1563] = {.lex_state = 263, .external_lex_state = 12}, + [1564] = {.lex_state = 31, .external_lex_state = 17}, + [1565] = {.lex_state = 12, .external_lex_state = 12}, + [1566] = {.lex_state = 812, .external_lex_state = 12}, + [1567] = {.lex_state = 263, .external_lex_state = 12}, + [1568] = {.lex_state = 63, .external_lex_state = 16}, [1569] = {.lex_state = 90, .external_lex_state = 12}, - [1570] = {.lex_state = 63, .external_lex_state = 16}, - [1571] = {.lex_state = 124, .external_lex_state = 13}, - [1572] = {.lex_state = 124, .external_lex_state = 13}, - [1573] = {.lex_state = 812, .external_lex_state = 17}, - [1574] = {.lex_state = 812, .external_lex_state = 17}, - [1575] = {.lex_state = 812, .external_lex_state = 17}, - [1576] = {.lex_state = 98, .external_lex_state = 13}, - [1577] = {.lex_state = 812, .external_lex_state = 12}, - [1578] = {.lex_state = 812, .external_lex_state = 17}, - [1579] = {.lex_state = 102, .external_lex_state = 12}, - [1580] = {.lex_state = 812, .external_lex_state = 17}, - [1581] = {.lex_state = 63, .external_lex_state = 16}, - [1582] = {.lex_state = 9, .external_lex_state = 12}, - [1583] = {.lex_state = 812, .external_lex_state = 17}, - [1584] = {.lex_state = 812, .external_lex_state = 12}, - [1585] = {.lex_state = 124, .external_lex_state = 13}, - [1586] = {.lex_state = 123, .external_lex_state = 12}, - [1587] = {.lex_state = 812, .external_lex_state = 12}, - [1588] = {.lex_state = 812, .external_lex_state = 12}, - [1589] = {.lex_state = 812, .external_lex_state = 12}, - [1590] = {.lex_state = 101, .external_lex_state = 12}, - [1591] = {.lex_state = 124, .external_lex_state = 13}, - [1592] = {.lex_state = 31, .external_lex_state = 18}, - [1593] = {.lex_state = 263, .external_lex_state = 12}, - [1594] = {.lex_state = 10, .external_lex_state = 13}, - [1595] = {.lex_state = 31, .external_lex_state = 18}, - [1596] = {.lex_state = 10, .external_lex_state = 13}, - [1597] = {.lex_state = 9, .external_lex_state = 12}, - [1598] = {.lex_state = 12, .external_lex_state = 12}, - [1599] = {.lex_state = 804, .external_lex_state = 12}, - [1600] = {.lex_state = 99, .external_lex_state = 12}, - [1601] = {.lex_state = 12, .external_lex_state = 13}, - [1602] = {.lex_state = 805, .external_lex_state = 12}, - [1603] = {.lex_state = 805, .external_lex_state = 12}, - [1604] = {.lex_state = 102, .external_lex_state = 12}, - [1605] = {.lex_state = 804, .external_lex_state = 12}, - [1606] = {.lex_state = 14, .external_lex_state = 12}, - [1607] = {.lex_state = 812, .external_lex_state = 12}, - [1608] = {.lex_state = 16, .external_lex_state = 12}, - [1609] = {.lex_state = 139, .external_lex_state = 13}, - [1610] = {.lex_state = 124, .external_lex_state = 13}, - [1611] = {.lex_state = 263, .external_lex_state = 12}, - [1612] = {.lex_state = 31, .external_lex_state = 17}, - [1613] = {.lex_state = 263, .external_lex_state = 12}, - [1614] = {.lex_state = 139, .external_lex_state = 13}, - [1615] = {.lex_state = 139, .external_lex_state = 13}, - [1616] = {.lex_state = 791, .external_lex_state = 15}, - [1617] = {.lex_state = 139, .external_lex_state = 13}, - [1618] = {.lex_state = 31, .external_lex_state = 17}, - [1619] = {.lex_state = 791, .external_lex_state = 15}, - [1620] = {.lex_state = 31, .external_lex_state = 18}, - [1621] = {.lex_state = 263, .external_lex_state = 12}, - [1622] = {.lex_state = 31, .external_lex_state = 18}, - [1623] = {.lex_state = 263, .external_lex_state = 12}, - [1624] = {.lex_state = 139, .external_lex_state = 13}, - [1625] = {.lex_state = 263, .external_lex_state = 12}, - [1626] = {.lex_state = 11, .external_lex_state = 13}, - [1627] = {.lex_state = 263, .external_lex_state = 12}, - [1628] = {.lex_state = 45, .external_lex_state = 13}, - [1629] = {.lex_state = 805, .external_lex_state = 13}, - [1630] = {.lex_state = 128, .external_lex_state = 12}, - [1631] = {.lex_state = 125, .external_lex_state = 12}, - [1632] = {.lex_state = 812, .external_lex_state = 13}, - [1633] = {.lex_state = 17, .external_lex_state = 13}, - [1634] = {.lex_state = 101, .external_lex_state = 12}, - [1635] = {.lex_state = 97, .external_lex_state = 12}, - [1636] = {.lex_state = 812, .external_lex_state = 18}, - [1637] = {.lex_state = 263, .external_lex_state = 12}, - [1638] = {.lex_state = 263, .external_lex_state = 12}, - [1639] = {.lex_state = 97, .external_lex_state = 12}, - [1640] = {.lex_state = 128, .external_lex_state = 12}, - [1641] = {.lex_state = 226, .external_lex_state = 12}, - [1642] = {.lex_state = 263, .external_lex_state = 12}, - [1643] = {.lex_state = 263, .external_lex_state = 12}, - [1644] = {.lex_state = 263, .external_lex_state = 12}, - [1645] = {.lex_state = 812, .external_lex_state = 18}, - [1646] = {.lex_state = 101, .external_lex_state = 12}, - [1647] = {.lex_state = 812, .external_lex_state = 18}, - [1648] = {.lex_state = 812, .external_lex_state = 18}, - [1649] = {.lex_state = 100, .external_lex_state = 13}, - [1650] = {.lex_state = 263, .external_lex_state = 12}, - [1651] = {.lex_state = 209, .external_lex_state = 12}, - [1652] = {.lex_state = 128, .external_lex_state = 12}, - [1653] = {.lex_state = 16, .external_lex_state = 12}, - [1654] = {.lex_state = 263, .external_lex_state = 12}, - [1655] = {.lex_state = 102, .external_lex_state = 13}, + [1570] = {.lex_state = 139, .external_lex_state = 13}, + [1571] = {.lex_state = 102, .external_lex_state = 12}, + [1572] = {.lex_state = 99, .external_lex_state = 12}, + [1573] = {.lex_state = 63, .external_lex_state = 30}, + [1574] = {.lex_state = 139, .external_lex_state = 13}, + [1575] = {.lex_state = 139, .external_lex_state = 13}, + [1576] = {.lex_state = 10, .external_lex_state = 13}, + [1577] = {.lex_state = 126, .external_lex_state = 13}, + [1578] = {.lex_state = 63, .external_lex_state = 30}, + [1579] = {.lex_state = 31, .external_lex_state = 18}, + [1580] = {.lex_state = 227, .external_lex_state = 12}, + [1581] = {.lex_state = 102, .external_lex_state = 12}, + [1582] = {.lex_state = 63, .external_lex_state = 16}, + [1583] = {.lex_state = 812, .external_lex_state = 12}, + [1584] = {.lex_state = 263, .external_lex_state = 12}, + [1585] = {.lex_state = 31, .external_lex_state = 18}, + [1586] = {.lex_state = 227, .external_lex_state = 12}, + [1587] = {.lex_state = 139, .external_lex_state = 13}, + [1588] = {.lex_state = 139, .external_lex_state = 13}, + [1589] = {.lex_state = 263, .external_lex_state = 12}, + [1590] = {.lex_state = 43, .external_lex_state = 12}, + [1591] = {.lex_state = 791, .external_lex_state = 15}, + [1592] = {.lex_state = 31, .external_lex_state = 17}, + [1593] = {.lex_state = 812, .external_lex_state = 12}, + [1594] = {.lex_state = 31, .external_lex_state = 18}, + [1595] = {.lex_state = 263, .external_lex_state = 12}, + [1596] = {.lex_state = 812, .external_lex_state = 12}, + [1597] = {.lex_state = 227, .external_lex_state = 12}, + [1598] = {.lex_state = 99, .external_lex_state = 12}, + [1599] = {.lex_state = 812, .external_lex_state = 12}, + [1600] = {.lex_state = 43, .external_lex_state = 12}, + [1601] = {.lex_state = 804, .external_lex_state = 12}, + [1602] = {.lex_state = 804, .external_lex_state = 12}, + [1603] = {.lex_state = 812, .external_lex_state = 17}, + [1604] = {.lex_state = 812, .external_lex_state = 17}, + [1605] = {.lex_state = 791, .external_lex_state = 15}, + [1606] = {.lex_state = 812, .external_lex_state = 17}, + [1607] = {.lex_state = 263, .external_lex_state = 12}, + [1608] = {.lex_state = 812, .external_lex_state = 12}, + [1609] = {.lex_state = 12, .external_lex_state = 13}, + [1610] = {.lex_state = 805, .external_lex_state = 12}, + [1611] = {.lex_state = 812, .external_lex_state = 17}, + [1612] = {.lex_state = 263, .external_lex_state = 12}, + [1613] = {.lex_state = 812, .external_lex_state = 12}, + [1614] = {.lex_state = 812, .external_lex_state = 17}, + [1615] = {.lex_state = 31, .external_lex_state = 18}, + [1616] = {.lex_state = 56, .external_lex_state = 25}, + [1617] = {.lex_state = 805, .external_lex_state = 12}, + [1618] = {.lex_state = 812, .external_lex_state = 17}, + [1619] = {.lex_state = 812, .external_lex_state = 12}, + [1620] = {.lex_state = 812, .external_lex_state = 12}, + [1621] = {.lex_state = 812, .external_lex_state = 17}, + [1622] = {.lex_state = 812, .external_lex_state = 12}, + [1623] = {.lex_state = 11, .external_lex_state = 13}, + [1624] = {.lex_state = 101, .external_lex_state = 12}, + [1625] = {.lex_state = 11, .external_lex_state = 13}, + [1626] = {.lex_state = 99, .external_lex_state = 12}, + [1627] = {.lex_state = 12, .external_lex_state = 13}, + [1628] = {.lex_state = 31, .external_lex_state = 17}, + [1629] = {.lex_state = 263, .external_lex_state = 12}, + [1630] = {.lex_state = 31, .external_lex_state = 17}, + [1631] = {.lex_state = 12, .external_lex_state = 13}, + [1632] = {.lex_state = 812, .external_lex_state = 12}, + [1633] = {.lex_state = 31, .external_lex_state = 18}, + [1634] = {.lex_state = 31, .external_lex_state = 18}, + [1635] = {.lex_state = 263, .external_lex_state = 12}, + [1636] = {.lex_state = 102, .external_lex_state = 13}, + [1637] = {.lex_state = 17, .external_lex_state = 13}, + [1638] = {.lex_state = 142, .external_lex_state = 12}, + [1639] = {.lex_state = 804, .external_lex_state = 13}, + [1640] = {.lex_state = 263, .external_lex_state = 12}, + [1641] = {.lex_state = 209, .external_lex_state = 12}, + [1642] = {.lex_state = 12, .external_lex_state = 13}, + [1643] = {.lex_state = 101, .external_lex_state = 12}, + [1644] = {.lex_state = 812, .external_lex_state = 13}, + [1645] = {.lex_state = 209, .external_lex_state = 12}, + [1646] = {.lex_state = 11, .external_lex_state = 13}, + [1647] = {.lex_state = 314, .external_lex_state = 12}, + [1648] = {.lex_state = 263, .external_lex_state = 12}, + [1649] = {.lex_state = 263, .external_lex_state = 12}, + [1650] = {.lex_state = 15, .external_lex_state = 13}, + [1651] = {.lex_state = 263, .external_lex_state = 12}, + [1652] = {.lex_state = 125, .external_lex_state = 12}, + [1653] = {.lex_state = 97, .external_lex_state = 12}, + [1654] = {.lex_state = 97, .external_lex_state = 12}, + [1655] = {.lex_state = 57, .external_lex_state = 24}, [1656] = {.lex_state = 263, .external_lex_state = 12}, - [1657] = {.lex_state = 812, .external_lex_state = 18}, - [1658] = {.lex_state = 219, .external_lex_state = 12}, - [1659] = {.lex_state = 219, .external_lex_state = 12}, - [1660] = {.lex_state = 263, .external_lex_state = 12}, - [1661] = {.lex_state = 102, .external_lex_state = 13}, - [1662] = {.lex_state = 87, .external_lex_state = 12}, - [1663] = {.lex_state = 45, .external_lex_state = 13}, - [1664] = {.lex_state = 57, .external_lex_state = 25}, - [1665] = {.lex_state = 263, .external_lex_state = 12}, - [1666] = {.lex_state = 812, .external_lex_state = 18}, - [1667] = {.lex_state = 209, .external_lex_state = 12}, - [1668] = {.lex_state = 805, .external_lex_state = 13}, - [1669] = {.lex_state = 87, .external_lex_state = 12}, - [1670] = {.lex_state = 142, .external_lex_state = 12}, - [1671] = {.lex_state = 209, .external_lex_state = 12}, - [1672] = {.lex_state = 791, .external_lex_state = 16}, + [1657] = {.lex_state = 791, .external_lex_state = 16}, + [1658] = {.lex_state = 100, .external_lex_state = 13}, + [1659] = {.lex_state = 263, .external_lex_state = 12}, + [1660] = {.lex_state = 128, .external_lex_state = 12}, + [1661] = {.lex_state = 209, .external_lex_state = 12}, + [1662] = {.lex_state = 124, .external_lex_state = 13}, + [1663] = {.lex_state = 263, .external_lex_state = 12}, + [1664] = {.lex_state = 100, .external_lex_state = 13}, + [1665] = {.lex_state = 791, .external_lex_state = 16}, + [1666] = {.lex_state = 45, .external_lex_state = 13}, + [1667] = {.lex_state = 128, .external_lex_state = 12}, + [1668] = {.lex_state = 128, .external_lex_state = 12}, + [1669] = {.lex_state = 11, .external_lex_state = 13}, + [1670] = {.lex_state = 812, .external_lex_state = 18}, + [1671] = {.lex_state = 812, .external_lex_state = 18}, + [1672] = {.lex_state = 263, .external_lex_state = 12}, [1673] = {.lex_state = 263, .external_lex_state = 12}, - [1674] = {.lex_state = 11, .external_lex_state = 13}, - [1675] = {.lex_state = 315, .external_lex_state = 12}, - [1676] = {.lex_state = 812, .external_lex_state = 13}, - [1677] = {.lex_state = 263, .external_lex_state = 12}, - [1678] = {.lex_state = 262, .external_lex_state = 12}, - [1679] = {.lex_state = 812, .external_lex_state = 18}, - [1680] = {.lex_state = 315, .external_lex_state = 12}, - [1681] = {.lex_state = 100, .external_lex_state = 13}, - [1682] = {.lex_state = 87, .external_lex_state = 12}, - [1683] = {.lex_state = 100, .external_lex_state = 13}, - [1684] = {.lex_state = 201, .external_lex_state = 12}, - [1685] = {.lex_state = 263, .external_lex_state = 12}, - [1686] = {.lex_state = 209, .external_lex_state = 12}, - [1687] = {.lex_state = 209, .external_lex_state = 12}, - [1688] = {.lex_state = 791, .external_lex_state = 16}, - [1689] = {.lex_state = 14, .external_lex_state = 13}, - [1690] = {.lex_state = 128, .external_lex_state = 12}, - [1691] = {.lex_state = 260, .external_lex_state = 13}, - [1692] = {.lex_state = 260, .external_lex_state = 13}, - [1693] = {.lex_state = 124, .external_lex_state = 13}, - [1694] = {.lex_state = 125, .external_lex_state = 12}, - [1695] = {.lex_state = 125, .external_lex_state = 12}, - [1696] = {.lex_state = 45, .external_lex_state = 13}, - [1697] = {.lex_state = 12, .external_lex_state = 13}, - [1698] = {.lex_state = 812, .external_lex_state = 13}, - [1699] = {.lex_state = 804, .external_lex_state = 13}, - [1700] = {.lex_state = 804, .external_lex_state = 13}, - [1701] = {.lex_state = 228, .external_lex_state = 25}, - [1702] = {.lex_state = 214, .external_lex_state = 12}, - [1703] = {.lex_state = 228, .external_lex_state = 25}, - [1704] = {.lex_state = 136, .external_lex_state = 12}, - [1705] = {.lex_state = 260, .external_lex_state = 22}, - [1706] = {.lex_state = 260, .external_lex_state = 22}, - [1707] = {.lex_state = 132, .external_lex_state = 13}, - [1708] = {.lex_state = 132, .external_lex_state = 13}, - [1709] = {.lex_state = 124, .external_lex_state = 12}, - [1710] = {.lex_state = 128, .external_lex_state = 12}, - [1711] = {.lex_state = 209, .external_lex_state = 12}, - [1712] = {.lex_state = 11, .external_lex_state = 12}, - [1713] = {.lex_state = 126, .external_lex_state = 12}, - [1714] = {.lex_state = 126, .external_lex_state = 13}, - [1715] = {.lex_state = 124, .external_lex_state = 12}, - [1716] = {.lex_state = 12, .external_lex_state = 12}, - [1717] = {.lex_state = 58, .external_lex_state = 28}, - [1718] = {.lex_state = 124, .external_lex_state = 12}, - [1719] = {.lex_state = 12, .external_lex_state = 12}, - [1720] = {.lex_state = 227, .external_lex_state = 12}, - [1721] = {.lex_state = 12, .external_lex_state = 12}, + [1674] = {.lex_state = 102, .external_lex_state = 13}, + [1675] = {.lex_state = 263, .external_lex_state = 12}, + [1676] = {.lex_state = 812, .external_lex_state = 18}, + [1677] = {.lex_state = 812, .external_lex_state = 13}, + [1678] = {.lex_state = 209, .external_lex_state = 12}, + [1679] = {.lex_state = 128, .external_lex_state = 12}, + [1680] = {.lex_state = 812, .external_lex_state = 18}, + [1681] = {.lex_state = 101, .external_lex_state = 12}, + [1682] = {.lex_state = 262, .external_lex_state = 12}, + [1683] = {.lex_state = 812, .external_lex_state = 18}, + [1684] = {.lex_state = 812, .external_lex_state = 18}, + [1685] = {.lex_state = 87, .external_lex_state = 12}, + [1686] = {.lex_state = 812, .external_lex_state = 18}, + [1687] = {.lex_state = 226, .external_lex_state = 12}, + [1688] = {.lex_state = 201, .external_lex_state = 12}, + [1689] = {.lex_state = 87, .external_lex_state = 12}, + [1690] = {.lex_state = 125, .external_lex_state = 12}, + [1691] = {.lex_state = 263, .external_lex_state = 12}, + [1692] = {.lex_state = 263, .external_lex_state = 12}, + [1693] = {.lex_state = 100, .external_lex_state = 13}, + [1694] = {.lex_state = 263, .external_lex_state = 12}, + [1695] = {.lex_state = 219, .external_lex_state = 12}, + [1696] = {.lex_state = 314, .external_lex_state = 12}, + [1697] = {.lex_state = 219, .external_lex_state = 12}, + [1698] = {.lex_state = 45, .external_lex_state = 13}, + [1699] = {.lex_state = 45, .external_lex_state = 13}, + [1700] = {.lex_state = 805, .external_lex_state = 13}, + [1701] = {.lex_state = 805, .external_lex_state = 13}, + [1702] = {.lex_state = 14, .external_lex_state = 12}, + [1703] = {.lex_state = 125, .external_lex_state = 12}, + [1704] = {.lex_state = 804, .external_lex_state = 13}, + [1705] = {.lex_state = 209, .external_lex_state = 12}, + [1706] = {.lex_state = 102, .external_lex_state = 13}, + [1707] = {.lex_state = 263, .external_lex_state = 12}, + [1708] = {.lex_state = 260, .external_lex_state = 13}, + [1709] = {.lex_state = 260, .external_lex_state = 13}, + [1710] = {.lex_state = 87, .external_lex_state = 12}, + [1711] = {.lex_state = 12, .external_lex_state = 12}, + [1712] = {.lex_state = 124, .external_lex_state = 12}, + [1713] = {.lex_state = 209, .external_lex_state = 12}, + [1714] = {.lex_state = 102, .external_lex_state = 12}, + [1715] = {.lex_state = 132, .external_lex_state = 13}, + [1716] = {.lex_state = 201, .external_lex_state = 13}, + [1717] = {.lex_state = 132, .external_lex_state = 13}, + [1718] = {.lex_state = 214, .external_lex_state = 12}, + [1719] = {.lex_state = 126, .external_lex_state = 12}, + [1720] = {.lex_state = 228, .external_lex_state = 24}, + [1721] = {.lex_state = 228, .external_lex_state = 24}, [1722] = {.lex_state = 126, .external_lex_state = 13}, - [1723] = {.lex_state = 812, .external_lex_state = 12}, - [1724] = {.lex_state = 191, .external_lex_state = 15}, - [1725] = {.lex_state = 132, .external_lex_state = 13}, - [1726] = {.lex_state = 124, .external_lex_state = 12}, + [1723] = {.lex_state = 124, .external_lex_state = 12}, + [1724] = {.lex_state = 130, .external_lex_state = 12}, + [1725] = {.lex_state = 124, .external_lex_state = 12}, + [1726] = {.lex_state = 227, .external_lex_state = 12}, [1727] = {.lex_state = 124, .external_lex_state = 12}, - [1728] = {.lex_state = 136, .external_lex_state = 12}, - [1729] = {.lex_state = 12, .external_lex_state = 12}, - [1730] = {.lex_state = 214, .external_lex_state = 12}, - [1731] = {.lex_state = 136, .external_lex_state = 12}, - [1732] = {.lex_state = 132, .external_lex_state = 13}, - [1733] = {.lex_state = 128, .external_lex_state = 12}, - [1734] = {.lex_state = 130, .external_lex_state = 12}, - [1735] = {.lex_state = 124, .external_lex_state = 12}, - [1736] = {.lex_state = 214, .external_lex_state = 12}, - [1737] = {.lex_state = 800, .external_lex_state = 12}, - [1738] = {.lex_state = 63, .external_lex_state = 15}, - [1739] = {.lex_state = 800, .external_lex_state = 12}, - [1740] = {.lex_state = 812, .external_lex_state = 17}, - [1741] = {.lex_state = 128, .external_lex_state = 12}, - [1742] = {.lex_state = 126, .external_lex_state = 13}, - [1743] = {.lex_state = 800, .external_lex_state = 12}, - [1744] = {.lex_state = 128, .external_lex_state = 12}, - [1745] = {.lex_state = 98, .external_lex_state = 13}, - [1746] = {.lex_state = 812, .external_lex_state = 12}, - [1747] = {.lex_state = 124, .external_lex_state = 12}, - [1748] = {.lex_state = 102, .external_lex_state = 12}, + [1728] = {.lex_state = 124, .external_lex_state = 12}, + [1729] = {.lex_state = 17, .external_lex_state = 13}, + [1730] = {.lex_state = 98, .external_lex_state = 13}, + [1731] = {.lex_state = 260, .external_lex_state = 22}, + [1732] = {.lex_state = 260, .external_lex_state = 22}, + [1733] = {.lex_state = 11, .external_lex_state = 12}, + [1734] = {.lex_state = 98, .external_lex_state = 13}, + [1735] = {.lex_state = 126, .external_lex_state = 13}, + [1736] = {.lex_state = 126, .external_lex_state = 13}, + [1737] = {.lex_state = 228, .external_lex_state = 24}, + [1738] = {.lex_state = 136, .external_lex_state = 12}, + [1739] = {.lex_state = 812, .external_lex_state = 17}, + [1740] = {.lex_state = 123, .external_lex_state = 12}, + [1741] = {.lex_state = 123, .external_lex_state = 12}, + [1742] = {.lex_state = 214, .external_lex_state = 12}, + [1743] = {.lex_state = 72, .external_lex_state = 24}, + [1744] = {.lex_state = 132, .external_lex_state = 13}, + [1745] = {.lex_state = 800, .external_lex_state = 12}, + [1746] = {.lex_state = 124, .external_lex_state = 12}, + [1747] = {.lex_state = 800, .external_lex_state = 12}, + [1748] = {.lex_state = 800, .external_lex_state = 12}, [1749] = {.lex_state = 124, .external_lex_state = 12}, - [1750] = {.lex_state = 264, .external_lex_state = 12}, - [1751] = {.lex_state = 98, .external_lex_state = 13}, - [1752] = {.lex_state = 264, .external_lex_state = 12}, - [1753] = {.lex_state = 124, .external_lex_state = 12}, - [1754] = {.lex_state = 72, .external_lex_state = 25}, - [1755] = {.lex_state = 228, .external_lex_state = 25}, - [1756] = {.lex_state = 228, .external_lex_state = 25}, - [1757] = {.lex_state = 812, .external_lex_state = 17}, - [1758] = {.lex_state = 17, .external_lex_state = 13}, - [1759] = {.lex_state = 124, .external_lex_state = 12}, - [1760] = {.lex_state = 11, .external_lex_state = 12}, - [1761] = {.lex_state = 63, .external_lex_state = 30}, - [1762] = {.lex_state = 32, .external_lex_state = 12}, - [1763] = {.lex_state = 201, .external_lex_state = 13}, - [1764] = {.lex_state = 11, .external_lex_state = 12}, - [1765] = {.lex_state = 136, .external_lex_state = 12}, - [1766] = {.lex_state = 214, .external_lex_state = 12}, + [1750] = {.lex_state = 128, .external_lex_state = 12}, + [1751] = {.lex_state = 124, .external_lex_state = 12}, + [1752] = {.lex_state = 132, .external_lex_state = 13}, + [1753] = {.lex_state = 128, .external_lex_state = 12}, + [1754] = {.lex_state = 102, .external_lex_state = 12}, + [1755] = {.lex_state = 812, .external_lex_state = 12}, + [1756] = {.lex_state = 812, .external_lex_state = 17}, + [1757] = {.lex_state = 12, .external_lex_state = 12}, + [1758] = {.lex_state = 191, .external_lex_state = 15}, + [1759] = {.lex_state = 228, .external_lex_state = 24}, + [1760] = {.lex_state = 228, .external_lex_state = 24}, + [1761] = {.lex_state = 72, .external_lex_state = 24}, + [1762] = {.lex_state = 63, .external_lex_state = 30}, + [1763] = {.lex_state = 136, .external_lex_state = 12}, + [1764] = {.lex_state = 214, .external_lex_state = 12}, + [1765] = {.lex_state = 12, .external_lex_state = 12}, + [1766] = {.lex_state = 128, .external_lex_state = 12}, [1767] = {.lex_state = 136, .external_lex_state = 12}, - [1768] = {.lex_state = 123, .external_lex_state = 12}, - [1769] = {.lex_state = 123, .external_lex_state = 12}, - [1770] = {.lex_state = 812, .external_lex_state = 17}, - [1771] = {.lex_state = 812, .external_lex_state = 12}, + [1768] = {.lex_state = 214, .external_lex_state = 12}, + [1769] = {.lex_state = 58, .external_lex_state = 26}, + [1770] = {.lex_state = 124, .external_lex_state = 12}, + [1771] = {.lex_state = 124, .external_lex_state = 12}, [1772] = {.lex_state = 124, .external_lex_state = 12}, - [1773] = {.lex_state = 72, .external_lex_state = 25}, - [1774] = {.lex_state = 102, .external_lex_state = 12}, - [1775] = {.lex_state = 124, .external_lex_state = 12}, - [1776] = {.lex_state = 812, .external_lex_state = 12}, + [1773] = {.lex_state = 63, .external_lex_state = 15}, + [1774] = {.lex_state = 32, .external_lex_state = 12}, + [1775] = {.lex_state = 812, .external_lex_state = 12}, + [1776] = {.lex_state = 812, .external_lex_state = 17}, [1777] = {.lex_state = 214, .external_lex_state = 12}, - [1778] = {.lex_state = 228, .external_lex_state = 25}, - [1779] = {.lex_state = 225, .external_lex_state = 25}, - [1780] = {.lex_state = 209, .external_lex_state = 13}, - [1781] = {.lex_state = 102, .external_lex_state = 12}, - [1782] = {.lex_state = 812, .external_lex_state = 12}, - [1783] = {.lex_state = 132, .external_lex_state = 13}, - [1784] = {.lex_state = 11, .external_lex_state = 12}, - [1785] = {.lex_state = 812, .external_lex_state = 12}, - [1786] = {.lex_state = 812, .external_lex_state = 12}, - [1787] = {.lex_state = 225, .external_lex_state = 25}, - [1788] = {.lex_state = 225, .external_lex_state = 25}, - [1789] = {.lex_state = 812, .external_lex_state = 12}, + [1778] = {.lex_state = 264, .external_lex_state = 12}, + [1779] = {.lex_state = 124, .external_lex_state = 12}, + [1780] = {.lex_state = 264, .external_lex_state = 12}, + [1781] = {.lex_state = 11, .external_lex_state = 12}, + [1782] = {.lex_state = 136, .external_lex_state = 12}, + [1783] = {.lex_state = 136, .external_lex_state = 12}, + [1784] = {.lex_state = 812, .external_lex_state = 12}, + [1785] = {.lex_state = 102, .external_lex_state = 12}, + [1786] = {.lex_state = 11, .external_lex_state = 12}, + [1787] = {.lex_state = 128, .external_lex_state = 12}, + [1788] = {.lex_state = 12, .external_lex_state = 12}, + [1789] = {.lex_state = 73, .external_lex_state = 26}, [1790] = {.lex_state = 812, .external_lex_state = 12}, - [1791] = {.lex_state = 812, .external_lex_state = 12}, - [1792] = {.lex_state = 209, .external_lex_state = 12}, + [1791] = {.lex_state = 207, .external_lex_state = 12}, + [1792] = {.lex_state = 209, .external_lex_state = 13}, [1793] = {.lex_state = 812, .external_lex_state = 12}, - [1794] = {.lex_state = 32, .external_lex_state = 12}, - [1795] = {.lex_state = 132, .external_lex_state = 13}, - [1796] = {.lex_state = 73, .external_lex_state = 28}, - [1797] = {.lex_state = 812, .external_lex_state = 18}, - [1798] = {.lex_state = 224, .external_lex_state = 12}, - [1799] = {.lex_state = 217, .external_lex_state = 12}, - [1800] = {.lex_state = 209, .external_lex_state = 12}, - [1801] = {.lex_state = 262, .external_lex_state = 12}, - [1802] = {.lex_state = 191, .external_lex_state = 16}, - [1803] = {.lex_state = 102, .external_lex_state = 13}, - [1804] = {.lex_state = 812, .external_lex_state = 12}, - [1805] = {.lex_state = 812, .external_lex_state = 13}, - [1806] = {.lex_state = 801, .external_lex_state = 13}, - [1807] = {.lex_state = 224, .external_lex_state = 12}, - [1808] = {.lex_state = 102, .external_lex_state = 13}, - [1809] = {.lex_state = 217, .external_lex_state = 12}, - [1810] = {.lex_state = 812, .external_lex_state = 12}, - [1811] = {.lex_state = 812, .external_lex_state = 13}, - [1812] = {.lex_state = 217, .external_lex_state = 12}, - [1813] = {.lex_state = 73, .external_lex_state = 28}, - [1814] = {.lex_state = 12, .external_lex_state = 13}, - [1815] = {.lex_state = 268, .external_lex_state = 28}, - [1816] = {.lex_state = 812, .external_lex_state = 12}, - [1817] = {.lex_state = 268, .external_lex_state = 28}, - [1818] = {.lex_state = 801, .external_lex_state = 13}, - [1819] = {.lex_state = 812, .external_lex_state = 18}, - [1820] = {.lex_state = 812, .external_lex_state = 13}, - [1821] = {.lex_state = 25, .external_lex_state = 13}, - [1822] = {.lex_state = 32, .external_lex_state = 12}, - [1823] = {.lex_state = 25, .external_lex_state = 13}, - [1824] = {.lex_state = 32, .external_lex_state = 12}, - [1825] = {.lex_state = 209, .external_lex_state = 12}, - [1826] = {.lex_state = 209, .external_lex_state = 13}, - [1827] = {.lex_state = 812, .external_lex_state = 12}, - [1828] = {.lex_state = 262, .external_lex_state = 12}, - [1829] = {.lex_state = 192, .external_lex_state = 12}, - [1830] = {.lex_state = 209, .external_lex_state = 13}, - [1831] = {.lex_state = 812, .external_lex_state = 12}, - [1832] = {.lex_state = 12, .external_lex_state = 13}, - [1833] = {.lex_state = 132, .external_lex_state = 13}, - [1834] = {.lex_state = 812, .external_lex_state = 12}, - [1835] = {.lex_state = 32, .external_lex_state = 13}, - [1836] = {.lex_state = 124, .external_lex_state = 13}, - [1837] = {.lex_state = 209, .external_lex_state = 13}, - [1838] = {.lex_state = 12, .external_lex_state = 13}, - [1839] = {.lex_state = 124, .external_lex_state = 13}, - [1840] = {.lex_state = 63, .external_lex_state = 16}, - [1841] = {.lex_state = 11, .external_lex_state = 12}, + [1794] = {.lex_state = 801, .external_lex_state = 13}, + [1795] = {.lex_state = 812, .external_lex_state = 12}, + [1796] = {.lex_state = 812, .external_lex_state = 12}, + [1797] = {.lex_state = 209, .external_lex_state = 13}, + [1798] = {.lex_state = 812, .external_lex_state = 12}, + [1799] = {.lex_state = 209, .external_lex_state = 12}, + [1800] = {.lex_state = 209, .external_lex_state = 13}, + [1801] = {.lex_state = 11, .external_lex_state = 12}, + [1802] = {.lex_state = 812, .external_lex_state = 12}, + [1803] = {.lex_state = 63, .external_lex_state = 16}, + [1804] = {.lex_state = 209, .external_lex_state = 13}, + [1805] = {.lex_state = 32, .external_lex_state = 12}, + [1806] = {.lex_state = 191, .external_lex_state = 16}, + [1807] = {.lex_state = 812, .external_lex_state = 12}, + [1808] = {.lex_state = 128, .external_lex_state = 12}, + [1809] = {.lex_state = 801, .external_lex_state = 13}, + [1810] = {.lex_state = 209, .external_lex_state = 13}, + [1811] = {.lex_state = 812, .external_lex_state = 12}, + [1812] = {.lex_state = 25, .external_lex_state = 13}, + [1813] = {.lex_state = 812, .external_lex_state = 18}, + [1814] = {.lex_state = 128, .external_lex_state = 12}, + [1815] = {.lex_state = 812, .external_lex_state = 12}, + [1816] = {.lex_state = 25, .external_lex_state = 13}, + [1817] = {.lex_state = 812, .external_lex_state = 12}, + [1818] = {.lex_state = 268, .external_lex_state = 26}, + [1819] = {.lex_state = 812, .external_lex_state = 12}, + [1820] = {.lex_state = 268, .external_lex_state = 26}, + [1821] = {.lex_state = 812, .external_lex_state = 13}, + [1822] = {.lex_state = 812, .external_lex_state = 12}, + [1823] = {.lex_state = 12, .external_lex_state = 13}, + [1824] = {.lex_state = 132, .external_lex_state = 13}, + [1825] = {.lex_state = 192, .external_lex_state = 12}, + [1826] = {.lex_state = 801, .external_lex_state = 13}, + [1827] = {.lex_state = 102, .external_lex_state = 13}, + [1828] = {.lex_state = 812, .external_lex_state = 18}, + [1829] = {.lex_state = 262, .external_lex_state = 12}, + [1830] = {.lex_state = 102, .external_lex_state = 13}, + [1831] = {.lex_state = 12, .external_lex_state = 13}, + [1832] = {.lex_state = 262, .external_lex_state = 12}, + [1833] = {.lex_state = 12, .external_lex_state = 13}, + [1834] = {.lex_state = 209, .external_lex_state = 13}, + [1835] = {.lex_state = 812, .external_lex_state = 18}, + [1836] = {.lex_state = 209, .external_lex_state = 12}, + [1837] = {.lex_state = 32, .external_lex_state = 12}, + [1838] = {.lex_state = 73, .external_lex_state = 26}, + [1839] = {.lex_state = 268, .external_lex_state = 26}, + [1840] = {.lex_state = 268, .external_lex_state = 26}, + [1841] = {.lex_state = 124, .external_lex_state = 13}, [1842] = {.lex_state = 209, .external_lex_state = 13}, - [1843] = {.lex_state = 268, .external_lex_state = 28}, - [1844] = {.lex_state = 132, .external_lex_state = 13}, - [1845] = {.lex_state = 102, .external_lex_state = 12}, - [1846] = {.lex_state = 268, .external_lex_state = 28}, - [1847] = {.lex_state = 268, .external_lex_state = 28}, - [1848] = {.lex_state = 25, .external_lex_state = 13}, - [1849] = {.lex_state = 225, .external_lex_state = 25}, - [1850] = {.lex_state = 209, .external_lex_state = 13}, - [1851] = {.lex_state = 209, .external_lex_state = 13}, - [1852] = {.lex_state = 207, .external_lex_state = 12}, - [1853] = {.lex_state = 124, .external_lex_state = 12}, - [1854] = {.lex_state = 128, .external_lex_state = 12}, - [1855] = {.lex_state = 25, .external_lex_state = 13}, - [1856] = {.lex_state = 25, .external_lex_state = 13}, - [1857] = {.lex_state = 217, .external_lex_state = 12}, - [1858] = {.lex_state = 812, .external_lex_state = 12}, - [1859] = {.lex_state = 209, .external_lex_state = 12}, - [1860] = {.lex_state = 812, .external_lex_state = 18}, - [1861] = {.lex_state = 32, .external_lex_state = 12}, - [1862] = {.lex_state = 12, .external_lex_state = 13}, - [1863] = {.lex_state = 209, .external_lex_state = 13}, - [1864] = {.lex_state = 812, .external_lex_state = 12}, - [1865] = {.lex_state = 128, .external_lex_state = 12}, - [1866] = {.lex_state = 812, .external_lex_state = 13}, - [1867] = {.lex_state = 801, .external_lex_state = 13}, - [1868] = {.lex_state = 217, .external_lex_state = 12}, - [1869] = {.lex_state = 56, .external_lex_state = 23}, - [1870] = {.lex_state = 126, .external_lex_state = 12}, - [1871] = {.lex_state = 63, .external_lex_state = 15}, - [1872] = {.lex_state = 812, .external_lex_state = 12}, + [1843] = {.lex_state = 225, .external_lex_state = 24}, + [1844] = {.lex_state = 124, .external_lex_state = 13}, + [1845] = {.lex_state = 224, .external_lex_state = 12}, + [1846] = {.lex_state = 217, .external_lex_state = 12}, + [1847] = {.lex_state = 225, .external_lex_state = 24}, + [1848] = {.lex_state = 812, .external_lex_state = 12}, + [1849] = {.lex_state = 32, .external_lex_state = 12}, + [1850] = {.lex_state = 812, .external_lex_state = 13}, + [1851] = {.lex_state = 217, .external_lex_state = 12}, + [1852] = {.lex_state = 812, .external_lex_state = 12}, + [1853] = {.lex_state = 217, .external_lex_state = 12}, + [1854] = {.lex_state = 812, .external_lex_state = 13}, + [1855] = {.lex_state = 268, .external_lex_state = 26}, + [1856] = {.lex_state = 102, .external_lex_state = 13}, + [1857] = {.lex_state = 132, .external_lex_state = 13}, + [1858] = {.lex_state = 209, .external_lex_state = 12}, + [1859] = {.lex_state = 812, .external_lex_state = 12}, + [1860] = {.lex_state = 812, .external_lex_state = 12}, + [1861] = {.lex_state = 25, .external_lex_state = 13}, + [1862] = {.lex_state = 217, .external_lex_state = 12}, + [1863] = {.lex_state = 32, .external_lex_state = 13}, + [1864] = {.lex_state = 132, .external_lex_state = 13}, + [1865] = {.lex_state = 25, .external_lex_state = 13}, + [1866] = {.lex_state = 25, .external_lex_state = 13}, + [1867] = {.lex_state = 124, .external_lex_state = 12}, + [1868] = {.lex_state = 132, .external_lex_state = 13}, + [1869] = {.lex_state = 225, .external_lex_state = 24}, + [1870] = {.lex_state = 225, .external_lex_state = 24}, + [1871] = {.lex_state = 224, .external_lex_state = 12}, + [1872] = {.lex_state = 12, .external_lex_state = 13}, [1873] = {.lex_state = 812, .external_lex_state = 12}, - [1874] = {.lex_state = 655, .external_lex_state = 13}, - [1875] = {.lex_state = 214, .external_lex_state = 12}, - [1876] = {.lex_state = 229, .external_lex_state = 25}, - [1877] = {.lex_state = 229, .external_lex_state = 25}, - [1878] = {.lex_state = 126, .external_lex_state = 12}, + [1874] = {.lex_state = 32, .external_lex_state = 12}, + [1875] = {.lex_state = 209, .external_lex_state = 13}, + [1876] = {.lex_state = 209, .external_lex_state = 12}, + [1877] = {.lex_state = 11, .external_lex_state = 12}, + [1878] = {.lex_state = 217, .external_lex_state = 12}, [1879] = {.lex_state = 812, .external_lex_state = 13}, - [1880] = {.lex_state = 267, .external_lex_state = 28}, - [1881] = {.lex_state = 229, .external_lex_state = 25}, - [1882] = {.lex_state = 267, .external_lex_state = 28}, - [1883] = {.lex_state = 126, .external_lex_state = 12}, - [1884] = {.lex_state = 800, .external_lex_state = 12}, - [1885] = {.lex_state = 132, .external_lex_state = 12}, - [1886] = {.lex_state = 812, .external_lex_state = 13}, - [1887] = {.lex_state = 188, .external_lex_state = 13}, - [1888] = {.lex_state = 209, .external_lex_state = 13}, + [1880] = {.lex_state = 812, .external_lex_state = 13}, + [1881] = {.lex_state = 132, .external_lex_state = 12}, + [1882] = {.lex_state = 229, .external_lex_state = 24}, + [1883] = {.lex_state = 132, .external_lex_state = 13}, + [1884] = {.lex_state = 132, .external_lex_state = 12}, + [1885] = {.lex_state = 223, .external_lex_state = 12}, + [1886] = {.lex_state = 129, .external_lex_state = 12}, + [1887] = {.lex_state = 812, .external_lex_state = 13}, + [1888] = {.lex_state = 812, .external_lex_state = 13}, [1889] = {.lex_state = 812, .external_lex_state = 13}, [1890] = {.lex_state = 812, .external_lex_state = 13}, [1891] = {.lex_state = 812, .external_lex_state = 13}, - [1892] = {.lex_state = 812, .external_lex_state = 13}, - [1893] = {.lex_state = 132, .external_lex_state = 13}, + [1892] = {.lex_state = 132, .external_lex_state = 12}, + [1893] = {.lex_state = 812, .external_lex_state = 13}, [1894] = {.lex_state = 812, .external_lex_state = 12}, - [1895] = {.lex_state = 267, .external_lex_state = 28}, + [1895] = {.lex_state = 812, .external_lex_state = 13}, [1896] = {.lex_state = 812, .external_lex_state = 12}, - [1897] = {.lex_state = 215, .external_lex_state = 12}, - [1898] = {.lex_state = 267, .external_lex_state = 28}, - [1899] = {.lex_state = 132, .external_lex_state = 12}, + [1897] = {.lex_state = 132, .external_lex_state = 12}, + [1898] = {.lex_state = 812, .external_lex_state = 13}, + [1899] = {.lex_state = 45, .external_lex_state = 12}, [1900] = {.lex_state = 812, .external_lex_state = 13}, - [1901] = {.lex_state = 132, .external_lex_state = 13}, - [1902] = {.lex_state = 129, .external_lex_state = 12}, - [1903] = {.lex_state = 800, .external_lex_state = 12}, - [1904] = {.lex_state = 812, .external_lex_state = 12}, - [1905] = {.lex_state = 214, .external_lex_state = 12}, - [1906] = {.lex_state = 812, .external_lex_state = 13}, - [1907] = {.lex_state = 215, .external_lex_state = 12}, - [1908] = {.lex_state = 223, .external_lex_state = 12}, - [1909] = {.lex_state = 812, .external_lex_state = 12}, - [1910] = {.lex_state = 229, .external_lex_state = 25}, - [1911] = {.lex_state = 132, .external_lex_state = 12}, - [1912] = {.lex_state = 812, .external_lex_state = 12}, - [1913] = {.lex_state = 229, .external_lex_state = 25}, - [1914] = {.lex_state = 229, .external_lex_state = 25}, - [1915] = {.lex_state = 812, .external_lex_state = 13}, - [1916] = {.lex_state = 229, .external_lex_state = 25}, + [1901] = {.lex_state = 132, .external_lex_state = 12}, + [1902] = {.lex_state = 214, .external_lex_state = 12}, + [1903] = {.lex_state = 56, .external_lex_state = 23}, + [1904] = {.lex_state = 800, .external_lex_state = 12}, + [1905] = {.lex_state = 812, .external_lex_state = 12}, + [1906] = {.lex_state = 812, .external_lex_state = 12}, + [1907] = {.lex_state = 126, .external_lex_state = 12}, + [1908] = {.lex_state = 63, .external_lex_state = 15}, + [1909] = {.lex_state = 267, .external_lex_state = 26}, + [1910] = {.lex_state = 812, .external_lex_state = 12}, + [1911] = {.lex_state = 812, .external_lex_state = 12}, + [1912] = {.lex_state = 229, .external_lex_state = 24}, + [1913] = {.lex_state = 188, .external_lex_state = 13}, + [1914] = {.lex_state = 267, .external_lex_state = 26}, + [1915] = {.lex_state = 192, .external_lex_state = 13}, + [1916] = {.lex_state = 812, .external_lex_state = 13}, [1917] = {.lex_state = 812, .external_lex_state = 13}, - [1918] = {.lex_state = 655, .external_lex_state = 13}, - [1919] = {.lex_state = 45, .external_lex_state = 12}, - [1920] = {.lex_state = 132, .external_lex_state = 12}, - [1921] = {.lex_state = 132, .external_lex_state = 12}, - [1922] = {.lex_state = 812, .external_lex_state = 13}, - [1923] = {.lex_state = 188, .external_lex_state = 13}, + [1918] = {.lex_state = 800, .external_lex_state = 12}, + [1919] = {.lex_state = 215, .external_lex_state = 12}, + [1920] = {.lex_state = 812, .external_lex_state = 12}, + [1921] = {.lex_state = 229, .external_lex_state = 24}, + [1922] = {.lex_state = 812, .external_lex_state = 12}, + [1923] = {.lex_state = 229, .external_lex_state = 24}, [1924] = {.lex_state = 812, .external_lex_state = 13}, - [1925] = {.lex_state = 812, .external_lex_state = 12}, - [1926] = {.lex_state = 812, .external_lex_state = 12}, - [1927] = {.lex_state = 812, .external_lex_state = 13}, - [1928] = {.lex_state = 188, .external_lex_state = 13}, - [1929] = {.lex_state = 812, .external_lex_state = 13}, - [1930] = {.lex_state = 188, .external_lex_state = 13}, - [1931] = {.lex_state = 812, .external_lex_state = 13}, - [1932] = {.lex_state = 188, .external_lex_state = 13}, - [1933] = {.lex_state = 214, .external_lex_state = 12}, - [1934] = {.lex_state = 192, .external_lex_state = 13}, - [1935] = {.lex_state = 214, .external_lex_state = 12}, - [1936] = {.lex_state = 812, .external_lex_state = 13}, - [1937] = {.lex_state = 132, .external_lex_state = 12}, - [1938] = {.lex_state = 129, .external_lex_state = 12}, - [1939] = {.lex_state = 207, .external_lex_state = 13}, - [1940] = {.lex_state = 812, .external_lex_state = 13}, - [1941] = {.lex_state = 812, .external_lex_state = 12}, - [1942] = {.lex_state = 132, .external_lex_state = 12}, - [1943] = {.lex_state = 812, .external_lex_state = 12}, - [1944] = {.lex_state = 812, .external_lex_state = 13}, + [1925] = {.lex_state = 132, .external_lex_state = 12}, + [1926] = {.lex_state = 812, .external_lex_state = 13}, + [1927] = {.lex_state = 655, .external_lex_state = 13}, + [1928] = {.lex_state = 126, .external_lex_state = 12}, + [1929] = {.lex_state = 214, .external_lex_state = 12}, + [1930] = {.lex_state = 229, .external_lex_state = 24}, + [1931] = {.lex_state = 126, .external_lex_state = 12}, + [1932] = {.lex_state = 267, .external_lex_state = 26}, + [1933] = {.lex_state = 267, .external_lex_state = 26}, + [1934] = {.lex_state = 812, .external_lex_state = 12}, + [1935] = {.lex_state = 132, .external_lex_state = 13}, + [1936] = {.lex_state = 129, .external_lex_state = 12}, + [1937] = {.lex_state = 209, .external_lex_state = 13}, + [1938] = {.lex_state = 655, .external_lex_state = 13}, + [1939] = {.lex_state = 188, .external_lex_state = 13}, + [1940] = {.lex_state = 812, .external_lex_state = 12}, + [1941] = {.lex_state = 188, .external_lex_state = 13}, + [1942] = {.lex_state = 229, .external_lex_state = 24}, + [1943] = {.lex_state = 188, .external_lex_state = 13}, + [1944] = {.lex_state = 214, .external_lex_state = 12}, [1945] = {.lex_state = 812, .external_lex_state = 13}, - [1946] = {.lex_state = 132, .external_lex_state = 12}, - [1947] = {.lex_state = 654, .external_lex_state = 28}, - [1948] = {.lex_state = 649, .external_lex_state = 13}, - [1949] = {.lex_state = 812, .external_lex_state = 12}, - [1950] = {.lex_state = 0, .external_lex_state = 31}, - [1951] = {.lex_state = 0, .external_lex_state = 32}, - [1952] = {.lex_state = 32, .external_lex_state = 12}, - [1953] = {.lex_state = 812, .external_lex_state = 13}, - [1954] = {.lex_state = 654, .external_lex_state = 28}, - [1955] = {.lex_state = 654, .external_lex_state = 28}, - [1956] = {.lex_state = 812, .external_lex_state = 13}, - [1957] = {.lex_state = 217, .external_lex_state = 12}, - [1958] = {.lex_state = 143, .external_lex_state = 12}, + [1946] = {.lex_state = 214, .external_lex_state = 12}, + [1947] = {.lex_state = 812, .external_lex_state = 13}, + [1948] = {.lex_state = 229, .external_lex_state = 24}, + [1949] = {.lex_state = 215, .external_lex_state = 12}, + [1950] = {.lex_state = 188, .external_lex_state = 13}, + [1951] = {.lex_state = 207, .external_lex_state = 13}, + [1952] = {.lex_state = 654, .external_lex_state = 26}, + [1953] = {.lex_state = 32, .external_lex_state = 12}, + [1954] = {.lex_state = 225, .external_lex_state = 24}, + [1955] = {.lex_state = 45, .external_lex_state = 12}, + [1956] = {.lex_state = 12, .external_lex_state = 12}, + [1957] = {.lex_state = 802, .external_lex_state = 13}, + [1958] = {.lex_state = 12, .external_lex_state = 12}, [1959] = {.lex_state = 812, .external_lex_state = 12}, - [1960] = {.lex_state = 812, .external_lex_state = 12}, - [1961] = {.lex_state = 217, .external_lex_state = 12}, - [1962] = {.lex_state = 56, .external_lex_state = 24}, - [1963] = {.lex_state = 0, .external_lex_state = 31}, - [1964] = {.lex_state = 812, .external_lex_state = 13}, - [1965] = {.lex_state = 812, .external_lex_state = 12}, - [1966] = {.lex_state = 801, .external_lex_state = 13}, - [1967] = {.lex_state = 0, .external_lex_state = 32}, - [1968] = {.lex_state = 0, .external_lex_state = 31}, - [1969] = {.lex_state = 812, .external_lex_state = 12}, + [1960] = {.lex_state = 32, .external_lex_state = 12}, + [1961] = {.lex_state = 812, .external_lex_state = 12}, + [1962] = {.lex_state = 225, .external_lex_state = 24}, + [1963] = {.lex_state = 32, .external_lex_state = 12}, + [1964] = {.lex_state = 209, .external_lex_state = 13}, + [1965] = {.lex_state = 32, .external_lex_state = 12}, + [1966] = {.lex_state = 812, .external_lex_state = 13}, + [1967] = {.lex_state = 143, .external_lex_state = 12}, + [1968] = {.lex_state = 217, .external_lex_state = 12}, + [1969] = {.lex_state = 812, .external_lex_state = 13}, [1970] = {.lex_state = 812, .external_lex_state = 12}, - [1971] = {.lex_state = 654, .external_lex_state = 28}, - [1972] = {.lex_state = 654, .external_lex_state = 28}, - [1973] = {.lex_state = 812, .external_lex_state = 12}, - [1974] = {.lex_state = 812, .external_lex_state = 12}, - [1975] = {.lex_state = 12, .external_lex_state = 12}, - [1976] = {.lex_state = 32, .external_lex_state = 12}, - [1977] = {.lex_state = 132, .external_lex_state = 12}, - [1978] = {.lex_state = 132, .external_lex_state = 12}, - [1979] = {.lex_state = 63, .external_lex_state = 16}, + [1971] = {.lex_state = 802, .external_lex_state = 13}, + [1972] = {.lex_state = 812, .external_lex_state = 13}, + [1973] = {.lex_state = 124, .external_lex_state = 12}, + [1974] = {.lex_state = 812, .external_lex_state = 13}, + [1975] = {.lex_state = 209, .external_lex_state = 13}, + [1976] = {.lex_state = 812, .external_lex_state = 13}, + [1977] = {.lex_state = 12, .external_lex_state = 12}, + [1978] = {.lex_state = 812, .external_lex_state = 12}, + [1979] = {.lex_state = 132, .external_lex_state = 12}, [1980] = {.lex_state = 132, .external_lex_state = 12}, - [1981] = {.lex_state = 801, .external_lex_state = 13}, - [1982] = {.lex_state = 132, .external_lex_state = 12}, - [1983] = {.lex_state = 32, .external_lex_state = 12}, - [1984] = {.lex_state = 225, .external_lex_state = 25}, + [1981] = {.lex_state = 812, .external_lex_state = 12}, + [1982] = {.lex_state = 32, .external_lex_state = 12}, + [1983] = {.lex_state = 132, .external_lex_state = 12}, + [1984] = {.lex_state = 812, .external_lex_state = 13}, [1985] = {.lex_state = 32, .external_lex_state = 12}, - [1986] = {.lex_state = 32, .external_lex_state = 12}, - [1987] = {.lex_state = 32, .external_lex_state = 12}, - [1988] = {.lex_state = 0, .external_lex_state = 32}, - [1989] = {.lex_state = 206, .external_lex_state = 12}, - [1990] = {.lex_state = 802, .external_lex_state = 13}, - [1991] = {.lex_state = 802, .external_lex_state = 13}, - [1992] = {.lex_state = 812, .external_lex_state = 12}, - [1993] = {.lex_state = 209, .external_lex_state = 13}, + [1986] = {.lex_state = 132, .external_lex_state = 12}, + [1987] = {.lex_state = 0, .external_lex_state = 31}, + [1988] = {.lex_state = 812, .external_lex_state = 13}, + [1989] = {.lex_state = 132, .external_lex_state = 12}, + [1990] = {.lex_state = 63, .external_lex_state = 16}, + [1991] = {.lex_state = 132, .external_lex_state = 12}, + [1992] = {.lex_state = 801, .external_lex_state = 13}, + [1993] = {.lex_state = 812, .external_lex_state = 13}, [1994] = {.lex_state = 812, .external_lex_state = 12}, - [1995] = {.lex_state = 812, .external_lex_state = 12}, + [1995] = {.lex_state = 32, .external_lex_state = 12}, [1996] = {.lex_state = 32, .external_lex_state = 12}, - [1997] = {.lex_state = 812, .external_lex_state = 12}, - [1998] = {.lex_state = 132, .external_lex_state = 12}, - [1999] = {.lex_state = 12, .external_lex_state = 12}, - [2000] = {.lex_state = 225, .external_lex_state = 25}, - [2001] = {.lex_state = 209, .external_lex_state = 13}, - [2002] = {.lex_state = 217, .external_lex_state = 12}, + [1997] = {.lex_state = 0, .external_lex_state = 32}, + [1998] = {.lex_state = 30, .external_lex_state = 13}, + [1999] = {.lex_state = 812, .external_lex_state = 12}, + [2000] = {.lex_state = 812, .external_lex_state = 12}, + [2001] = {.lex_state = 0, .external_lex_state = 31}, + [2002] = {.lex_state = 812, .external_lex_state = 12}, [2003] = {.lex_state = 802, .external_lex_state = 13}, [2004] = {.lex_state = 812, .external_lex_state = 12}, - [2005] = {.lex_state = 812, .external_lex_state = 12}, - [2006] = {.lex_state = 812, .external_lex_state = 13}, - [2007] = {.lex_state = 12, .external_lex_state = 12}, - [2008] = {.lex_state = 217, .external_lex_state = 12}, - [2009] = {.lex_state = 209, .external_lex_state = 13}, - [2010] = {.lex_state = 32, .external_lex_state = 12}, - [2011] = {.lex_state = 30, .external_lex_state = 13}, - [2012] = {.lex_state = 812, .external_lex_state = 13}, - [2013] = {.lex_state = 143, .external_lex_state = 12}, - [2014] = {.lex_state = 0, .external_lex_state = 31}, + [2005] = {.lex_state = 801, .external_lex_state = 13}, + [2006] = {.lex_state = 0, .external_lex_state = 32}, + [2007] = {.lex_state = 812, .external_lex_state = 13}, + [2008] = {.lex_state = 0, .external_lex_state = 31}, + [2009] = {.lex_state = 812, .external_lex_state = 12}, + [2010] = {.lex_state = 217, .external_lex_state = 12}, + [2011] = {.lex_state = 654, .external_lex_state = 26}, + [2012] = {.lex_state = 217, .external_lex_state = 12}, + [2013] = {.lex_state = 812, .external_lex_state = 12}, + [2014] = {.lex_state = 32, .external_lex_state = 12}, [2015] = {.lex_state = 812, .external_lex_state = 12}, - [2016] = {.lex_state = 812, .external_lex_state = 12}, - [2017] = {.lex_state = 812, .external_lex_state = 12}, + [2016] = {.lex_state = 132, .external_lex_state = 12}, + [2017] = {.lex_state = 143, .external_lex_state = 12}, [2018] = {.lex_state = 209, .external_lex_state = 13}, - [2019] = {.lex_state = 12, .external_lex_state = 12}, - [2020] = {.lex_state = 812, .external_lex_state = 13}, - [2021] = {.lex_state = 12, .external_lex_state = 12}, - [2022] = {.lex_state = 0, .external_lex_state = 32}, - [2023] = {.lex_state = 209, .external_lex_state = 13}, - [2024] = {.lex_state = 32, .external_lex_state = 12}, - [2025] = {.lex_state = 812, .external_lex_state = 12}, - [2026] = {.lex_state = 132, .external_lex_state = 12}, - [2027] = {.lex_state = 812, .external_lex_state = 12}, - [2028] = {.lex_state = 32, .external_lex_state = 12}, - [2029] = {.lex_state = 812, .external_lex_state = 12}, - [2030] = {.lex_state = 209, .external_lex_state = 13}, - [2031] = {.lex_state = 32, .external_lex_state = 12}, - [2032] = {.lex_state = 143, .external_lex_state = 12}, - [2033] = {.lex_state = 124, .external_lex_state = 12}, - [2034] = {.lex_state = 124, .external_lex_state = 12}, - [2035] = {.lex_state = 132, .external_lex_state = 12}, + [2019] = {.lex_state = 0, .external_lex_state = 31}, + [2020] = {.lex_state = 209, .external_lex_state = 13}, + [2021] = {.lex_state = 32, .external_lex_state = 12}, + [2022] = {.lex_state = 32, .external_lex_state = 12}, + [2023] = {.lex_state = 124, .external_lex_state = 12}, + [2024] = {.lex_state = 812, .external_lex_state = 12}, + [2025] = {.lex_state = 12, .external_lex_state = 12}, + [2026] = {.lex_state = 209, .external_lex_state = 13}, + [2027] = {.lex_state = 654, .external_lex_state = 26}, + [2028] = {.lex_state = 654, .external_lex_state = 26}, + [2029] = {.lex_state = 209, .external_lex_state = 13}, + [2030] = {.lex_state = 812, .external_lex_state = 12}, + [2031] = {.lex_state = 812, .external_lex_state = 12}, + [2032] = {.lex_state = 209, .external_lex_state = 13}, + [2033] = {.lex_state = 812, .external_lex_state = 12}, + [2034] = {.lex_state = 812, .external_lex_state = 12}, + [2035] = {.lex_state = 812, .external_lex_state = 12}, [2036] = {.lex_state = 812, .external_lex_state = 12}, - [2037] = {.lex_state = 209, .external_lex_state = 13}, - [2038] = {.lex_state = 812, .external_lex_state = 12}, - [2039] = {.lex_state = 812, .external_lex_state = 12}, - [2040] = {.lex_state = 654, .external_lex_state = 28}, - [2041] = {.lex_state = 812, .external_lex_state = 13}, - [2042] = {.lex_state = 654, .external_lex_state = 28}, - [2043] = {.lex_state = 32, .external_lex_state = 12}, - [2044] = {.lex_state = 209, .external_lex_state = 13}, - [2045] = {.lex_state = 209, .external_lex_state = 13}, - [2046] = {.lex_state = 32, .external_lex_state = 12}, - [2047] = {.lex_state = 812, .external_lex_state = 12}, + [2037] = {.lex_state = 649, .external_lex_state = 13}, + [2038] = {.lex_state = 654, .external_lex_state = 26}, + [2039] = {.lex_state = 654, .external_lex_state = 26}, + [2040] = {.lex_state = 0, .external_lex_state = 32}, + [2041] = {.lex_state = 812, .external_lex_state = 12}, + [2042] = {.lex_state = 0, .external_lex_state = 32}, + [2043] = {.lex_state = 132, .external_lex_state = 12}, + [2044] = {.lex_state = 812, .external_lex_state = 12}, + [2045] = {.lex_state = 32, .external_lex_state = 12}, + [2046] = {.lex_state = 812, .external_lex_state = 12}, + [2047] = {.lex_state = 209, .external_lex_state = 13}, [2048] = {.lex_state = 132, .external_lex_state = 12}, - [2049] = {.lex_state = 45, .external_lex_state = 12}, - [2050] = {.lex_state = 812, .external_lex_state = 13}, - [2051] = {.lex_state = 132, .external_lex_state = 12}, - [2052] = {.lex_state = 132, .external_lex_state = 12}, - [2053] = {.lex_state = 19, .external_lex_state = 12}, - [2054] = {.lex_state = 812, .external_lex_state = 13}, - [2055] = {.lex_state = 12, .external_lex_state = 12}, - [2056] = {.lex_state = 32, .external_lex_state = 12}, - [2057] = {.lex_state = 12, .external_lex_state = 12}, - [2058] = {.lex_state = 31, .external_lex_state = 12}, + [2049] = {.lex_state = 32, .external_lex_state = 12}, + [2050] = {.lex_state = 143, .external_lex_state = 12}, + [2051] = {.lex_state = 209, .external_lex_state = 13}, + [2052] = {.lex_state = 12, .external_lex_state = 12}, + [2053] = {.lex_state = 812, .external_lex_state = 12}, + [2054] = {.lex_state = 56, .external_lex_state = 25}, + [2055] = {.lex_state = 132, .external_lex_state = 12}, + [2056] = {.lex_state = 654, .external_lex_state = 26}, + [2057] = {.lex_state = 206, .external_lex_state = 12}, + [2058] = {.lex_state = 217, .external_lex_state = 12}, [2059] = {.lex_state = 812, .external_lex_state = 12}, [2060] = {.lex_state = 812, .external_lex_state = 13}, - [2061] = {.lex_state = 32, .external_lex_state = 12}, + [2061] = {.lex_state = 812, .external_lex_state = 13}, [2062] = {.lex_state = 812, .external_lex_state = 13}, - [2063] = {.lex_state = 806, .external_lex_state = 12}, - [2064] = {.lex_state = 812, .external_lex_state = 12}, - [2065] = {.lex_state = 812, .external_lex_state = 12}, - [2066] = {.lex_state = 812, .external_lex_state = 13}, - [2067] = {.lex_state = 206, .external_lex_state = 13}, - [2068] = {.lex_state = 188, .external_lex_state = 13}, - [2069] = {.lex_state = 812, .external_lex_state = 13}, - [2070] = {.lex_state = 812, .external_lex_state = 12}, - [2071] = {.lex_state = 143, .external_lex_state = 12}, - [2072] = {.lex_state = 143, .external_lex_state = 12}, - [2073] = {.lex_state = 132, .external_lex_state = 12}, - [2074] = {.lex_state = 267, .external_lex_state = 28}, - [2075] = {.lex_state = 209, .external_lex_state = 33}, - [2076] = {.lex_state = 806, .external_lex_state = 12}, - [2077] = {.lex_state = 812, .external_lex_state = 13}, - [2078] = {.lex_state = 229, .external_lex_state = 25}, - [2079] = {.lex_state = 229, .external_lex_state = 25}, - [2080] = {.lex_state = 0, .external_lex_state = 32}, - [2081] = {.lex_state = 812, .external_lex_state = 13}, - [2082] = {.lex_state = 145, .external_lex_state = 13}, - [2083] = {.lex_state = 812, .external_lex_state = 13}, + [2063] = {.lex_state = 812, .external_lex_state = 13}, + [2064] = {.lex_state = 812, .external_lex_state = 13}, + [2065] = {.lex_state = 812, .external_lex_state = 13}, + [2066] = {.lex_state = 209, .external_lex_state = 33}, + [2067] = {.lex_state = 806, .external_lex_state = 12}, + [2068] = {.lex_state = 812, .external_lex_state = 13}, + [2069] = {.lex_state = 32, .external_lex_state = 12}, + [2070] = {.lex_state = 209, .external_lex_state = 12}, + [2071] = {.lex_state = 812, .external_lex_state = 13}, + [2072] = {.lex_state = 267, .external_lex_state = 26}, + [2073] = {.lex_state = 12, .external_lex_state = 12}, + [2074] = {.lex_state = 229, .external_lex_state = 24}, + [2075] = {.lex_state = 224, .external_lex_state = 12}, + [2076] = {.lex_state = 132, .external_lex_state = 12}, + [2077] = {.lex_state = 229, .external_lex_state = 24}, + [2078] = {.lex_state = 812, .external_lex_state = 12}, + [2079] = {.lex_state = 31, .external_lex_state = 12}, + [2080] = {.lex_state = 24, .external_lex_state = 12}, + [2081] = {.lex_state = 188, .external_lex_state = 13}, + [2082] = {.lex_state = 812, .external_lex_state = 13}, + [2083] = {.lex_state = 143, .external_lex_state = 12}, [2084] = {.lex_state = 812, .external_lex_state = 13}, - [2085] = {.lex_state = 812, .external_lex_state = 13}, - [2086] = {.lex_state = 812, .external_lex_state = 13}, - [2087] = {.lex_state = 145, .external_lex_state = 13}, + [2085] = {.lex_state = 806, .external_lex_state = 12}, + [2086] = {.lex_state = 143, .external_lex_state = 12}, + [2087] = {.lex_state = 806, .external_lex_state = 12}, [2088] = {.lex_state = 812, .external_lex_state = 12}, [2089] = {.lex_state = 812, .external_lex_state = 13}, - [2090] = {.lex_state = 802, .external_lex_state = 12}, - [2091] = {.lex_state = 812, .external_lex_state = 12}, - [2092] = {.lex_state = 812, .external_lex_state = 13}, - [2093] = {.lex_state = 812, .external_lex_state = 13}, - [2094] = {.lex_state = 209, .external_lex_state = 33}, - [2095] = {.lex_state = 806, .external_lex_state = 12}, - [2096] = {.lex_state = 812, .external_lex_state = 13}, - [2097] = {.lex_state = 143, .external_lex_state = 12}, - [2098] = {.lex_state = 812, .external_lex_state = 13}, + [2090] = {.lex_state = 812, .external_lex_state = 13}, + [2091] = {.lex_state = 229, .external_lex_state = 24}, + [2092] = {.lex_state = 267, .external_lex_state = 26}, + [2093] = {.lex_state = 0, .external_lex_state = 31}, + [2094] = {.lex_state = 32, .external_lex_state = 12}, + [2095] = {.lex_state = 812, .external_lex_state = 13}, + [2096] = {.lex_state = 145, .external_lex_state = 13}, + [2097] = {.lex_state = 802, .external_lex_state = 12}, + [2098] = {.lex_state = 188, .external_lex_state = 13}, [2099] = {.lex_state = 812, .external_lex_state = 13}, - [2100] = {.lex_state = 143, .external_lex_state = 12}, - [2101] = {.lex_state = 31, .external_lex_state = 12}, - [2102] = {.lex_state = 812, .external_lex_state = 12}, - [2103] = {.lex_state = 812, .external_lex_state = 12}, - [2104] = {.lex_state = 188, .external_lex_state = 13}, + [2100] = {.lex_state = 812, .external_lex_state = 13}, + [2101] = {.lex_state = 812, .external_lex_state = 12}, + [2102] = {.lex_state = 209, .external_lex_state = 33}, + [2103] = {.lex_state = 208, .external_lex_state = 12}, + [2104] = {.lex_state = 18, .external_lex_state = 12}, [2105] = {.lex_state = 812, .external_lex_state = 12}, - [2106] = {.lex_state = 812, .external_lex_state = 13}, - [2107] = {.lex_state = 12, .external_lex_state = 12}, - [2108] = {.lex_state = 12, .external_lex_state = 12}, - [2109] = {.lex_state = 812, .external_lex_state = 13}, - [2110] = {.lex_state = 12, .external_lex_state = 12}, - [2111] = {.lex_state = 31, .external_lex_state = 12}, - [2112] = {.lex_state = 229, .external_lex_state = 25}, + [2106] = {.lex_state = 812, .external_lex_state = 12}, + [2107] = {.lex_state = 802, .external_lex_state = 12}, + [2108] = {.lex_state = 812, .external_lex_state = 12}, + [2109] = {.lex_state = 143, .external_lex_state = 12}, + [2110] = {.lex_state = 209, .external_lex_state = 12}, + [2111] = {.lex_state = 24, .external_lex_state = 12}, + [2112] = {.lex_state = 145, .external_lex_state = 13}, [2113] = {.lex_state = 812, .external_lex_state = 13}, - [2114] = {.lex_state = 802, .external_lex_state = 12}, - [2115] = {.lex_state = 812, .external_lex_state = 12}, - [2116] = {.lex_state = 209, .external_lex_state = 12}, - [2117] = {.lex_state = 20, .external_lex_state = 12}, - [2118] = {.lex_state = 267, .external_lex_state = 28}, - [2119] = {.lex_state = 208, .external_lex_state = 12}, - [2120] = {.lex_state = 209, .external_lex_state = 12}, - [2121] = {.lex_state = 812, .external_lex_state = 13}, - [2122] = {.lex_state = 188, .external_lex_state = 13}, - [2123] = {.lex_state = 24, .external_lex_state = 12}, - [2124] = {.lex_state = 812, .external_lex_state = 12}, - [2125] = {.lex_state = 812, .external_lex_state = 12}, - [2126] = {.lex_state = 188, .external_lex_state = 13}, + [2114] = {.lex_state = 812, .external_lex_state = 12}, + [2115] = {.lex_state = 188, .external_lex_state = 13}, + [2116] = {.lex_state = 812, .external_lex_state = 13}, + [2117] = {.lex_state = 812, .external_lex_state = 12}, + [2118] = {.lex_state = 20, .external_lex_state = 12}, + [2119] = {.lex_state = 812, .external_lex_state = 13}, + [2120] = {.lex_state = 812, .external_lex_state = 13}, + [2121] = {.lex_state = 812, .external_lex_state = 12}, + [2122] = {.lex_state = 0, .external_lex_state = 32}, + [2123] = {.lex_state = 812, .external_lex_state = 13}, + [2124] = {.lex_state = 812, .external_lex_state = 13}, + [2125] = {.lex_state = 209, .external_lex_state = 33}, + [2126] = {.lex_state = 31, .external_lex_state = 12}, [2127] = {.lex_state = 812, .external_lex_state = 13}, - [2128] = {.lex_state = 209, .external_lex_state = 33}, - [2129] = {.lex_state = 143, .external_lex_state = 12}, - [2130] = {.lex_state = 209, .external_lex_state = 33}, - [2131] = {.lex_state = 0, .external_lex_state = 31}, - [2132] = {.lex_state = 224, .external_lex_state = 12}, - [2133] = {.lex_state = 209, .external_lex_state = 33}, - [2134] = {.lex_state = 812, .external_lex_state = 13}, - [2135] = {.lex_state = 145, .external_lex_state = 13}, - [2136] = {.lex_state = 24, .external_lex_state = 12}, - [2137] = {.lex_state = 266, .external_lex_state = 12}, - [2138] = {.lex_state = 31, .external_lex_state = 13}, - [2139] = {.lex_state = 812, .external_lex_state = 12}, - [2140] = {.lex_state = 656, .external_lex_state = 12}, - [2141] = {.lex_state = 209, .external_lex_state = 12}, - [2142] = {.lex_state = 145, .external_lex_state = 13}, - [2143] = {.lex_state = 812, .external_lex_state = 13}, - [2144] = {.lex_state = 32, .external_lex_state = 12}, - [2145] = {.lex_state = 222, .external_lex_state = 12}, - [2146] = {.lex_state = 32, .external_lex_state = 12}, - [2147] = {.lex_state = 266, .external_lex_state = 12}, - [2148] = {.lex_state = 266, .external_lex_state = 12}, - [2149] = {.lex_state = 812, .external_lex_state = 12}, - [2150] = {.lex_state = 209, .external_lex_state = 12}, - [2151] = {.lex_state = 266, .external_lex_state = 12}, - [2152] = {.lex_state = 656, .external_lex_state = 12}, - [2153] = {.lex_state = 145, .external_lex_state = 13}, - [2154] = {.lex_state = 266, .external_lex_state = 12}, + [2128] = {.lex_state = 12, .external_lex_state = 12}, + [2129] = {.lex_state = 12, .external_lex_state = 12}, + [2130] = {.lex_state = 812, .external_lex_state = 12}, + [2131] = {.lex_state = 145, .external_lex_state = 13}, + [2132] = {.lex_state = 812, .external_lex_state = 13}, + [2133] = {.lex_state = 12, .external_lex_state = 12}, + [2134] = {.lex_state = 812, .external_lex_state = 12}, + [2135] = {.lex_state = 132, .external_lex_state = 12}, + [2136] = {.lex_state = 143, .external_lex_state = 12}, + [2137] = {.lex_state = 12, .external_lex_state = 12}, + [2138] = {.lex_state = 812, .external_lex_state = 12}, + [2139] = {.lex_state = 206, .external_lex_state = 13}, + [2140] = {.lex_state = 31, .external_lex_state = 12}, + [2141] = {.lex_state = 188, .external_lex_state = 13}, + [2142] = {.lex_state = 812, .external_lex_state = 13}, + [2143] = {.lex_state = 143, .external_lex_state = 12}, + [2144] = {.lex_state = 209, .external_lex_state = 33}, + [2145] = {.lex_state = 209, .external_lex_state = 33}, + [2146] = {.lex_state = 132, .external_lex_state = 12}, + [2147] = {.lex_state = 12, .external_lex_state = 12}, + [2148] = {.lex_state = 812, .external_lex_state = 22}, + [2149] = {.lex_state = 812, .external_lex_state = 13}, + [2150] = {.lex_state = 812, .external_lex_state = 13}, + [2151] = {.lex_state = 812, .external_lex_state = 12}, + [2152] = {.lex_state = 812, .external_lex_state = 13}, + [2153] = {.lex_state = 812, .external_lex_state = 13}, + [2154] = {.lex_state = 812, .external_lex_state = 13}, [2155] = {.lex_state = 32, .external_lex_state = 12}, - [2156] = {.lex_state = 266, .external_lex_state = 12}, - [2157] = {.lex_state = 266, .external_lex_state = 12}, - [2158] = {.lex_state = 654, .external_lex_state = 28}, - [2159] = {.lex_state = 32, .external_lex_state = 12}, - [2160] = {.lex_state = 145, .external_lex_state = 13}, - [2161] = {.lex_state = 266, .external_lex_state = 12}, - [2162] = {.lex_state = 654, .external_lex_state = 28}, - [2163] = {.lex_state = 812, .external_lex_state = 13}, + [2156] = {.lex_state = 609, .external_lex_state = 30}, + [2157] = {.lex_state = 32, .external_lex_state = 12}, + [2158] = {.lex_state = 144, .external_lex_state = 12}, + [2159] = {.lex_state = 812, .external_lex_state = 12}, + [2160] = {.lex_state = 812, .external_lex_state = 13}, + [2161] = {.lex_state = 655, .external_lex_state = 13}, + [2162] = {.lex_state = 266, .external_lex_state = 12}, + [2163] = {.lex_state = 266, .external_lex_state = 12}, [2164] = {.lex_state = 266, .external_lex_state = 12}, [2165] = {.lex_state = 266, .external_lex_state = 12}, - [2166] = {.lex_state = 812, .external_lex_state = 13}, - [2167] = {.lex_state = 32, .external_lex_state = 12}, - [2168] = {.lex_state = 266, .external_lex_state = 12}, - [2169] = {.lex_state = 209, .external_lex_state = 13}, - [2170] = {.lex_state = 812, .external_lex_state = 12}, - [2171] = {.lex_state = 812, .external_lex_state = 12}, - [2172] = {.lex_state = 222, .external_lex_state = 12}, - [2173] = {.lex_state = 0, .external_lex_state = 17}, - [2174] = {.lex_state = 812, .external_lex_state = 12}, + [2166] = {.lex_state = 266, .external_lex_state = 12}, + [2167] = {.lex_state = 266, .external_lex_state = 12}, + [2168] = {.lex_state = 3, .external_lex_state = 13}, + [2169] = {.lex_state = 266, .external_lex_state = 12}, + [2170] = {.lex_state = 266, .external_lex_state = 12}, + [2171] = {.lex_state = 32, .external_lex_state = 12}, + [2172] = {.lex_state = 266, .external_lex_state = 12}, + [2173] = {.lex_state = 266, .external_lex_state = 12}, + [2174] = {.lex_state = 266, .external_lex_state = 12}, [2175] = {.lex_state = 266, .external_lex_state = 12}, - [2176] = {.lex_state = 0, .external_lex_state = 17}, + [2176] = {.lex_state = 32, .external_lex_state = 12}, [2177] = {.lex_state = 266, .external_lex_state = 12}, - [2178] = {.lex_state = 115, .external_lex_state = 12}, - [2179] = {.lex_state = 115, .external_lex_state = 12}, - [2180] = {.lex_state = 115, .external_lex_state = 12}, - [2181] = {.lex_state = 812, .external_lex_state = 13}, - [2182] = {.lex_state = 32, .external_lex_state = 12}, - [2183] = {.lex_state = 32, .external_lex_state = 12}, - [2184] = {.lex_state = 812, .external_lex_state = 13}, - [2185] = {.lex_state = 812, .external_lex_state = 12}, - [2186] = {.lex_state = 208, .external_lex_state = 13}, - [2187] = {.lex_state = 32, .external_lex_state = 12}, + [2178] = {.lex_state = 266, .external_lex_state = 12}, + [2179] = {.lex_state = 32, .external_lex_state = 12}, + [2180] = {.lex_state = 266, .external_lex_state = 12}, + [2181] = {.lex_state = 145, .external_lex_state = 13}, + [2182] = {.lex_state = 266, .external_lex_state = 12}, + [2183] = {.lex_state = 266, .external_lex_state = 12}, + [2184] = {.lex_state = 32, .external_lex_state = 12}, + [2185] = {.lex_state = 209, .external_lex_state = 13}, + [2186] = {.lex_state = 266, .external_lex_state = 12}, + [2187] = {.lex_state = 208, .external_lex_state = 13}, [2188] = {.lex_state = 266, .external_lex_state = 12}, [2189] = {.lex_state = 609, .external_lex_state = 30}, - [2190] = {.lex_state = 31, .external_lex_state = 13}, + [2190] = {.lex_state = 32, .external_lex_state = 12}, [2191] = {.lex_state = 32, .external_lex_state = 12}, - [2192] = {.lex_state = 144, .external_lex_state = 12}, - [2193] = {.lex_state = 609, .external_lex_state = 30}, - [2194] = {.lex_state = 609, .external_lex_state = 30}, - [2195] = {.lex_state = 32, .external_lex_state = 12}, - [2196] = {.lex_state = 32, .external_lex_state = 12}, - [2197] = {.lex_state = 812, .external_lex_state = 12}, - [2198] = {.lex_state = 812, .external_lex_state = 12}, - [2199] = {.lex_state = 144, .external_lex_state = 12}, - [2200] = {.lex_state = 266, .external_lex_state = 12}, - [2201] = {.lex_state = 209, .external_lex_state = 12}, - [2202] = {.lex_state = 102, .external_lex_state = 12}, - [2203] = {.lex_state = 266, .external_lex_state = 12}, - [2204] = {.lex_state = 812, .external_lex_state = 22}, + [2192] = {.lex_state = 21, .external_lex_state = 13}, + [2193] = {.lex_state = 209, .external_lex_state = 13}, + [2194] = {.lex_state = 656, .external_lex_state = 12}, + [2195] = {.lex_state = 209, .external_lex_state = 12}, + [2196] = {.lex_state = 266, .external_lex_state = 12}, + [2197] = {.lex_state = 32, .external_lex_state = 12}, + [2198] = {.lex_state = 266, .external_lex_state = 12}, + [2199] = {.lex_state = 31, .external_lex_state = 13}, + [2200] = {.lex_state = 144, .external_lex_state = 12}, + [2201] = {.lex_state = 32, .external_lex_state = 12}, + [2202] = {.lex_state = 609, .external_lex_state = 30}, + [2203] = {.lex_state = 32, .external_lex_state = 12}, + [2204] = {.lex_state = 32, .external_lex_state = 12}, [2205] = {.lex_state = 3, .external_lex_state = 13}, - [2206] = {.lex_state = 812, .external_lex_state = 12}, - [2207] = {.lex_state = 21, .external_lex_state = 13}, - [2208] = {.lex_state = 209, .external_lex_state = 13}, - [2209] = {.lex_state = 812, .external_lex_state = 13}, - [2210] = {.lex_state = 2982, .external_lex_state = 12}, + [2206] = {.lex_state = 3, .external_lex_state = 13}, + [2207] = {.lex_state = 31, .external_lex_state = 13}, + [2208] = {.lex_state = 102, .external_lex_state = 12}, + [2209] = {.lex_state = 656, .external_lex_state = 12}, + [2210] = {.lex_state = 209, .external_lex_state = 12}, [2211] = {.lex_state = 812, .external_lex_state = 12}, - [2212] = {.lex_state = 209, .external_lex_state = 12}, - [2213] = {.lex_state = 656, .external_lex_state = 12}, - [2214] = {.lex_state = 209, .external_lex_state = 12}, - [2215] = {.lex_state = 266, .external_lex_state = 12}, - [2216] = {.lex_state = 209, .external_lex_state = 12}, - [2217] = {.lex_state = 209, .external_lex_state = 12}, - [2218] = {.lex_state = 2, .external_lex_state = 13}, - [2219] = {.lex_state = 812, .external_lex_state = 13}, - [2220] = {.lex_state = 812, .external_lex_state = 12}, - [2221] = {.lex_state = 266, .external_lex_state = 12}, - [2222] = {.lex_state = 32, .external_lex_state = 12}, - [2223] = {.lex_state = 812, .external_lex_state = 13}, + [2212] = {.lex_state = 266, .external_lex_state = 12}, + [2213] = {.lex_state = 266, .external_lex_state = 12}, + [2214] = {.lex_state = 144, .external_lex_state = 12}, + [2215] = {.lex_state = 3, .external_lex_state = 13}, + [2216] = {.lex_state = 812, .external_lex_state = 12}, + [2217] = {.lex_state = 609, .external_lex_state = 30}, + [2218] = {.lex_state = 32, .external_lex_state = 12}, + [2219] = {.lex_state = 32, .external_lex_state = 12}, + [2220] = {.lex_state = 115, .external_lex_state = 12}, + [2221] = {.lex_state = 115, .external_lex_state = 12}, + [2222] = {.lex_state = 115, .external_lex_state = 12}, + [2223] = {.lex_state = 656, .external_lex_state = 12}, [2224] = {.lex_state = 209, .external_lex_state = 12}, - [2225] = {.lex_state = 145, .external_lex_state = 13}, - [2226] = {.lex_state = 3, .external_lex_state = 13}, - [2227] = {.lex_state = 656, .external_lex_state = 12}, - [2228] = {.lex_state = 31, .external_lex_state = 13}, - [2229] = {.lex_state = 145, .external_lex_state = 13}, - [2230] = {.lex_state = 812, .external_lex_state = 12}, - [2231] = {.lex_state = 812, .external_lex_state = 22}, - [2232] = {.lex_state = 812, .external_lex_state = 13}, - [2233] = {.lex_state = 266, .external_lex_state = 12}, - [2234] = {.lex_state = 115, .external_lex_state = 12}, - [2235] = {.lex_state = 32, .external_lex_state = 12}, - [2236] = {.lex_state = 266, .external_lex_state = 12}, - [2237] = {.lex_state = 12, .external_lex_state = 12}, - [2238] = {.lex_state = 2982, .external_lex_state = 12}, - [2239] = {.lex_state = 266, .external_lex_state = 12}, - [2240] = {.lex_state = 266, .external_lex_state = 12}, - [2241] = {.lex_state = 812, .external_lex_state = 13}, - [2242] = {.lex_state = 32, .external_lex_state = 12}, - [2243] = {.lex_state = 144, .external_lex_state = 12}, - [2244] = {.lex_state = 812, .external_lex_state = 12}, - [2245] = {.lex_state = 609, .external_lex_state = 30}, - [2246] = {.lex_state = 654, .external_lex_state = 28}, - [2247] = {.lex_state = 812, .external_lex_state = 12}, - [2248] = {.lex_state = 32, .external_lex_state = 12}, - [2249] = {.lex_state = 31, .external_lex_state = 12}, - [2250] = {.lex_state = 32, .external_lex_state = 12}, - [2251] = {.lex_state = 12, .external_lex_state = 12}, - [2252] = {.lex_state = 12, .external_lex_state = 12}, - [2253] = {.lex_state = 802, .external_lex_state = 13}, - [2254] = {.lex_state = 3, .external_lex_state = 13}, - [2255] = {.lex_state = 609, .external_lex_state = 30}, + [2225] = {.lex_state = 266, .external_lex_state = 12}, + [2226] = {.lex_state = 209, .external_lex_state = 12}, + [2227] = {.lex_state = 812, .external_lex_state = 12}, + [2228] = {.lex_state = 2, .external_lex_state = 13}, + [2229] = {.lex_state = 209, .external_lex_state = 12}, + [2230] = {.lex_state = 266, .external_lex_state = 12}, + [2231] = {.lex_state = 144, .external_lex_state = 12}, + [2232] = {.lex_state = 609, .external_lex_state = 30}, + [2233] = {.lex_state = 32, .external_lex_state = 12}, + [2234] = {.lex_state = 812, .external_lex_state = 12}, + [2235] = {.lex_state = 145, .external_lex_state = 13}, + [2236] = {.lex_state = 812, .external_lex_state = 13}, + [2237] = {.lex_state = 32, .external_lex_state = 12}, + [2238] = {.lex_state = 812, .external_lex_state = 13}, + [2239] = {.lex_state = 812, .external_lex_state = 12}, + [2240] = {.lex_state = 2984, .external_lex_state = 12}, + [2241] = {.lex_state = 656, .external_lex_state = 12}, + [2242] = {.lex_state = 209, .external_lex_state = 12}, + [2243] = {.lex_state = 209, .external_lex_state = 12}, + [2244] = {.lex_state = 209, .external_lex_state = 12}, + [2245] = {.lex_state = 222, .external_lex_state = 12}, + [2246] = {.lex_state = 812, .external_lex_state = 12}, + [2247] = {.lex_state = 145, .external_lex_state = 13}, + [2248] = {.lex_state = 654, .external_lex_state = 26}, + [2249] = {.lex_state = 654, .external_lex_state = 26}, + [2250] = {.lex_state = 812, .external_lex_state = 12}, + [2251] = {.lex_state = 266, .external_lex_state = 12}, + [2252] = {.lex_state = 266, .external_lex_state = 12}, + [2253] = {.lex_state = 0, .external_lex_state = 17}, + [2254] = {.lex_state = 222, .external_lex_state = 12}, + [2255] = {.lex_state = 0, .external_lex_state = 17}, [2256] = {.lex_state = 266, .external_lex_state = 12}, - [2257] = {.lex_state = 266, .external_lex_state = 12}, + [2257] = {.lex_state = 32, .external_lex_state = 12}, [2258] = {.lex_state = 144, .external_lex_state = 12}, - [2259] = {.lex_state = 812, .external_lex_state = 13}, - [2260] = {.lex_state = 266, .external_lex_state = 12}, - [2261] = {.lex_state = 266, .external_lex_state = 12}, - [2262] = {.lex_state = 266, .external_lex_state = 12}, + [2259] = {.lex_state = 609, .external_lex_state = 30}, + [2260] = {.lex_state = 32, .external_lex_state = 12}, + [2261] = {.lex_state = 115, .external_lex_state = 12}, + [2262] = {.lex_state = 12, .external_lex_state = 12}, [2263] = {.lex_state = 802, .external_lex_state = 13}, - [2264] = {.lex_state = 209, .external_lex_state = 12}, - [2265] = {.lex_state = 266, .external_lex_state = 12}, - [2266] = {.lex_state = 656, .external_lex_state = 12}, - [2267] = {.lex_state = 812, .external_lex_state = 13}, - [2268] = {.lex_state = 655, .external_lex_state = 13}, - [2269] = {.lex_state = 266, .external_lex_state = 12}, - [2270] = {.lex_state = 144, .external_lex_state = 12}, - [2271] = {.lex_state = 609, .external_lex_state = 30}, - [2272] = {.lex_state = 32, .external_lex_state = 12}, - [2273] = {.lex_state = 32, .external_lex_state = 12}, - [2274] = {.lex_state = 3, .external_lex_state = 13}, - [2275] = {.lex_state = 3, .external_lex_state = 13}, - [2276] = {.lex_state = 812, .external_lex_state = 12}, - [2277] = {.lex_state = 812, .external_lex_state = 12}, + [2264] = {.lex_state = 2984, .external_lex_state = 12}, + [2265] = {.lex_state = 812, .external_lex_state = 12}, + [2266] = {.lex_state = 812, .external_lex_state = 12}, + [2267] = {.lex_state = 12, .external_lex_state = 12}, + [2268] = {.lex_state = 31, .external_lex_state = 12}, + [2269] = {.lex_state = 812, .external_lex_state = 22}, + [2270] = {.lex_state = 812, .external_lex_state = 13}, + [2271] = {.lex_state = 812, .external_lex_state = 12}, + [2272] = {.lex_state = 812, .external_lex_state = 13}, + [2273] = {.lex_state = 802, .external_lex_state = 13}, + [2274] = {.lex_state = 266, .external_lex_state = 12}, + [2275] = {.lex_state = 145, .external_lex_state = 13}, + [2276] = {.lex_state = 3, .external_lex_state = 13}, + [2277] = {.lex_state = 145, .external_lex_state = 13}, [2278] = {.lex_state = 812, .external_lex_state = 12}, - [2279] = {.lex_state = 26, .external_lex_state = 34}, - [2280] = {.lex_state = 812, .external_lex_state = 12}, - [2281] = {.lex_state = 0, .external_lex_state = 13}, - [2282] = {.lex_state = 609, .external_lex_state = 12}, - [2283] = {.lex_state = 812, .external_lex_state = 12}, + [2279] = {.lex_state = 31, .external_lex_state = 13}, + [2280] = {.lex_state = 812, .external_lex_state = 13}, + [2281] = {.lex_state = 656, .external_lex_state = 12}, + [2282] = {.lex_state = 209, .external_lex_state = 12}, + [2283] = {.lex_state = 654, .external_lex_state = 26}, [2284] = {.lex_state = 812, .external_lex_state = 12}, - [2285] = {.lex_state = 812, .external_lex_state = 12}, + [2285] = {.lex_state = 812, .external_lex_state = 13}, [2286] = {.lex_state = 812, .external_lex_state = 12}, [2287] = {.lex_state = 812, .external_lex_state = 12}, [2288] = {.lex_state = 812, .external_lex_state = 12}, - [2289] = {.lex_state = 812, .external_lex_state = 12}, + [2289] = {.lex_state = 812, .external_lex_state = 22}, [2290] = {.lex_state = 812, .external_lex_state = 12}, - [2291] = {.lex_state = 812, .external_lex_state = 12}, + [2291] = {.lex_state = 0, .external_lex_state = 13}, [2292] = {.lex_state = 812, .external_lex_state = 12}, [2293] = {.lex_state = 812, .external_lex_state = 12}, - [2294] = {.lex_state = 144, .external_lex_state = 12}, + [2294] = {.lex_state = 209, .external_lex_state = 12}, [2295] = {.lex_state = 812, .external_lex_state = 12}, - [2296] = {.lex_state = 812, .external_lex_state = 12}, - [2297] = {.lex_state = 812, .external_lex_state = 12}, - [2298] = {.lex_state = 812, .external_lex_state = 12}, - [2299] = {.lex_state = 609, .external_lex_state = 12}, - [2300] = {.lex_state = 812, .external_lex_state = 12}, - [2301] = {.lex_state = 812, .external_lex_state = 12}, - [2302] = {.lex_state = 0, .external_lex_state = 13}, - [2303] = {.lex_state = 609, .external_lex_state = 12}, - [2304] = {.lex_state = 812, .external_lex_state = 12}, - [2305] = {.lex_state = 812, .external_lex_state = 12}, - [2306] = {.lex_state = 144, .external_lex_state = 12}, - [2307] = {.lex_state = 812, .external_lex_state = 12}, - [2308] = {.lex_state = 812, .external_lex_state = 12}, + [2296] = {.lex_state = 812, .external_lex_state = 19}, + [2297] = {.lex_state = 24, .external_lex_state = 12}, + [2298] = {.lex_state = 812, .external_lex_state = 19}, + [2299] = {.lex_state = 230, .external_lex_state = 12}, + [2300] = {.lex_state = 812, .external_lex_state = 19}, + [2301] = {.lex_state = 230, .external_lex_state = 12}, + [2302] = {.lex_state = 230, .external_lex_state = 12}, + [2303] = {.lex_state = 230, .external_lex_state = 12}, + [2304] = {.lex_state = 26, .external_lex_state = 34}, + [2305] = {.lex_state = 26, .external_lex_state = 34}, + [2306] = {.lex_state = 812, .external_lex_state = 12}, + [2307] = {.lex_state = 250, .external_lex_state = 12}, + [2308] = {.lex_state = 812, .external_lex_state = 19}, [2309] = {.lex_state = 812, .external_lex_state = 12}, - [2310] = {.lex_state = 144, .external_lex_state = 12}, - [2311] = {.lex_state = 265, .external_lex_state = 12}, - [2312] = {.lex_state = 2986, .external_lex_state = 13}, - [2313] = {.lex_state = 812, .external_lex_state = 12}, + [2310] = {.lex_state = 812, .external_lex_state = 12}, + [2311] = {.lex_state = 812, .external_lex_state = 12}, + [2312] = {.lex_state = 812, .external_lex_state = 12}, + [2313] = {.lex_state = 0, .external_lex_state = 13}, [2314] = {.lex_state = 812, .external_lex_state = 12}, [2315] = {.lex_state = 812, .external_lex_state = 12}, [2316] = {.lex_state = 812, .external_lex_state = 12}, - [2317] = {.lex_state = 812, .external_lex_state = 12}, - [2318] = {.lex_state = 609, .external_lex_state = 12}, - [2319] = {.lex_state = 812, .external_lex_state = 12}, + [2317] = {.lex_state = 102, .external_lex_state = 12}, + [2318] = {.lex_state = 26, .external_lex_state = 34}, + [2319] = {.lex_state = 26, .external_lex_state = 34}, [2320] = {.lex_state = 812, .external_lex_state = 12}, - [2321] = {.lex_state = 102, .external_lex_state = 12}, + [2321] = {.lex_state = 812, .external_lex_state = 12}, [2322] = {.lex_state = 812, .external_lex_state = 12}, - [2323] = {.lex_state = 812, .external_lex_state = 12}, - [2324] = {.lex_state = 806, .external_lex_state = 12}, + [2323] = {.lex_state = 0, .external_lex_state = 13}, + [2324] = {.lex_state = 812, .external_lex_state = 12}, [2325] = {.lex_state = 812, .external_lex_state = 12}, - [2326] = {.lex_state = 812, .external_lex_state = 12}, - [2327] = {.lex_state = 812, .external_lex_state = 12}, + [2326] = {.lex_state = 26, .external_lex_state = 34}, + [2327] = {.lex_state = 102, .external_lex_state = 12}, [2328] = {.lex_state = 812, .external_lex_state = 12}, - [2329] = {.lex_state = 26, .external_lex_state = 34}, + [2329] = {.lex_state = 812, .external_lex_state = 12}, [2330] = {.lex_state = 812, .external_lex_state = 12}, [2331] = {.lex_state = 812, .external_lex_state = 12}, - [2332] = {.lex_state = 26, .external_lex_state = 34}, + [2332] = {.lex_state = 812, .external_lex_state = 12}, [2333] = {.lex_state = 812, .external_lex_state = 12}, [2334] = {.lex_state = 812, .external_lex_state = 12}, [2335] = {.lex_state = 812, .external_lex_state = 12}, [2336] = {.lex_state = 812, .external_lex_state = 12}, - [2337] = {.lex_state = 26, .external_lex_state = 34}, - [2338] = {.lex_state = 0, .external_lex_state = 13}, + [2337] = {.lex_state = 0, .external_lex_state = 13}, + [2338] = {.lex_state = 812, .external_lex_state = 12}, [2339] = {.lex_state = 812, .external_lex_state = 12}, - [2340] = {.lex_state = 26, .external_lex_state = 34}, - [2341] = {.lex_state = 812, .external_lex_state = 12}, - [2342] = {.lex_state = 812, .external_lex_state = 12}, + [2340] = {.lex_state = 812, .external_lex_state = 12}, + [2341] = {.lex_state = 265, .external_lex_state = 12}, + [2342] = {.lex_state = 2988, .external_lex_state = 13}, [2343] = {.lex_state = 812, .external_lex_state = 12}, [2344] = {.lex_state = 812, .external_lex_state = 12}, - [2345] = {.lex_state = 812, .external_lex_state = 12}, + [2345] = {.lex_state = 115, .external_lex_state = 13}, [2346] = {.lex_state = 812, .external_lex_state = 12}, [2347] = {.lex_state = 812, .external_lex_state = 12}, - [2348] = {.lex_state = 812, .external_lex_state = 12}, - [2349] = {.lex_state = 812, .external_lex_state = 12}, - [2350] = {.lex_state = 812, .external_lex_state = 12}, + [2348] = {.lex_state = 209, .external_lex_state = 12}, + [2349] = {.lex_state = 31, .external_lex_state = 12}, + [2350] = {.lex_state = 0, .external_lex_state = 13}, [2351] = {.lex_state = 0, .external_lex_state = 13}, - [2352] = {.lex_state = 812, .external_lex_state = 12}, + [2352] = {.lex_state = 115, .external_lex_state = 13}, [2353] = {.lex_state = 115, .external_lex_state = 13}, - [2354] = {.lex_state = 209, .external_lex_state = 12}, + [2354] = {.lex_state = 812, .external_lex_state = 12}, [2355] = {.lex_state = 812, .external_lex_state = 12}, - [2356] = {.lex_state = 209, .external_lex_state = 12}, + [2356] = {.lex_state = 812, .external_lex_state = 12}, [2357] = {.lex_state = 812, .external_lex_state = 12}, [2358] = {.lex_state = 812, .external_lex_state = 12}, [2359] = {.lex_state = 812, .external_lex_state = 12}, - [2360] = {.lex_state = 265, .external_lex_state = 12}, - [2361] = {.lex_state = 812, .external_lex_state = 12}, + [2360] = {.lex_state = 812, .external_lex_state = 12}, + [2361] = {.lex_state = 0, .external_lex_state = 13}, [2362] = {.lex_state = 812, .external_lex_state = 12}, - [2363] = {.lex_state = 812, .external_lex_state = 12}, - [2364] = {.lex_state = 812, .external_lex_state = 12}, - [2365] = {.lex_state = 265, .external_lex_state = 12}, + [2363] = {.lex_state = 609, .external_lex_state = 12}, + [2364] = {.lex_state = 398, .external_lex_state = 12}, + [2365] = {.lex_state = 812, .external_lex_state = 12}, [2366] = {.lex_state = 812, .external_lex_state = 12}, - [2367] = {.lex_state = 812, .external_lex_state = 12}, - [2368] = {.lex_state = 812, .external_lex_state = 12}, + [2367] = {.lex_state = 24, .external_lex_state = 12}, + [2368] = {.lex_state = 266, .external_lex_state = 12}, [2369] = {.lex_state = 812, .external_lex_state = 12}, [2370] = {.lex_state = 812, .external_lex_state = 12}, [2371] = {.lex_state = 812, .external_lex_state = 12}, [2372] = {.lex_state = 812, .external_lex_state = 12}, - [2373] = {.lex_state = 0, .external_lex_state = 13}, + [2373] = {.lex_state = 812, .external_lex_state = 12}, [2374] = {.lex_state = 812, .external_lex_state = 12}, [2375] = {.lex_state = 812, .external_lex_state = 12}, [2376] = {.lex_state = 812, .external_lex_state = 12}, @@ -48594,13 +48622,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2382] = {.lex_state = 812, .external_lex_state = 12}, [2383] = {.lex_state = 812, .external_lex_state = 12}, [2384] = {.lex_state = 812, .external_lex_state = 12}, - [2385] = {.lex_state = 812, .external_lex_state = 12}, + [2385] = {.lex_state = 144, .external_lex_state = 12}, [2386] = {.lex_state = 812, .external_lex_state = 12}, [2387] = {.lex_state = 812, .external_lex_state = 12}, [2388] = {.lex_state = 812, .external_lex_state = 12}, [2389] = {.lex_state = 812, .external_lex_state = 12}, - [2390] = {.lex_state = 812, .external_lex_state = 12}, - [2391] = {.lex_state = 0, .external_lex_state = 13}, + [2390] = {.lex_state = 812, .external_lex_state = 19}, + [2391] = {.lex_state = 812, .external_lex_state = 12}, [2392] = {.lex_state = 812, .external_lex_state = 12}, [2393] = {.lex_state = 812, .external_lex_state = 12}, [2394] = {.lex_state = 812, .external_lex_state = 12}, @@ -48608,45 +48636,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2396] = {.lex_state = 812, .external_lex_state = 12}, [2397] = {.lex_state = 812, .external_lex_state = 12}, [2398] = {.lex_state = 812, .external_lex_state = 12}, - [2399] = {.lex_state = 812, .external_lex_state = 22}, - [2400] = {.lex_state = 24, .external_lex_state = 12}, + [2399] = {.lex_state = 144, .external_lex_state = 12}, + [2400] = {.lex_state = 812, .external_lex_state = 12}, [2401] = {.lex_state = 812, .external_lex_state = 12}, [2402] = {.lex_state = 812, .external_lex_state = 12}, [2403] = {.lex_state = 812, .external_lex_state = 12}, - [2404] = {.lex_state = 812, .external_lex_state = 12}, - [2405] = {.lex_state = 102, .external_lex_state = 12}, + [2404] = {.lex_state = 265, .external_lex_state = 12}, + [2405] = {.lex_state = 806, .external_lex_state = 12}, [2406] = {.lex_state = 812, .external_lex_state = 12}, [2407] = {.lex_state = 812, .external_lex_state = 12}, - [2408] = {.lex_state = 812, .external_lex_state = 12}, - [2409] = {.lex_state = 812, .external_lex_state = 19}, + [2408] = {.lex_state = 609, .external_lex_state = 12}, + [2409] = {.lex_state = 609, .external_lex_state = 12}, [2410] = {.lex_state = 812, .external_lex_state = 12}, [2411] = {.lex_state = 812, .external_lex_state = 12}, [2412] = {.lex_state = 812, .external_lex_state = 12}, [2413] = {.lex_state = 812, .external_lex_state = 12}, [2414] = {.lex_state = 812, .external_lex_state = 12}, - [2415] = {.lex_state = 144, .external_lex_state = 12}, - [2416] = {.lex_state = 209, .external_lex_state = 12}, - [2417] = {.lex_state = 31, .external_lex_state = 13}, + [2415] = {.lex_state = 812, .external_lex_state = 12}, + [2416] = {.lex_state = 609, .external_lex_state = 12}, + [2417] = {.lex_state = 812, .external_lex_state = 12}, [2418] = {.lex_state = 812, .external_lex_state = 12}, - [2419] = {.lex_state = 144, .external_lex_state = 12}, - [2420] = {.lex_state = 0, .external_lex_state = 13}, - [2421] = {.lex_state = 812, .external_lex_state = 12}, + [2419] = {.lex_state = 812, .external_lex_state = 12}, + [2420] = {.lex_state = 812, .external_lex_state = 12}, + [2421] = {.lex_state = 31, .external_lex_state = 13}, [2422] = {.lex_state = 812, .external_lex_state = 12}, - [2423] = {.lex_state = 3, .external_lex_state = 13}, - [2424] = {.lex_state = 3, .external_lex_state = 13}, + [2423] = {.lex_state = 812, .external_lex_state = 12}, + [2424] = {.lex_state = 144, .external_lex_state = 12}, [2425] = {.lex_state = 812, .external_lex_state = 12}, - [2426] = {.lex_state = 812, .external_lex_state = 22}, + [2426] = {.lex_state = 812, .external_lex_state = 12}, [2427] = {.lex_state = 812, .external_lex_state = 12}, [2428] = {.lex_state = 812, .external_lex_state = 12}, [2429] = {.lex_state = 812, .external_lex_state = 12}, [2430] = {.lex_state = 812, .external_lex_state = 12}, - [2431] = {.lex_state = 812, .external_lex_state = 12}, - [2432] = {.lex_state = 812, .external_lex_state = 12}, - [2433] = {.lex_state = 812, .external_lex_state = 12}, - [2434] = {.lex_state = 812, .external_lex_state = 12}, + [2431] = {.lex_state = 3, .external_lex_state = 13}, + [2432] = {.lex_state = 144, .external_lex_state = 12}, + [2433] = {.lex_state = 3, .external_lex_state = 13}, + [2434] = {.lex_state = 812, .external_lex_state = 22}, [2435] = {.lex_state = 812, .external_lex_state = 12}, - [2436] = {.lex_state = 144, .external_lex_state = 12}, - [2437] = {.lex_state = 26, .external_lex_state = 34}, + [2436] = {.lex_state = 812, .external_lex_state = 12}, + [2437] = {.lex_state = 812, .external_lex_state = 12}, [2438] = {.lex_state = 812, .external_lex_state = 12}, [2439] = {.lex_state = 812, .external_lex_state = 12}, [2440] = {.lex_state = 812, .external_lex_state = 12}, @@ -48655,69 +48683,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2443] = {.lex_state = 812, .external_lex_state = 12}, [2444] = {.lex_state = 812, .external_lex_state = 12}, [2445] = {.lex_state = 812, .external_lex_state = 12}, - [2446] = {.lex_state = 812, .external_lex_state = 12}, - [2447] = {.lex_state = 812, .external_lex_state = 12}, + [2446] = {.lex_state = 144, .external_lex_state = 12}, + [2447] = {.lex_state = 26, .external_lex_state = 34}, [2448] = {.lex_state = 812, .external_lex_state = 12}, [2449] = {.lex_state = 812, .external_lex_state = 12}, - [2450] = {.lex_state = 265, .external_lex_state = 12}, - [2451] = {.lex_state = 144, .external_lex_state = 12}, + [2450] = {.lex_state = 812, .external_lex_state = 12}, + [2451] = {.lex_state = 812, .external_lex_state = 12}, [2452] = {.lex_state = 812, .external_lex_state = 12}, [2453] = {.lex_state = 812, .external_lex_state = 12}, [2454] = {.lex_state = 812, .external_lex_state = 12}, [2455] = {.lex_state = 812, .external_lex_state = 12}, [2456] = {.lex_state = 812, .external_lex_state = 12}, - [2457] = {.lex_state = 209, .external_lex_state = 12}, + [2457] = {.lex_state = 812, .external_lex_state = 12}, [2458] = {.lex_state = 812, .external_lex_state = 12}, [2459] = {.lex_state = 812, .external_lex_state = 12}, - [2460] = {.lex_state = 3, .external_lex_state = 13}, - [2461] = {.lex_state = 812, .external_lex_state = 12}, + [2460] = {.lex_state = 812, .external_lex_state = 12}, + [2461] = {.lex_state = 144, .external_lex_state = 12}, [2462] = {.lex_state = 812, .external_lex_state = 12}, [2463] = {.lex_state = 812, .external_lex_state = 12}, - [2464] = {.lex_state = 812, .external_lex_state = 12}, + [2464] = {.lex_state = 0, .external_lex_state = 13}, [2465] = {.lex_state = 812, .external_lex_state = 12}, - [2466] = {.lex_state = 812, .external_lex_state = 12}, - [2467] = {.lex_state = 806, .external_lex_state = 12}, - [2468] = {.lex_state = 144, .external_lex_state = 12}, - [2469] = {.lex_state = 102, .external_lex_state = 12}, + [2466] = {.lex_state = 265, .external_lex_state = 12}, + [2467] = {.lex_state = 2988, .external_lex_state = 13}, + [2468] = {.lex_state = 812, .external_lex_state = 12}, + [2469] = {.lex_state = 812, .external_lex_state = 12}, [2470] = {.lex_state = 812, .external_lex_state = 12}, - [2471] = {.lex_state = 812, .external_lex_state = 12}, + [2471] = {.lex_state = 26, .external_lex_state = 34}, [2472] = {.lex_state = 812, .external_lex_state = 12}, - [2473] = {.lex_state = 812, .external_lex_state = 12}, + [2473] = {.lex_state = 609, .external_lex_state = 12}, [2474] = {.lex_state = 812, .external_lex_state = 12}, - [2475] = {.lex_state = 812, .external_lex_state = 12}, + [2475] = {.lex_state = 26, .external_lex_state = 34}, [2476] = {.lex_state = 812, .external_lex_state = 12}, - [2477] = {.lex_state = 812, .external_lex_state = 12}, + [2477] = {.lex_state = 102, .external_lex_state = 12}, [2478] = {.lex_state = 812, .external_lex_state = 12}, - [2479] = {.lex_state = 812, .external_lex_state = 12}, - [2480] = {.lex_state = 812, .external_lex_state = 12}, + [2479] = {.lex_state = 102, .external_lex_state = 12}, + [2480] = {.lex_state = 806, .external_lex_state = 12}, [2481] = {.lex_state = 812, .external_lex_state = 12}, [2482] = {.lex_state = 812, .external_lex_state = 12}, - [2483] = {.lex_state = 609, .external_lex_state = 12}, + [2483] = {.lex_state = 812, .external_lex_state = 12}, [2484] = {.lex_state = 812, .external_lex_state = 12}, [2485] = {.lex_state = 812, .external_lex_state = 12}, [2486] = {.lex_state = 812, .external_lex_state = 12}, [2487] = {.lex_state = 812, .external_lex_state = 12}, - [2488] = {.lex_state = 812, .external_lex_state = 22}, + [2488] = {.lex_state = 812, .external_lex_state = 12}, [2489] = {.lex_state = 812, .external_lex_state = 12}, [2490] = {.lex_state = 812, .external_lex_state = 12}, [2491] = {.lex_state = 812, .external_lex_state = 12}, [2492] = {.lex_state = 812, .external_lex_state = 12}, [2493] = {.lex_state = 812, .external_lex_state = 12}, - [2494] = {.lex_state = 24, .external_lex_state = 12}, - [2495] = {.lex_state = 230, .external_lex_state = 12}, - [2496] = {.lex_state = 230, .external_lex_state = 12}, - [2497] = {.lex_state = 230, .external_lex_state = 12}, - [2498] = {.lex_state = 230, .external_lex_state = 12}, + [2494] = {.lex_state = 812, .external_lex_state = 12}, + [2495] = {.lex_state = 812, .external_lex_state = 12}, + [2496] = {.lex_state = 209, .external_lex_state = 12}, + [2497] = {.lex_state = 812, .external_lex_state = 12}, + [2498] = {.lex_state = 209, .external_lex_state = 12}, [2499] = {.lex_state = 812, .external_lex_state = 12}, [2500] = {.lex_state = 812, .external_lex_state = 12}, [2501] = {.lex_state = 812, .external_lex_state = 12}, [2502] = {.lex_state = 812, .external_lex_state = 12}, [2503] = {.lex_state = 812, .external_lex_state = 12}, - [2504] = {.lex_state = 812, .external_lex_state = 12}, - [2505] = {.lex_state = 812, .external_lex_state = 12}, - [2506] = {.lex_state = 250, .external_lex_state = 12}, - [2507] = {.lex_state = 812, .external_lex_state = 12}, - [2508] = {.lex_state = 812, .external_lex_state = 12}, + [2504] = {.lex_state = 24, .external_lex_state = 12}, + [2505] = {.lex_state = 230, .external_lex_state = 12}, + [2506] = {.lex_state = 230, .external_lex_state = 12}, + [2507] = {.lex_state = 230, .external_lex_state = 12}, + [2508] = {.lex_state = 230, .external_lex_state = 12}, [2509] = {.lex_state = 812, .external_lex_state = 12}, [2510] = {.lex_state = 812, .external_lex_state = 12}, [2511] = {.lex_state = 812, .external_lex_state = 12}, @@ -48725,131 +48753,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2513] = {.lex_state = 812, .external_lex_state = 12}, [2514] = {.lex_state = 812, .external_lex_state = 12}, [2515] = {.lex_state = 812, .external_lex_state = 12}, - [2516] = {.lex_state = 812, .external_lex_state = 12}, - [2517] = {.lex_state = 102, .external_lex_state = 12}, + [2516] = {.lex_state = 250, .external_lex_state = 12}, + [2517] = {.lex_state = 0, .external_lex_state = 13}, [2518] = {.lex_state = 812, .external_lex_state = 12}, [2519] = {.lex_state = 812, .external_lex_state = 12}, [2520] = {.lex_state = 812, .external_lex_state = 12}, [2521] = {.lex_state = 812, .external_lex_state = 12}, [2522] = {.lex_state = 812, .external_lex_state = 12}, [2523] = {.lex_state = 812, .external_lex_state = 12}, - [2524] = {.lex_state = 266, .external_lex_state = 12}, + [2524] = {.lex_state = 812, .external_lex_state = 12}, [2525] = {.lex_state = 812, .external_lex_state = 12}, [2526] = {.lex_state = 812, .external_lex_state = 12}, - [2527] = {.lex_state = 102, .external_lex_state = 12}, + [2527] = {.lex_state = 812, .external_lex_state = 12}, [2528] = {.lex_state = 812, .external_lex_state = 12}, - [2529] = {.lex_state = 609, .external_lex_state = 12}, - [2530] = {.lex_state = 812, .external_lex_state = 19}, + [2529] = {.lex_state = 812, .external_lex_state = 12}, + [2530] = {.lex_state = 812, .external_lex_state = 12}, [2531] = {.lex_state = 812, .external_lex_state = 12}, - [2532] = {.lex_state = 812, .external_lex_state = 12}, - [2533] = {.lex_state = 397, .external_lex_state = 12}, + [2532] = {.lex_state = 144, .external_lex_state = 12}, + [2533] = {.lex_state = 812, .external_lex_state = 12}, [2534] = {.lex_state = 812, .external_lex_state = 12}, [2535] = {.lex_state = 812, .external_lex_state = 12}, - [2536] = {.lex_state = 609, .external_lex_state = 12}, - [2537] = {.lex_state = 609, .external_lex_state = 12}, - [2538] = {.lex_state = 26, .external_lex_state = 34}, - [2539] = {.lex_state = 26, .external_lex_state = 34}, + [2536] = {.lex_state = 812, .external_lex_state = 12}, + [2537] = {.lex_state = 102, .external_lex_state = 12}, + [2538] = {.lex_state = 812, .external_lex_state = 12}, + [2539] = {.lex_state = 812, .external_lex_state = 12}, [2540] = {.lex_state = 812, .external_lex_state = 12}, [2541] = {.lex_state = 812, .external_lex_state = 12}, - [2542] = {.lex_state = 250, .external_lex_state = 12}, - [2543] = {.lex_state = 0, .external_lex_state = 13}, + [2542] = {.lex_state = 144, .external_lex_state = 12}, + [2543] = {.lex_state = 812, .external_lex_state = 12}, [2544] = {.lex_state = 812, .external_lex_state = 12}, - [2545] = {.lex_state = 26, .external_lex_state = 34}, + [2545] = {.lex_state = 812, .external_lex_state = 12}, [2546] = {.lex_state = 609, .external_lex_state = 12}, - [2547] = {.lex_state = 812, .external_lex_state = 12}, - [2548] = {.lex_state = 812, .external_lex_state = 12}, - [2549] = {.lex_state = 812, .external_lex_state = 12}, + [2547] = {.lex_state = 609, .external_lex_state = 12}, + [2548] = {.lex_state = 3, .external_lex_state = 13}, + [2549] = {.lex_state = 265, .external_lex_state = 12}, [2550] = {.lex_state = 812, .external_lex_state = 12}, - [2551] = {.lex_state = 0, .external_lex_state = 13}, + [2551] = {.lex_state = 812, .external_lex_state = 12}, [2552] = {.lex_state = 812, .external_lex_state = 12}, - [2553] = {.lex_state = 31, .external_lex_state = 12}, - [2554] = {.lex_state = 26, .external_lex_state = 34}, - [2555] = {.lex_state = 26, .external_lex_state = 34}, - [2556] = {.lex_state = 24, .external_lex_state = 12}, - [2557] = {.lex_state = 26, .external_lex_state = 34}, + [2553] = {.lex_state = 812, .external_lex_state = 12}, + [2554] = {.lex_state = 812, .external_lex_state = 12}, + [2555] = {.lex_state = 812, .external_lex_state = 12}, + [2556] = {.lex_state = 609, .external_lex_state = 12}, + [2557] = {.lex_state = 812, .external_lex_state = 12}, [2558] = {.lex_state = 812, .external_lex_state = 12}, - [2559] = {.lex_state = 812, .external_lex_state = 12}, - [2560] = {.lex_state = 26, .external_lex_state = 34}, + [2559] = {.lex_state = 609, .external_lex_state = 12}, + [2560] = {.lex_state = 812, .external_lex_state = 12}, [2561] = {.lex_state = 812, .external_lex_state = 12}, - [2562] = {.lex_state = 812, .external_lex_state = 12}, - [2563] = {.lex_state = 609, .external_lex_state = 12}, + [2562] = {.lex_state = 209, .external_lex_state = 33}, + [2563] = {.lex_state = 812, .external_lex_state = 12}, [2564] = {.lex_state = 812, .external_lex_state = 12}, - [2565] = {.lex_state = 812, .external_lex_state = 12}, - [2566] = {.lex_state = 230, .external_lex_state = 12}, - [2567] = {.lex_state = 230, .external_lex_state = 12}, + [2565] = {.lex_state = 26, .external_lex_state = 34}, + [2566] = {.lex_state = 24, .external_lex_state = 12}, + [2567] = {.lex_state = 812, .external_lex_state = 12}, [2568] = {.lex_state = 812, .external_lex_state = 12}, [2569] = {.lex_state = 812, .external_lex_state = 12}, - [2570] = {.lex_state = 812, .external_lex_state = 19}, - [2571] = {.lex_state = 230, .external_lex_state = 12}, + [2570] = {.lex_state = 0, .external_lex_state = 13}, + [2571] = {.lex_state = 812, .external_lex_state = 12}, [2572] = {.lex_state = 812, .external_lex_state = 12}, - [2573] = {.lex_state = 24, .external_lex_state = 12}, - [2574] = {.lex_state = 812, .external_lex_state = 19}, + [2573] = {.lex_state = 609, .external_lex_state = 12}, + [2574] = {.lex_state = 812, .external_lex_state = 12}, [2575] = {.lex_state = 812, .external_lex_state = 12}, - [2576] = {.lex_state = 230, .external_lex_state = 12}, - [2577] = {.lex_state = 2986, .external_lex_state = 13}, + [2576] = {.lex_state = 812, .external_lex_state = 12}, + [2577] = {.lex_state = 812, .external_lex_state = 13}, [2578] = {.lex_state = 812, .external_lex_state = 12}, - [2579] = {.lex_state = 26, .external_lex_state = 34}, - [2580] = {.lex_state = 26, .external_lex_state = 34}, - [2581] = {.lex_state = 812, .external_lex_state = 19}, - [2582] = {.lex_state = 812, .external_lex_state = 12}, - [2583] = {.lex_state = 0, .external_lex_state = 13}, - [2584] = {.lex_state = 812, .external_lex_state = 12}, - [2585] = {.lex_state = 24, .external_lex_state = 12}, + [2579] = {.lex_state = 115, .external_lex_state = 13}, + [2580] = {.lex_state = 812, .external_lex_state = 19}, + [2581] = {.lex_state = 812, .external_lex_state = 12}, + [2582] = {.lex_state = 26, .external_lex_state = 34}, + [2583] = {.lex_state = 24, .external_lex_state = 12}, + [2584] = {.lex_state = 26, .external_lex_state = 34}, + [2585] = {.lex_state = 26, .external_lex_state = 34}, [2586] = {.lex_state = 812, .external_lex_state = 12}, [2587] = {.lex_state = 812, .external_lex_state = 12}, [2588] = {.lex_state = 812, .external_lex_state = 12}, - [2589] = {.lex_state = 812, .external_lex_state = 19}, + [2589] = {.lex_state = 26, .external_lex_state = 34}, [2590] = {.lex_state = 812, .external_lex_state = 12}, - [2591] = {.lex_state = 265, .external_lex_state = 12}, + [2591] = {.lex_state = 812, .external_lex_state = 12}, [2592] = {.lex_state = 812, .external_lex_state = 12}, - [2593] = {.lex_state = 24, .external_lex_state = 12}, - [2594] = {.lex_state = 812, .external_lex_state = 12}, - [2595] = {.lex_state = 209, .external_lex_state = 33}, + [2593] = {.lex_state = 812, .external_lex_state = 12}, + [2594] = {.lex_state = 26, .external_lex_state = 34}, + [2595] = {.lex_state = 26, .external_lex_state = 34}, [2596] = {.lex_state = 812, .external_lex_state = 12}, [2597] = {.lex_state = 812, .external_lex_state = 12}, [2598] = {.lex_state = 812, .external_lex_state = 12}, - [2599] = {.lex_state = 812, .external_lex_state = 12}, - [2600] = {.lex_state = 144, .external_lex_state = 12}, + [2599] = {.lex_state = 812, .external_lex_state = 22}, + [2600] = {.lex_state = 812, .external_lex_state = 12}, [2601] = {.lex_state = 812, .external_lex_state = 12}, - [2602] = {.lex_state = 115, .external_lex_state = 13}, - [2603] = {.lex_state = 115, .external_lex_state = 13}, + [2602] = {.lex_state = 812, .external_lex_state = 12}, + [2603] = {.lex_state = 26, .external_lex_state = 34}, [2604] = {.lex_state = 812, .external_lex_state = 12}, - [2605] = {.lex_state = 26, .external_lex_state = 34}, + [2605] = {.lex_state = 812, .external_lex_state = 12}, [2606] = {.lex_state = 812, .external_lex_state = 12}, [2607] = {.lex_state = 812, .external_lex_state = 12}, - [2608] = {.lex_state = 812, .external_lex_state = 12}, + [2608] = {.lex_state = 265, .external_lex_state = 12}, [2609] = {.lex_state = 812, .external_lex_state = 12}, - [2610] = {.lex_state = 26, .external_lex_state = 34}, + [2610] = {.lex_state = 812, .external_lex_state = 12}, [2611] = {.lex_state = 812, .external_lex_state = 12}, - [2612] = {.lex_state = 115, .external_lex_state = 13}, + [2612] = {.lex_state = 144, .external_lex_state = 12}, [2613] = {.lex_state = 812, .external_lex_state = 12}, - [2614] = {.lex_state = 812, .external_lex_state = 12}, + [2614] = {.lex_state = 24, .external_lex_state = 12}, [2615] = {.lex_state = 812, .external_lex_state = 12}, [2616] = {.lex_state = 812, .external_lex_state = 12}, - [2617] = {.lex_state = 812, .external_lex_state = 13}, + [2617] = {.lex_state = 0, .external_lex_state = 13}, [2618] = {.lex_state = 812, .external_lex_state = 12}, [2619] = {.lex_state = 812, .external_lex_state = 12}, [2620] = {.lex_state = 812, .external_lex_state = 12}, [2621] = {.lex_state = 812, .external_lex_state = 12}, - [2622] = {.lex_state = 812, .external_lex_state = 12}, + [2622] = {.lex_state = 144, .external_lex_state = 12}, [2623] = {.lex_state = 812, .external_lex_state = 12}, - [2624] = {.lex_state = 0, .external_lex_state = 13}, + [2624] = {.lex_state = 812, .external_lex_state = 12}, [2625] = {.lex_state = 812, .external_lex_state = 12}, [2626] = {.lex_state = 812, .external_lex_state = 12}, [2627] = {.lex_state = 812, .external_lex_state = 12}, - [2628] = {.lex_state = 144, .external_lex_state = 12}, + [2628] = {.lex_state = 812, .external_lex_state = 12}, [2629] = {.lex_state = 812, .external_lex_state = 12}, - [2630] = {.lex_state = 0, .external_lex_state = 13}, - [2631] = {.lex_state = 0, .external_lex_state = 13}, - [2632] = {.lex_state = 0, .external_lex_state = 13}, - [2633] = {.lex_state = 803, .external_lex_state = 12}, - [2634] = {.lex_state = 0, .external_lex_state = 13}, - [2635] = {.lex_state = 26, .external_lex_state = 34}, - [2636] = {.lex_state = 0, .external_lex_state = 13}, - [2637] = {.lex_state = 0, .external_lex_state = 13}, - [2638] = {.lex_state = 0, .external_lex_state = 35}, - [2639] = {.lex_state = 0, .external_lex_state = 13}, - [2640] = {.lex_state = 0, .external_lex_state = 13}, + [2630] = {.lex_state = 812, .external_lex_state = 12}, + [2631] = {.lex_state = 812, .external_lex_state = 12}, + [2632] = {.lex_state = 812, .external_lex_state = 12}, + [2633] = {.lex_state = 812, .external_lex_state = 12}, + [2634] = {.lex_state = 812, .external_lex_state = 12}, + [2635] = {.lex_state = 812, .external_lex_state = 12}, + [2636] = {.lex_state = 812, .external_lex_state = 12}, + [2637] = {.lex_state = 26, .external_lex_state = 34}, + [2638] = {.lex_state = 812, .external_lex_state = 12}, + [2639] = {.lex_state = 812, .external_lex_state = 12}, + [2640] = {.lex_state = 77, .external_lex_state = 12}, [2641] = {.lex_state = 0, .external_lex_state = 13}, [2642] = {.lex_state = 0, .external_lex_state = 13}, [2643] = {.lex_state = 0, .external_lex_state = 13}, @@ -48859,27 +48887,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2647] = {.lex_state = 0, .external_lex_state = 13}, [2648] = {.lex_state = 0, .external_lex_state = 13}, [2649] = {.lex_state = 0, .external_lex_state = 13}, - [2650] = {.lex_state = 0, .external_lex_state = 13}, - [2651] = {.lex_state = 0, .external_lex_state = 13}, + [2650] = {.lex_state = 115, .external_lex_state = 12}, + [2651] = {.lex_state = 77, .external_lex_state = 12}, [2652] = {.lex_state = 0, .external_lex_state = 13}, [2653] = {.lex_state = 0, .external_lex_state = 13}, [2654] = {.lex_state = 0, .external_lex_state = 13}, [2655] = {.lex_state = 0, .external_lex_state = 13}, - [2656] = {.lex_state = 115, .external_lex_state = 12}, - [2657] = {.lex_state = 77, .external_lex_state = 12}, + [2656] = {.lex_state = 0, .external_lex_state = 19}, + [2657] = {.lex_state = 0, .external_lex_state = 19}, [2658] = {.lex_state = 0, .external_lex_state = 13}, - [2659] = {.lex_state = 115, .external_lex_state = 12}, + [2659] = {.lex_state = 0, .external_lex_state = 13}, [2660] = {.lex_state = 0, .external_lex_state = 13}, [2661] = {.lex_state = 0, .external_lex_state = 13}, [2662] = {.lex_state = 0, .external_lex_state = 13}, [2663] = {.lex_state = 0, .external_lex_state = 13}, - [2664] = {.lex_state = 0, .external_lex_state = 19}, - [2665] = {.lex_state = 0, .external_lex_state = 19}, - [2666] = {.lex_state = 0, .external_lex_state = 13}, + [2664] = {.lex_state = 0, .external_lex_state = 13}, + [2665] = {.lex_state = 0, .external_lex_state = 13}, + [2666] = {.lex_state = 115, .external_lex_state = 12}, [2667] = {.lex_state = 0, .external_lex_state = 13}, [2668] = {.lex_state = 0, .external_lex_state = 13}, - [2669] = {.lex_state = 0, .external_lex_state = 13}, - [2670] = {.lex_state = 812, .external_lex_state = 12}, + [2669] = {.lex_state = 115, .external_lex_state = 12}, + [2670] = {.lex_state = 0, .external_lex_state = 13}, [2671] = {.lex_state = 0, .external_lex_state = 13}, [2672] = {.lex_state = 0, .external_lex_state = 13}, [2673] = {.lex_state = 0, .external_lex_state = 13}, @@ -48890,9 +48918,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2678] = {.lex_state = 0, .external_lex_state = 13}, [2679] = {.lex_state = 0, .external_lex_state = 13}, [2680] = {.lex_state = 0, .external_lex_state = 13}, - [2681] = {.lex_state = 0, .external_lex_state = 13}, + [2681] = {.lex_state = 812, .external_lex_state = 12}, [2682] = {.lex_state = 0, .external_lex_state = 13}, - [2683] = {.lex_state = 115, .external_lex_state = 12}, + [2683] = {.lex_state = 0, .external_lex_state = 13}, [2684] = {.lex_state = 0, .external_lex_state = 13}, [2685] = {.lex_state = 0, .external_lex_state = 13}, [2686] = {.lex_state = 0, .external_lex_state = 13}, @@ -48901,128 +48929,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2689] = {.lex_state = 0, .external_lex_state = 13}, [2690] = {.lex_state = 0, .external_lex_state = 13}, [2691] = {.lex_state = 0, .external_lex_state = 13}, - [2692] = {.lex_state = 0, .external_lex_state = 35}, - [2693] = {.lex_state = 144, .external_lex_state = 12}, + [2692] = {.lex_state = 144, .external_lex_state = 12}, + [2693] = {.lex_state = 0, .external_lex_state = 13}, [2694] = {.lex_state = 0, .external_lex_state = 13}, - [2695] = {.lex_state = 115, .external_lex_state = 12}, - [2696] = {.lex_state = 0, .external_lex_state = 13}, + [2695] = {.lex_state = 0, .external_lex_state = 13}, + [2696] = {.lex_state = 803, .external_lex_state = 12}, [2697] = {.lex_state = 0, .external_lex_state = 13}, - [2698] = {.lex_state = 0, .external_lex_state = 35}, + [2698] = {.lex_state = 0, .external_lex_state = 13}, [2699] = {.lex_state = 0, .external_lex_state = 13}, [2700] = {.lex_state = 0, .external_lex_state = 13}, [2701] = {.lex_state = 0, .external_lex_state = 13}, - [2702] = {.lex_state = 115, .external_lex_state = 12}, + [2702] = {.lex_state = 0, .external_lex_state = 13}, [2703] = {.lex_state = 0, .external_lex_state = 13}, [2704] = {.lex_state = 0, .external_lex_state = 13}, - [2705] = {.lex_state = 0, .external_lex_state = 13}, + [2705] = {.lex_state = 115, .external_lex_state = 12}, [2706] = {.lex_state = 0, .external_lex_state = 13}, - [2707] = {.lex_state = 0, .external_lex_state = 13}, + [2707] = {.lex_state = 0, .external_lex_state = 35}, [2708] = {.lex_state = 0, .external_lex_state = 13}, - [2709] = {.lex_state = 0, .external_lex_state = 13}, + [2709] = {.lex_state = 657, .external_lex_state = 12}, [2710] = {.lex_state = 0, .external_lex_state = 13}, - [2711] = {.lex_state = 0, .external_lex_state = 13}, + [2711] = {.lex_state = 0, .external_lex_state = 35}, [2712] = {.lex_state = 0, .external_lex_state = 13}, - [2713] = {.lex_state = 77, .external_lex_state = 12}, + [2713] = {.lex_state = 0, .external_lex_state = 13}, [2714] = {.lex_state = 0, .external_lex_state = 13}, - [2715] = {.lex_state = 0, .external_lex_state = 19}, + [2715] = {.lex_state = 0, .external_lex_state = 13}, [2716] = {.lex_state = 0, .external_lex_state = 13}, [2717] = {.lex_state = 0, .external_lex_state = 13}, [2718] = {.lex_state = 0, .external_lex_state = 13}, [2719] = {.lex_state = 0, .external_lex_state = 13}, - [2720] = {.lex_state = 473, .external_lex_state = 12}, - [2721] = {.lex_state = 0, .external_lex_state = 36}, + [2720] = {.lex_state = 0, .external_lex_state = 13}, + [2721] = {.lex_state = 0, .external_lex_state = 13}, [2722] = {.lex_state = 0, .external_lex_state = 13}, - [2723] = {.lex_state = 0, .external_lex_state = 36}, - [2724] = {.lex_state = 812, .external_lex_state = 12}, - [2725] = {.lex_state = 0, .external_lex_state = 13}, + [2723] = {.lex_state = 77, .external_lex_state = 12}, + [2724] = {.lex_state = 0, .external_lex_state = 13}, + [2725] = {.lex_state = 0, .external_lex_state = 19}, [2726] = {.lex_state = 0, .external_lex_state = 13}, [2727] = {.lex_state = 0, .external_lex_state = 13}, [2728] = {.lex_state = 0, .external_lex_state = 13}, - [2729] = {.lex_state = 0, .external_lex_state = 13}, + [2729] = {.lex_state = 0, .external_lex_state = 19}, [2730] = {.lex_state = 0, .external_lex_state = 13}, [2731] = {.lex_state = 0, .external_lex_state = 13}, [2732] = {.lex_state = 0, .external_lex_state = 13}, [2733] = {.lex_state = 0, .external_lex_state = 13}, - [2734] = {.lex_state = 789, .external_lex_state = 12}, + [2734] = {.lex_state = 473, .external_lex_state = 12}, [2735] = {.lex_state = 0, .external_lex_state = 13}, [2736] = {.lex_state = 0, .external_lex_state = 13}, - [2737] = {.lex_state = 789, .external_lex_state = 12}, + [2737] = {.lex_state = 0, .external_lex_state = 13}, [2738] = {.lex_state = 0, .external_lex_state = 13}, [2739] = {.lex_state = 0, .external_lex_state = 13}, [2740] = {.lex_state = 0, .external_lex_state = 13}, - [2741] = {.lex_state = 0, .external_lex_state = 13}, + [2741] = {.lex_state = 0, .external_lex_state = 36}, [2742] = {.lex_state = 0, .external_lex_state = 13}, - [2743] = {.lex_state = 0, .external_lex_state = 13}, + [2743] = {.lex_state = 0, .external_lex_state = 36}, [2744] = {.lex_state = 0, .external_lex_state = 13}, [2745] = {.lex_state = 0, .external_lex_state = 13}, [2746] = {.lex_state = 0, .external_lex_state = 13}, [2747] = {.lex_state = 0, .external_lex_state = 13}, [2748] = {.lex_state = 0, .external_lex_state = 13}, - [2749] = {.lex_state = 0, .external_lex_state = 13}, + [2749] = {.lex_state = 26, .external_lex_state = 34}, [2750] = {.lex_state = 0, .external_lex_state = 13}, [2751] = {.lex_state = 0, .external_lex_state = 13}, - [2752] = {.lex_state = 657, .external_lex_state = 12}, + [2752] = {.lex_state = 0, .external_lex_state = 13}, [2753] = {.lex_state = 0, .external_lex_state = 13}, [2754] = {.lex_state = 0, .external_lex_state = 13}, - [2755] = {.lex_state = 0, .external_lex_state = 13}, + [2755] = {.lex_state = 789, .external_lex_state = 12}, [2756] = {.lex_state = 0, .external_lex_state = 13}, [2757] = {.lex_state = 0, .external_lex_state = 13}, [2758] = {.lex_state = 0, .external_lex_state = 13}, - [2759] = {.lex_state = 0, .external_lex_state = 13}, + [2759] = {.lex_state = 0, .external_lex_state = 35}, [2760] = {.lex_state = 0, .external_lex_state = 13}, [2761] = {.lex_state = 0, .external_lex_state = 13}, [2762] = {.lex_state = 0, .external_lex_state = 13}, - [2763] = {.lex_state = 473, .external_lex_state = 12}, + [2763] = {.lex_state = 0, .external_lex_state = 13}, [2764] = {.lex_state = 0, .external_lex_state = 13}, [2765] = {.lex_state = 0, .external_lex_state = 13}, - [2766] = {.lex_state = 0, .external_lex_state = 13}, + [2766] = {.lex_state = 812, .external_lex_state = 12}, [2767] = {.lex_state = 0, .external_lex_state = 13}, [2768] = {.lex_state = 0, .external_lex_state = 13}, [2769] = {.lex_state = 0, .external_lex_state = 13}, [2770] = {.lex_state = 0, .external_lex_state = 13}, - [2771] = {.lex_state = 0, .external_lex_state = 19}, - [2772] = {.lex_state = 0, .external_lex_state = 13}, + [2771] = {.lex_state = 0, .external_lex_state = 13}, + [2772] = {.lex_state = 115, .external_lex_state = 12}, [2773] = {.lex_state = 0, .external_lex_state = 13}, - [2774] = {.lex_state = 812, .external_lex_state = 12}, - [2775] = {.lex_state = 115, .external_lex_state = 12}, + [2774] = {.lex_state = 0, .external_lex_state = 13}, + [2775] = {.lex_state = 0, .external_lex_state = 13}, [2776] = {.lex_state = 0, .external_lex_state = 13}, [2777] = {.lex_state = 0, .external_lex_state = 13}, - [2778] = {.lex_state = 0, .external_lex_state = 13}, + [2778] = {.lex_state = 473, .external_lex_state = 12}, [2779] = {.lex_state = 0, .external_lex_state = 13}, [2780] = {.lex_state = 0, .external_lex_state = 13}, [2781] = {.lex_state = 0, .external_lex_state = 13}, [2782] = {.lex_state = 0, .external_lex_state = 13}, [2783] = {.lex_state = 0, .external_lex_state = 13}, - [2784] = {.lex_state = 0, .external_lex_state = 13}, + [2784] = {.lex_state = 812, .external_lex_state = 12}, [2785] = {.lex_state = 0, .external_lex_state = 13}, [2786] = {.lex_state = 0, .external_lex_state = 13}, - [2787] = {.lex_state = 0, .external_lex_state = 13}, + [2787] = {.lex_state = 789, .external_lex_state = 12}, [2788] = {.lex_state = 0, .external_lex_state = 13}, [2789] = {.lex_state = 0, .external_lex_state = 13}, [2790] = {.lex_state = 0, .external_lex_state = 13}, [2791] = {.lex_state = 0, .external_lex_state = 13}, - [2792] = {.lex_state = 0, .external_lex_state = 13}, - [2793] = {.lex_state = 803, .external_lex_state = 12}, + [2792] = {.lex_state = 115, .external_lex_state = 12}, + [2793] = {.lex_state = 0, .external_lex_state = 13}, [2794] = {.lex_state = 0, .external_lex_state = 13}, [2795] = {.lex_state = 0, .external_lex_state = 13}, [2796] = {.lex_state = 0, .external_lex_state = 13}, [2797] = {.lex_state = 0, .external_lex_state = 13}, [2798] = {.lex_state = 0, .external_lex_state = 13}, [2799] = {.lex_state = 0, .external_lex_state = 13}, - [2800] = {.lex_state = 77, .external_lex_state = 12}, + [2800] = {.lex_state = 0, .external_lex_state = 13}, [2801] = {.lex_state = 0, .external_lex_state = 13}, - [2802] = {.lex_state = 812, .external_lex_state = 12}, + [2802] = {.lex_state = 0, .external_lex_state = 13}, [2803] = {.lex_state = 0, .external_lex_state = 13}, [2804] = {.lex_state = 0, .external_lex_state = 13}, [2805] = {.lex_state = 0, .external_lex_state = 13}, [2806] = {.lex_state = 0, .external_lex_state = 13}, [2807] = {.lex_state = 0, .external_lex_state = 13}, [2808] = {.lex_state = 0, .external_lex_state = 13}, - [2809] = {.lex_state = 0, .external_lex_state = 35}, - [2810] = {.lex_state = 0, .external_lex_state = 13}, + [2809] = {.lex_state = 0, .external_lex_state = 13}, + [2810] = {.lex_state = 77, .external_lex_state = 12}, [2811] = {.lex_state = 0, .external_lex_state = 13}, [2812] = {.lex_state = 0, .external_lex_state = 13}, - [2813] = {.lex_state = 812, .external_lex_state = 22}, + [2813] = {.lex_state = 0, .external_lex_state = 13}, [2814] = {.lex_state = 0, .external_lex_state = 13}, [2815] = {.lex_state = 0, .external_lex_state = 13}, [2816] = {.lex_state = 0, .external_lex_state = 13}, @@ -49037,14 +49065,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2825] = {.lex_state = 0, .external_lex_state = 13}, [2826] = {.lex_state = 0, .external_lex_state = 13}, [2827] = {.lex_state = 0, .external_lex_state = 13}, - [2828] = {.lex_state = 812, .external_lex_state = 12}, + [2828] = {.lex_state = 0, .external_lex_state = 13}, [2829] = {.lex_state = 0, .external_lex_state = 13}, [2830] = {.lex_state = 0, .external_lex_state = 13}, [2831] = {.lex_state = 0, .external_lex_state = 13}, - [2832] = {.lex_state = 0, .external_lex_state = 13}, + [2832] = {.lex_state = 0, .external_lex_state = 35}, [2833] = {.lex_state = 0, .external_lex_state = 13}, [2834] = {.lex_state = 0, .external_lex_state = 13}, - [2835] = {.lex_state = 657, .external_lex_state = 12}, + [2835] = {.lex_state = 0, .external_lex_state = 13}, [2836] = {.lex_state = 0, .external_lex_state = 13}, [2837] = {.lex_state = 0, .external_lex_state = 13}, [2838] = {.lex_state = 0, .external_lex_state = 13}, @@ -49053,12 +49081,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2841] = {.lex_state = 0, .external_lex_state = 13}, [2842] = {.lex_state = 0, .external_lex_state = 13}, [2843] = {.lex_state = 0, .external_lex_state = 13}, - [2844] = {.lex_state = 0, .external_lex_state = 13}, + [2844] = {.lex_state = 812, .external_lex_state = 12}, [2845] = {.lex_state = 0, .external_lex_state = 13}, - [2846] = {.lex_state = 0, .external_lex_state = 13}, - [2847] = {.lex_state = 77, .external_lex_state = 12}, + [2846] = {.lex_state = 812, .external_lex_state = 22}, + [2847] = {.lex_state = 0, .external_lex_state = 13}, [2848] = {.lex_state = 0, .external_lex_state = 13}, - [2849] = {.lex_state = 0, .external_lex_state = 13}, + [2849] = {.lex_state = 657, .external_lex_state = 12}, [2850] = {.lex_state = 0, .external_lex_state = 13}, [2851] = {.lex_state = 0, .external_lex_state = 13}, [2852] = {.lex_state = 0, .external_lex_state = 13}, @@ -49068,366 +49096,376 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2856] = {.lex_state = 0, .external_lex_state = 13}, [2857] = {.lex_state = 0, .external_lex_state = 13}, [2858] = {.lex_state = 0, .external_lex_state = 13}, - [2859] = {.lex_state = 812, .external_lex_state = 12}, - [2860] = {.lex_state = 115, .external_lex_state = 12}, - [2861] = {.lex_state = 0, .external_lex_state = 37}, - [2862] = {.lex_state = 812, .external_lex_state = 12}, - [2863] = {.lex_state = 0, .external_lex_state = 19}, - [2864] = {.lex_state = 812, .external_lex_state = 12}, - [2865] = {.lex_state = 812, .external_lex_state = 12}, - [2866] = {.lex_state = 812, .external_lex_state = 12}, - [2867] = {.lex_state = 812, .external_lex_state = 12}, - [2868] = {.lex_state = 812, .external_lex_state = 12}, - [2869] = {.lex_state = 658, .external_lex_state = 12}, - [2870] = {.lex_state = 812, .external_lex_state = 12}, - [2871] = {.lex_state = 812, .external_lex_state = 12}, - [2872] = {.lex_state = 812, .external_lex_state = 12}, - [2873] = {.lex_state = 812, .external_lex_state = 12}, - [2874] = {.lex_state = 812, .external_lex_state = 12}, + [2859] = {.lex_state = 0, .external_lex_state = 13}, + [2860] = {.lex_state = 812, .external_lex_state = 12}, + [2861] = {.lex_state = 0, .external_lex_state = 13}, + [2862] = {.lex_state = 803, .external_lex_state = 12}, + [2863] = {.lex_state = 0, .external_lex_state = 13}, + [2864] = {.lex_state = 0, .external_lex_state = 13}, + [2865] = {.lex_state = 0, .external_lex_state = 13}, + [2866] = {.lex_state = 0, .external_lex_state = 13}, + [2867] = {.lex_state = 0, .external_lex_state = 13}, + [2868] = {.lex_state = 0, .external_lex_state = 13}, + [2869] = {.lex_state = 812, .external_lex_state = 12}, + [2870] = {.lex_state = 115, .external_lex_state = 12}, + [2871] = {.lex_state = 0, .external_lex_state = 37}, + [2872] = {.lex_state = 0, .external_lex_state = 37}, + [2873] = {.lex_state = 658, .external_lex_state = 12}, + [2874] = {.lex_state = 659, .external_lex_state = 12}, [2875] = {.lex_state = 812, .external_lex_state = 12}, - [2876] = {.lex_state = 115, .external_lex_state = 12}, - [2877] = {.lex_state = 0, .external_lex_state = 22}, - [2878] = {.lex_state = 22, .external_lex_state = 12}, - [2879] = {.lex_state = 31, .external_lex_state = 12}, - [2880] = {.lex_state = 115, .external_lex_state = 12}, - [2881] = {.lex_state = 102, .external_lex_state = 12}, - [2882] = {.lex_state = 659, .external_lex_state = 12}, - [2883] = {.lex_state = 812, .external_lex_state = 12}, - [2884] = {.lex_state = 659, .external_lex_state = 12}, - [2885] = {.lex_state = 658, .external_lex_state = 12}, - [2886] = {.lex_state = 658, .external_lex_state = 12}, + [2876] = {.lex_state = 812, .external_lex_state = 12}, + [2877] = {.lex_state = 812, .external_lex_state = 12}, + [2878] = {.lex_state = 812, .external_lex_state = 12}, + [2879] = {.lex_state = 70, .external_lex_state = 12}, + [2880] = {.lex_state = 102, .external_lex_state = 12}, + [2881] = {.lex_state = 812, .external_lex_state = 12}, + [2882] = {.lex_state = 0, .external_lex_state = 22}, + [2883] = {.lex_state = 22, .external_lex_state = 12}, + [2884] = {.lex_state = 812, .external_lex_state = 12}, + [2885] = {.lex_state = 145, .external_lex_state = 12}, + [2886] = {.lex_state = 115, .external_lex_state = 12}, [2887] = {.lex_state = 812, .external_lex_state = 12}, [2888] = {.lex_state = 63, .external_lex_state = 12}, [2889] = {.lex_state = 115, .external_lex_state = 12}, - [2890] = {.lex_state = 812, .external_lex_state = 12}, - [2891] = {.lex_state = 31, .external_lex_state = 12}, + [2890] = {.lex_state = 0, .external_lex_state = 12}, + [2891] = {.lex_state = 660, .external_lex_state = 12}, [2892] = {.lex_state = 812, .external_lex_state = 12}, - [2893] = {.lex_state = 812, .external_lex_state = 12}, - [2894] = {.lex_state = 145, .external_lex_state = 12}, - [2895] = {.lex_state = 115, .external_lex_state = 12}, + [2893] = {.lex_state = 660, .external_lex_state = 12}, + [2894] = {.lex_state = 659, .external_lex_state = 12}, + [2895] = {.lex_state = 659, .external_lex_state = 12}, [2896] = {.lex_state = 812, .external_lex_state = 12}, [2897] = {.lex_state = 812, .external_lex_state = 12}, - [2898] = {.lex_state = 810, .external_lex_state = 12}, - [2899] = {.lex_state = 115, .external_lex_state = 12}, + [2898] = {.lex_state = 812, .external_lex_state = 12}, + [2899] = {.lex_state = 812, .external_lex_state = 12}, [2900] = {.lex_state = 812, .external_lex_state = 12}, - [2901] = {.lex_state = 812, .external_lex_state = 12}, + [2901] = {.lex_state = 810, .external_lex_state = 12}, [2902] = {.lex_state = 812, .external_lex_state = 12}, - [2903] = {.lex_state = 812, .external_lex_state = 12}, + [2903] = {.lex_state = 115, .external_lex_state = 12}, [2904] = {.lex_state = 812, .external_lex_state = 12}, - [2905] = {.lex_state = 0, .external_lex_state = 37}, - [2906] = {.lex_state = 0, .external_lex_state = 38}, - [2907] = {.lex_state = 0, .external_lex_state = 19}, - [2908] = {.lex_state = 658, .external_lex_state = 12}, + [2905] = {.lex_state = 812, .external_lex_state = 12}, + [2906] = {.lex_state = 145, .external_lex_state = 12}, + [2907] = {.lex_state = 0, .external_lex_state = 38}, + [2908] = {.lex_state = 810, .external_lex_state = 12}, [2909] = {.lex_state = 812, .external_lex_state = 12}, - [2910] = {.lex_state = 0, .external_lex_state = 12}, - [2911] = {.lex_state = 658, .external_lex_state = 12}, + [2910] = {.lex_state = 812, .external_lex_state = 12}, + [2911] = {.lex_state = 812, .external_lex_state = 12}, [2912] = {.lex_state = 812, .external_lex_state = 12}, [2913] = {.lex_state = 812, .external_lex_state = 12}, - [2914] = {.lex_state = 812, .external_lex_state = 12}, + [2914] = {.lex_state = 0, .external_lex_state = 12}, [2915] = {.lex_state = 812, .external_lex_state = 12}, - [2916] = {.lex_state = 658, .external_lex_state = 12}, - [2917] = {.lex_state = 659, .external_lex_state = 12}, + [2916] = {.lex_state = 659, .external_lex_state = 12}, + [2917] = {.lex_state = 810, .external_lex_state = 12}, [2918] = {.lex_state = 0, .external_lex_state = 19}, [2919] = {.lex_state = 812, .external_lex_state = 12}, - [2920] = {.lex_state = 658, .external_lex_state = 12}, - [2921] = {.lex_state = 812, .external_lex_state = 12}, - [2922] = {.lex_state = 812, .external_lex_state = 12}, - [2923] = {.lex_state = 25, .external_lex_state = 12}, + [2920] = {.lex_state = 0, .external_lex_state = 38}, + [2921] = {.lex_state = 659, .external_lex_state = 12}, + [2922] = {.lex_state = 659, .external_lex_state = 12}, + [2923] = {.lex_state = 812, .external_lex_state = 12}, [2924] = {.lex_state = 812, .external_lex_state = 12}, - [2925] = {.lex_state = 115, .external_lex_state = 12}, - [2926] = {.lex_state = 115, .external_lex_state = 12}, - [2927] = {.lex_state = 22, .external_lex_state = 12}, - [2928] = {.lex_state = 115, .external_lex_state = 12}, - [2929] = {.lex_state = 115, .external_lex_state = 12}, - [2930] = {.lex_state = 0, .external_lex_state = 22}, - [2931] = {.lex_state = 810, .external_lex_state = 12}, + [2925] = {.lex_state = 812, .external_lex_state = 12}, + [2926] = {.lex_state = 660, .external_lex_state = 12}, + [2927] = {.lex_state = 812, .external_lex_state = 12}, + [2928] = {.lex_state = 25, .external_lex_state = 12}, + [2929] = {.lex_state = 0, .external_lex_state = 37}, + [2930] = {.lex_state = 31, .external_lex_state = 12}, + [2931] = {.lex_state = 115, .external_lex_state = 12}, [2932] = {.lex_state = 115, .external_lex_state = 12}, [2933] = {.lex_state = 812, .external_lex_state = 12}, [2934] = {.lex_state = 86, .external_lex_state = 12}, - [2935] = {.lex_state = 22, .external_lex_state = 12}, - [2936] = {.lex_state = 659, .external_lex_state = 12}, - [2937] = {.lex_state = 658, .external_lex_state = 12}, - [2938] = {.lex_state = 658, .external_lex_state = 12}, - [2939] = {.lex_state = 0, .external_lex_state = 22}, - [2940] = {.lex_state = 808, .external_lex_state = 12}, - [2941] = {.lex_state = 115, .external_lex_state = 12}, - [2942] = {.lex_state = 0, .external_lex_state = 22}, - [2943] = {.lex_state = 0, .external_lex_state = 22}, - [2944] = {.lex_state = 812, .external_lex_state = 12}, - [2945] = {.lex_state = 115, .external_lex_state = 12}, - [2946] = {.lex_state = 31, .external_lex_state = 12}, - [2947] = {.lex_state = 812, .external_lex_state = 12}, - [2948] = {.lex_state = 812, .external_lex_state = 12}, + [2935] = {.lex_state = 115, .external_lex_state = 12}, + [2936] = {.lex_state = 115, .external_lex_state = 12}, + [2937] = {.lex_state = 22, .external_lex_state = 12}, + [2938] = {.lex_state = 115, .external_lex_state = 12}, + [2939] = {.lex_state = 86, .external_lex_state = 12}, + [2940] = {.lex_state = 0, .external_lex_state = 22}, + [2941] = {.lex_state = 0, .external_lex_state = 39}, + [2942] = {.lex_state = 115, .external_lex_state = 12}, + [2943] = {.lex_state = 22, .external_lex_state = 12}, + [2944] = {.lex_state = 0, .external_lex_state = 19}, + [2945] = {.lex_state = 0, .external_lex_state = 22}, + [2946] = {.lex_state = 660, .external_lex_state = 12}, + [2947] = {.lex_state = 659, .external_lex_state = 12}, + [2948] = {.lex_state = 659, .external_lex_state = 12}, [2949] = {.lex_state = 812, .external_lex_state = 12}, - [2950] = {.lex_state = 22, .external_lex_state = 12}, - [2951] = {.lex_state = 115, .external_lex_state = 12}, + [2950] = {.lex_state = 658, .external_lex_state = 12}, + [2951] = {.lex_state = 812, .external_lex_state = 12}, [2952] = {.lex_state = 812, .external_lex_state = 12}, - [2953] = {.lex_state = 659, .external_lex_state = 12}, - [2954] = {.lex_state = 658, .external_lex_state = 12}, - [2955] = {.lex_state = 658, .external_lex_state = 12}, - [2956] = {.lex_state = 2986, .external_lex_state = 12}, + [2953] = {.lex_state = 25, .external_lex_state = 12}, + [2954] = {.lex_state = 812, .external_lex_state = 12}, + [2955] = {.lex_state = 115, .external_lex_state = 12}, + [2956] = {.lex_state = 812, .external_lex_state = 12}, [2957] = {.lex_state = 812, .external_lex_state = 12}, [2958] = {.lex_state = 812, .external_lex_state = 12}, [2959] = {.lex_state = 812, .external_lex_state = 12}, - [2960] = {.lex_state = 812, .external_lex_state = 12}, - [2961] = {.lex_state = 812, .external_lex_state = 12}, - [2962] = {.lex_state = 812, .external_lex_state = 12}, - [2963] = {.lex_state = 812, .external_lex_state = 12}, - [2964] = {.lex_state = 22, .external_lex_state = 12}, - [2965] = {.lex_state = 115, .external_lex_state = 12}, - [2966] = {.lex_state = 145, .external_lex_state = 12}, - [2967] = {.lex_state = 659, .external_lex_state = 12}, - [2968] = {.lex_state = 658, .external_lex_state = 12}, - [2969] = {.lex_state = 658, .external_lex_state = 12}, + [2960] = {.lex_state = 22, .external_lex_state = 12}, + [2961] = {.lex_state = 115, .external_lex_state = 12}, + [2962] = {.lex_state = 0, .external_lex_state = 38}, + [2963] = {.lex_state = 660, .external_lex_state = 12}, + [2964] = {.lex_state = 659, .external_lex_state = 12}, + [2965] = {.lex_state = 659, .external_lex_state = 12}, + [2966] = {.lex_state = 812, .external_lex_state = 12}, + [2967] = {.lex_state = 812, .external_lex_state = 12}, + [2968] = {.lex_state = 31, .external_lex_state = 12}, + [2969] = {.lex_state = 812, .external_lex_state = 12}, [2970] = {.lex_state = 812, .external_lex_state = 12}, [2971] = {.lex_state = 812, .external_lex_state = 12}, - [2972] = {.lex_state = 145, .external_lex_state = 12}, + [2972] = {.lex_state = 812, .external_lex_state = 12}, [2973] = {.lex_state = 812, .external_lex_state = 12}, - [2974] = {.lex_state = 812, .external_lex_state = 12}, - [2975] = {.lex_state = 70, .external_lex_state = 12}, - [2976] = {.lex_state = 812, .external_lex_state = 12}, - [2977] = {.lex_state = 31, .external_lex_state = 12}, - [2978] = {.lex_state = 658, .external_lex_state = 12}, - [2979] = {.lex_state = 658, .external_lex_state = 12}, + [2974] = {.lex_state = 22, .external_lex_state = 12}, + [2975] = {.lex_state = 115, .external_lex_state = 12}, + [2976] = {.lex_state = 145, .external_lex_state = 12}, + [2977] = {.lex_state = 660, .external_lex_state = 12}, + [2978] = {.lex_state = 659, .external_lex_state = 12}, + [2979] = {.lex_state = 659, .external_lex_state = 12}, [2980] = {.lex_state = 812, .external_lex_state = 12}, - [2981] = {.lex_state = 22, .external_lex_state = 12}, - [2982] = {.lex_state = 812, .external_lex_state = 12}, - [2983] = {.lex_state = 812, .external_lex_state = 12}, - [2984] = {.lex_state = 115, .external_lex_state = 12}, + [2981] = {.lex_state = 812, .external_lex_state = 12}, + [2982] = {.lex_state = 810, .external_lex_state = 12}, + [2983] = {.lex_state = 31, .external_lex_state = 12}, + [2984] = {.lex_state = 812, .external_lex_state = 12}, [2985] = {.lex_state = 812, .external_lex_state = 12}, - [2986] = {.lex_state = 658, .external_lex_state = 12}, - [2987] = {.lex_state = 658, .external_lex_state = 12}, - [2988] = {.lex_state = 812, .external_lex_state = 12}, - [2989] = {.lex_state = 660, .external_lex_state = 12}, - [2990] = {.lex_state = 810, .external_lex_state = 12}, + [2986] = {.lex_state = 812, .external_lex_state = 12}, + [2987] = {.lex_state = 25, .external_lex_state = 12}, + [2988] = {.lex_state = 659, .external_lex_state = 12}, + [2989] = {.lex_state = 659, .external_lex_state = 12}, + [2990] = {.lex_state = 659, .external_lex_state = 12}, [2991] = {.lex_state = 812, .external_lex_state = 12}, - [2992] = {.lex_state = 812, .external_lex_state = 12}, - [2993] = {.lex_state = 658, .external_lex_state = 12}, - [2994] = {.lex_state = 658, .external_lex_state = 12}, + [2992] = {.lex_state = 659, .external_lex_state = 12}, + [2993] = {.lex_state = 812, .external_lex_state = 12}, + [2994] = {.lex_state = 115, .external_lex_state = 12}, [2995] = {.lex_state = 812, .external_lex_state = 12}, - [2996] = {.lex_state = 812, .external_lex_state = 12}, - [2997] = {.lex_state = 812, .external_lex_state = 12}, + [2996] = {.lex_state = 659, .external_lex_state = 12}, + [2997] = {.lex_state = 659, .external_lex_state = 12}, [2998] = {.lex_state = 812, .external_lex_state = 12}, - [2999] = {.lex_state = 812, .external_lex_state = 12}, - [3000] = {.lex_state = 658, .external_lex_state = 12}, - [3001] = {.lex_state = 658, .external_lex_state = 12}, - [3002] = {.lex_state = 115, .external_lex_state = 12}, - [3003] = {.lex_state = 812, .external_lex_state = 12}, - [3004] = {.lex_state = 812, .external_lex_state = 12}, - [3005] = {.lex_state = 812, .external_lex_state = 12}, - [3006] = {.lex_state = 0, .external_lex_state = 39}, - [3007] = {.lex_state = 658, .external_lex_state = 12}, + [2999] = {.lex_state = 115, .external_lex_state = 12}, + [3000] = {.lex_state = 812, .external_lex_state = 12}, + [3001] = {.lex_state = 812, .external_lex_state = 12}, + [3002] = {.lex_state = 812, .external_lex_state = 12}, + [3003] = {.lex_state = 659, .external_lex_state = 12}, + [3004] = {.lex_state = 659, .external_lex_state = 12}, + [3005] = {.lex_state = 0, .external_lex_state = 22}, + [3006] = {.lex_state = 660, .external_lex_state = 12}, + [3007] = {.lex_state = 2988, .external_lex_state = 12}, [3008] = {.lex_state = 812, .external_lex_state = 12}, [3009] = {.lex_state = 810, .external_lex_state = 12}, - [3010] = {.lex_state = 658, .external_lex_state = 12}, - [3011] = {.lex_state = 812, .external_lex_state = 12}, - [3012] = {.lex_state = 658, .external_lex_state = 12}, - [3013] = {.lex_state = 658, .external_lex_state = 12}, - [3014] = {.lex_state = 812, .external_lex_state = 12}, - [3015] = {.lex_state = 660, .external_lex_state = 12}, + [3010] = {.lex_state = 659, .external_lex_state = 12}, + [3011] = {.lex_state = 659, .external_lex_state = 12}, + [3012] = {.lex_state = 810, .external_lex_state = 12}, + [3013] = {.lex_state = 659, .external_lex_state = 12}, + [3014] = {.lex_state = 31, .external_lex_state = 12}, + [3015] = {.lex_state = 812, .external_lex_state = 12}, [3016] = {.lex_state = 812, .external_lex_state = 12}, - [3017] = {.lex_state = 812, .external_lex_state = 12}, - [3018] = {.lex_state = 658, .external_lex_state = 12}, - [3019] = {.lex_state = 659, .external_lex_state = 12}, + [3017] = {.lex_state = 659, .external_lex_state = 12}, + [3018] = {.lex_state = 0, .external_lex_state = 22}, + [3019] = {.lex_state = 808, .external_lex_state = 12}, [3020] = {.lex_state = 812, .external_lex_state = 12}, [3021] = {.lex_state = 812, .external_lex_state = 12}, - [3022] = {.lex_state = 812, .external_lex_state = 12}, - [3023] = {.lex_state = 812, .external_lex_state = 12}, - [3024] = {.lex_state = 25, .external_lex_state = 12}, + [3022] = {.lex_state = 659, .external_lex_state = 12}, + [3023] = {.lex_state = 659, .external_lex_state = 12}, + [3024] = {.lex_state = 812, .external_lex_state = 12}, [3025] = {.lex_state = 812, .external_lex_state = 12}, - [3026] = {.lex_state = 812, .external_lex_state = 12}, + [3026] = {.lex_state = 0, .external_lex_state = 38}, [3027] = {.lex_state = 812, .external_lex_state = 12}, [3028] = {.lex_state = 812, .external_lex_state = 12}, - [3029] = {.lex_state = 658, .external_lex_state = 12}, - [3030] = {.lex_state = 115, .external_lex_state = 12}, - [3031] = {.lex_state = 659, .external_lex_state = 12}, - [3032] = {.lex_state = 658, .external_lex_state = 12}, - [3033] = {.lex_state = 115, .external_lex_state = 12}, - [3034] = {.lex_state = 812, .external_lex_state = 12}, - [3035] = {.lex_state = 31, .external_lex_state = 12}, + [3029] = {.lex_state = 31, .external_lex_state = 12}, + [3030] = {.lex_state = 812, .external_lex_state = 12}, + [3031] = {.lex_state = 103, .external_lex_state = 12}, + [3032] = {.lex_state = 115, .external_lex_state = 12}, + [3033] = {.lex_state = 659, .external_lex_state = 12}, + [3034] = {.lex_state = 659, .external_lex_state = 12}, + [3035] = {.lex_state = 812, .external_lex_state = 12}, [3036] = {.lex_state = 812, .external_lex_state = 12}, - [3037] = {.lex_state = 0, .external_lex_state = 22}, - [3038] = {.lex_state = 810, .external_lex_state = 12}, - [3039] = {.lex_state = 115, .external_lex_state = 12}, - [3040] = {.lex_state = 115, .external_lex_state = 12}, - [3041] = {.lex_state = 0, .external_lex_state = 22}, - [3042] = {.lex_state = 31, .external_lex_state = 12}, + [3037] = {.lex_state = 659, .external_lex_state = 12}, + [3038] = {.lex_state = 115, .external_lex_state = 12}, + [3039] = {.lex_state = 660, .external_lex_state = 12}, + [3040] = {.lex_state = 0, .external_lex_state = 22}, + [3041] = {.lex_state = 658, .external_lex_state = 12}, + [3042] = {.lex_state = 812, .external_lex_state = 12}, [3043] = {.lex_state = 812, .external_lex_state = 12}, - [3044] = {.lex_state = 25, .external_lex_state = 12}, - [3045] = {.lex_state = 658, .external_lex_state = 12}, - [3046] = {.lex_state = 660, .external_lex_state = 12}, - [3047] = {.lex_state = 31, .external_lex_state = 12}, - [3048] = {.lex_state = 812, .external_lex_state = 12}, - [3049] = {.lex_state = 812, .external_lex_state = 12}, - [3050] = {.lex_state = 0, .external_lex_state = 22}, + [3044] = {.lex_state = 812, .external_lex_state = 12}, + [3045] = {.lex_state = 812, .external_lex_state = 12}, + [3046] = {.lex_state = 812, .external_lex_state = 12}, + [3047] = {.lex_state = 115, .external_lex_state = 12}, + [3048] = {.lex_state = 0, .external_lex_state = 19}, + [3049] = {.lex_state = 115, .external_lex_state = 12}, + [3050] = {.lex_state = 115, .external_lex_state = 12}, [3051] = {.lex_state = 812, .external_lex_state = 12}, - [3052] = {.lex_state = 115, .external_lex_state = 12}, - [3053] = {.lex_state = 812, .external_lex_state = 12}, - [3054] = {.lex_state = 812, .external_lex_state = 12}, - [3055] = {.lex_state = 812, .external_lex_state = 12}, - [3056] = {.lex_state = 812, .external_lex_state = 12}, - [3057] = {.lex_state = 812, .external_lex_state = 12}, + [3052] = {.lex_state = 0, .external_lex_state = 22}, + [3053] = {.lex_state = 31, .external_lex_state = 12}, + [3054] = {.lex_state = 25, .external_lex_state = 12}, + [3055] = {.lex_state = 22, .external_lex_state = 12}, + [3056] = {.lex_state = 0, .external_lex_state = 38}, + [3057] = {.lex_state = 0, .external_lex_state = 22}, [3058] = {.lex_state = 812, .external_lex_state = 12}, - [3059] = {.lex_state = 812, .external_lex_state = 12}, - [3060] = {.lex_state = 115, .external_lex_state = 12}, - [3061] = {.lex_state = 115, .external_lex_state = 12}, - [3062] = {.lex_state = 812, .external_lex_state = 12}, - [3063] = {.lex_state = 0, .external_lex_state = 38}, - [3064] = {.lex_state = 0, .external_lex_state = 37}, + [3059] = {.lex_state = 70, .external_lex_state = 12}, + [3060] = {.lex_state = 145, .external_lex_state = 12}, + [3061] = {.lex_state = 31, .external_lex_state = 12}, + [3062] = {.lex_state = 115, .external_lex_state = 12}, + [3063] = {.lex_state = 812, .external_lex_state = 12}, + [3064] = {.lex_state = 812, .external_lex_state = 12}, [3065] = {.lex_state = 812, .external_lex_state = 12}, [3066] = {.lex_state = 812, .external_lex_state = 12}, [3067] = {.lex_state = 812, .external_lex_state = 12}, [3068] = {.lex_state = 812, .external_lex_state = 12}, [3069] = {.lex_state = 812, .external_lex_state = 12}, - [3070] = {.lex_state = 812, .external_lex_state = 12}, - [3071] = {.lex_state = 812, .external_lex_state = 12}, - [3072] = {.lex_state = 31, .external_lex_state = 12}, - [3073] = {.lex_state = 0, .external_lex_state = 22}, - [3074] = {.lex_state = 0, .external_lex_state = 22}, + [3070] = {.lex_state = 0, .external_lex_state = 22}, + [3071] = {.lex_state = 115, .external_lex_state = 12}, + [3072] = {.lex_state = 812, .external_lex_state = 12}, + [3073] = {.lex_state = 810, .external_lex_state = 12}, + [3074] = {.lex_state = 812, .external_lex_state = 12}, [3075] = {.lex_state = 812, .external_lex_state = 12}, - [3076] = {.lex_state = 31, .external_lex_state = 12}, + [3076] = {.lex_state = 812, .external_lex_state = 12}, [3077] = {.lex_state = 812, .external_lex_state = 12}, - [3078] = {.lex_state = 115, .external_lex_state = 12}, + [3078] = {.lex_state = 812, .external_lex_state = 12}, [3079] = {.lex_state = 812, .external_lex_state = 12}, [3080] = {.lex_state = 812, .external_lex_state = 12}, [3081] = {.lex_state = 812, .external_lex_state = 12}, - [3082] = {.lex_state = 812, .external_lex_state = 12}, - [3083] = {.lex_state = 812, .external_lex_state = 12}, + [3082] = {.lex_state = 659, .external_lex_state = 12}, + [3083] = {.lex_state = 0, .external_lex_state = 37}, [3084] = {.lex_state = 812, .external_lex_state = 12}, [3085] = {.lex_state = 812, .external_lex_state = 12}, - [3086] = {.lex_state = 812, .external_lex_state = 12}, - [3087] = {.lex_state = 812, .external_lex_state = 12}, + [3086] = {.lex_state = 31, .external_lex_state = 12}, + [3087] = {.lex_state = 0, .external_lex_state = 22}, [3088] = {.lex_state = 812, .external_lex_state = 12}, [3089] = {.lex_state = 812, .external_lex_state = 12}, [3090] = {.lex_state = 812, .external_lex_state = 12}, - [3091] = {.lex_state = 115, .external_lex_state = 12}, - [3092] = {.lex_state = 115, .external_lex_state = 12}, + [3091] = {.lex_state = 812, .external_lex_state = 12}, + [3092] = {.lex_state = 812, .external_lex_state = 12}, [3093] = {.lex_state = 812, .external_lex_state = 12}, - [3094] = {.lex_state = 0, .external_lex_state = 12}, + [3094] = {.lex_state = 812, .external_lex_state = 12}, [3095] = {.lex_state = 812, .external_lex_state = 12}, [3096] = {.lex_state = 812, .external_lex_state = 12}, - [3097] = {.lex_state = 808, .external_lex_state = 12}, + [3097] = {.lex_state = 812, .external_lex_state = 12}, [3098] = {.lex_state = 812, .external_lex_state = 12}, [3099] = {.lex_state = 812, .external_lex_state = 12}, - [3100] = {.lex_state = 115, .external_lex_state = 12}, + [3100] = {.lex_state = 812, .external_lex_state = 12}, [3101] = {.lex_state = 812, .external_lex_state = 12}, - [3102] = {.lex_state = 0, .external_lex_state = 12}, - [3103] = {.lex_state = 115, .external_lex_state = 12}, - [3104] = {.lex_state = 812, .external_lex_state = 12}, - [3105] = {.lex_state = 25, .external_lex_state = 12}, + [3102] = {.lex_state = 31, .external_lex_state = 12}, + [3103] = {.lex_state = 0, .external_lex_state = 22}, + [3104] = {.lex_state = 0, .external_lex_state = 12}, + [3105] = {.lex_state = 115, .external_lex_state = 12}, [3106] = {.lex_state = 812, .external_lex_state = 12}, - [3107] = {.lex_state = 658, .external_lex_state = 12}, - [3108] = {.lex_state = 86, .external_lex_state = 12}, + [3107] = {.lex_state = 808, .external_lex_state = 12}, + [3108] = {.lex_state = 812, .external_lex_state = 12}, [3109] = {.lex_state = 812, .external_lex_state = 12}, - [3110] = {.lex_state = 812, .external_lex_state = 12}, - [3111] = {.lex_state = 0, .external_lex_state = 38}, - [3112] = {.lex_state = 812, .external_lex_state = 12}, - [3113] = {.lex_state = 22, .external_lex_state = 12}, + [3110] = {.lex_state = 115, .external_lex_state = 12}, + [3111] = {.lex_state = 812, .external_lex_state = 12}, + [3112] = {.lex_state = 0, .external_lex_state = 12}, + [3113] = {.lex_state = 115, .external_lex_state = 12}, [3114] = {.lex_state = 812, .external_lex_state = 12}, [3115] = {.lex_state = 812, .external_lex_state = 12}, [3116] = {.lex_state = 812, .external_lex_state = 12}, [3117] = {.lex_state = 812, .external_lex_state = 12}, [3118] = {.lex_state = 812, .external_lex_state = 12}, - [3119] = {.lex_state = 63, .external_lex_state = 12}, + [3119] = {.lex_state = 812, .external_lex_state = 12}, [3120] = {.lex_state = 812, .external_lex_state = 12}, - [3121] = {.lex_state = 812, .external_lex_state = 12}, - [3122] = {.lex_state = 0, .external_lex_state = 22}, - [3123] = {.lex_state = 812, .external_lex_state = 12}, + [3121] = {.lex_state = 115, .external_lex_state = 12}, + [3122] = {.lex_state = 812, .external_lex_state = 12}, + [3123] = {.lex_state = 86, .external_lex_state = 12}, [3124] = {.lex_state = 812, .external_lex_state = 12}, [3125] = {.lex_state = 812, .external_lex_state = 12}, [3126] = {.lex_state = 812, .external_lex_state = 12}, - [3127] = {.lex_state = 0, .external_lex_state = 12}, + [3127] = {.lex_state = 812, .external_lex_state = 12}, [3128] = {.lex_state = 812, .external_lex_state = 12}, - [3129] = {.lex_state = 812, .external_lex_state = 12}, - [3130] = {.lex_state = 70, .external_lex_state = 12}, - [3131] = {.lex_state = 0, .external_lex_state = 22}, - [3132] = {.lex_state = 2986, .external_lex_state = 12}, + [3129] = {.lex_state = 115, .external_lex_state = 12}, + [3130] = {.lex_state = 812, .external_lex_state = 12}, + [3131] = {.lex_state = 812, .external_lex_state = 12}, + [3132] = {.lex_state = 22, .external_lex_state = 12}, [3133] = {.lex_state = 812, .external_lex_state = 12}, - [3134] = {.lex_state = 812, .external_lex_state = 12}, - [3135] = {.lex_state = 812, .external_lex_state = 12}, - [3136] = {.lex_state = 63, .external_lex_state = 12}, - [3137] = {.lex_state = 812, .external_lex_state = 12}, - [3138] = {.lex_state = 145, .external_lex_state = 12}, - [3139] = {.lex_state = 812, .external_lex_state = 12}, + [3134] = {.lex_state = 0, .external_lex_state = 22}, + [3135] = {.lex_state = 0, .external_lex_state = 19}, + [3136] = {.lex_state = 115, .external_lex_state = 12}, + [3137] = {.lex_state = 0, .external_lex_state = 12}, + [3138] = {.lex_state = 812, .external_lex_state = 12}, + [3139] = {.lex_state = 0, .external_lex_state = 22}, [3140] = {.lex_state = 0, .external_lex_state = 38}, - [3141] = {.lex_state = 812, .external_lex_state = 12}, - [3142] = {.lex_state = 0, .external_lex_state = 37}, - [3143] = {.lex_state = 810, .external_lex_state = 12}, - [3144] = {.lex_state = 0, .external_lex_state = 37}, - [3145] = {.lex_state = 103, .external_lex_state = 12}, - [3146] = {.lex_state = 115, .external_lex_state = 12}, - [3147] = {.lex_state = 25, .external_lex_state = 12}, - [3148] = {.lex_state = 812, .external_lex_state = 12}, - [3149] = {.lex_state = 0, .external_lex_state = 19}, + [3141] = {.lex_state = 63, .external_lex_state = 12}, + [3142] = {.lex_state = 115, .external_lex_state = 12}, + [3143] = {.lex_state = 812, .external_lex_state = 12}, + [3144] = {.lex_state = 812, .external_lex_state = 12}, + [3145] = {.lex_state = 812, .external_lex_state = 12}, + [3146] = {.lex_state = 812, .external_lex_state = 12}, + [3147] = {.lex_state = 812, .external_lex_state = 12}, + [3148] = {.lex_state = 0, .external_lex_state = 37}, + [3149] = {.lex_state = 812, .external_lex_state = 12}, [3150] = {.lex_state = 812, .external_lex_state = 12}, [3151] = {.lex_state = 812, .external_lex_state = 12}, - [3152] = {.lex_state = 812, .external_lex_state = 12}, - [3153] = {.lex_state = 0, .external_lex_state = 22}, + [3152] = {.lex_state = 0, .external_lex_state = 37}, + [3153] = {.lex_state = 2988, .external_lex_state = 12}, [3154] = {.lex_state = 812, .external_lex_state = 12}, - [3155] = {.lex_state = 812, .external_lex_state = 12}, - [3156] = {.lex_state = 810, .external_lex_state = 12}, + [3155] = {.lex_state = 810, .external_lex_state = 12}, + [3156] = {.lex_state = 812, .external_lex_state = 12}, [3157] = {.lex_state = 812, .external_lex_state = 12}, - [3158] = {.lex_state = 810, .external_lex_state = 12}, + [3158] = {.lex_state = 31, .external_lex_state = 12}, [3159] = {.lex_state = 812, .external_lex_state = 12}, - [3160] = {.lex_state = 31, .external_lex_state = 12}, + [3160] = {.lex_state = 812, .external_lex_state = 12}, [3161] = {.lex_state = 812, .external_lex_state = 12}, [3162] = {.lex_state = 812, .external_lex_state = 12}, - [3163] = {.lex_state = 658, .external_lex_state = 12}, - [3164] = {.lex_state = 0, .external_lex_state = 38}, + [3163] = {.lex_state = 812, .external_lex_state = 12}, + [3164] = {.lex_state = 812, .external_lex_state = 12}, [3165] = {.lex_state = 812, .external_lex_state = 12}, - [3166] = {.lex_state = 658, .external_lex_state = 12}, - [3167] = {.lex_state = 25, .external_lex_state = 12}, - [3168] = {.lex_state = 0, .external_lex_state = 22}, - [3169] = {.lex_state = 660, .external_lex_state = 12}, - [3170] = {.lex_state = 31, .external_lex_state = 12}, - [3171] = {.lex_state = 658, .external_lex_state = 12}, - [3172] = {.lex_state = 812, .external_lex_state = 12}, - [3173] = {.lex_state = 0, .external_lex_state = 38}, - [3174] = {.lex_state = 86, .external_lex_state = 12}, + [3166] = {.lex_state = 659, .external_lex_state = 12}, + [3167] = {.lex_state = 812, .external_lex_state = 12}, + [3168] = {.lex_state = 63, .external_lex_state = 12}, + [3169] = {.lex_state = 812, .external_lex_state = 12}, + [3170] = {.lex_state = 812, .external_lex_state = 12}, + [3171] = {.lex_state = 812, .external_lex_state = 12}, + [3172] = {.lex_state = 25, .external_lex_state = 12}, + [3173] = {.lex_state = 812, .external_lex_state = 12}, + [3174] = {.lex_state = 659, .external_lex_state = 12}, [3175] = {.lex_state = 812, .external_lex_state = 12}, - [3176] = {.lex_state = 31, .external_lex_state = 12}, - [3177] = {.lex_state = 812, .external_lex_state = 12}, - [3178] = {.lex_state = 812, .external_lex_state = 12}, - [3179] = {.lex_state = 0, .external_lex_state = 37}, - [3180] = {.lex_state = 812, .external_lex_state = 12}, - [3181] = {.lex_state = 812, .external_lex_state = 12}, + [3176] = {.lex_state = 659, .external_lex_state = 12}, + [3177] = {.lex_state = 0, .external_lex_state = 22}, + [3178] = {.lex_state = 25, .external_lex_state = 12}, + [3179] = {.lex_state = 658, .external_lex_state = 12}, + [3180] = {.lex_state = 25, .external_lex_state = 12}, + [3181] = {.lex_state = 0, .external_lex_state = 22}, [3182] = {.lex_state = 812, .external_lex_state = 12}, - [3183] = {.lex_state = 812, .external_lex_state = 12}, - [3184] = {.lex_state = 2986, .external_lex_state = 12}, - [3185] = {.lex_state = 0, .external_lex_state = 12}, - [3186] = {.lex_state = 0, .external_lex_state = 39}, - [3187] = {.lex_state = 0, .external_lex_state = 37}, - [3188] = {.lex_state = 0, .external_lex_state = 22}, - [3189] = {.lex_state = 115, .external_lex_state = 12}, - [3190] = {.lex_state = 812, .external_lex_state = 12}, + [3183] = {.lex_state = 31, .external_lex_state = 12}, + [3184] = {.lex_state = 115, .external_lex_state = 12}, + [3185] = {.lex_state = 812, .external_lex_state = 12}, + [3186] = {.lex_state = 810, .external_lex_state = 12}, + [3187] = {.lex_state = 812, .external_lex_state = 12}, + [3188] = {.lex_state = 812, .external_lex_state = 12}, + [3189] = {.lex_state = 812, .external_lex_state = 12}, + [3190] = {.lex_state = 0, .external_lex_state = 37}, [3191] = {.lex_state = 812, .external_lex_state = 12}, - [3192] = {.lex_state = 31, .external_lex_state = 12}, - [3193] = {.lex_state = 115, .external_lex_state = 12}, - [3194] = {.lex_state = 115, .external_lex_state = 12}, - [3195] = {.lex_state = 812, .external_lex_state = 12}, - [3196] = {.lex_state = 812, .external_lex_state = 12}, + [3192] = {.lex_state = 812, .external_lex_state = 12}, + [3193] = {.lex_state = 2988, .external_lex_state = 12}, + [3194] = {.lex_state = 0, .external_lex_state = 22}, + [3195] = {.lex_state = 31, .external_lex_state = 12}, + [3196] = {.lex_state = 0, .external_lex_state = 39}, [3197] = {.lex_state = 812, .external_lex_state = 12}, - [3198] = {.lex_state = 812, .external_lex_state = 12}, + [3198] = {.lex_state = 0, .external_lex_state = 37}, [3199] = {.lex_state = 812, .external_lex_state = 12}, - [3200] = {.lex_state = 115, .external_lex_state = 12}, - [3201] = {.lex_state = 0, .external_lex_state = 19}, - [3202] = {.lex_state = 115, .external_lex_state = 12}, - [3203] = {.lex_state = 810, .external_lex_state = 12}, - [3204] = {.lex_state = 0, .external_lex_state = 37}, + [3200] = {.lex_state = 812, .external_lex_state = 12}, + [3201] = {.lex_state = 812, .external_lex_state = 12}, + [3202] = {.lex_state = 812, .external_lex_state = 12}, + [3203] = {.lex_state = 115, .external_lex_state = 12}, + [3204] = {.lex_state = 812, .external_lex_state = 12}, [3205] = {.lex_state = 812, .external_lex_state = 12}, - [3206] = {.lex_state = 0, .external_lex_state = 19}, + [3206] = {.lex_state = 812, .external_lex_state = 12}, [3207] = {.lex_state = 812, .external_lex_state = 12}, - [3208] = {.lex_state = 0, .external_lex_state = 38}, + [3208] = {.lex_state = 812, .external_lex_state = 12}, [3209] = {.lex_state = 812, .external_lex_state = 12}, - [3210] = {.lex_state = 0, .external_lex_state = 19}, - [3211] = {.lex_state = 0, .external_lex_state = 38}, + [3210] = {.lex_state = 115, .external_lex_state = 12}, + [3211] = {.lex_state = 0, .external_lex_state = 19}, [3212] = {.lex_state = 812, .external_lex_state = 12}, - [3213] = {.lex_state = 2986, .external_lex_state = 12}, - [3214] = {.lex_state = 0, .external_lex_state = 22}, + [3213] = {.lex_state = 812, .external_lex_state = 12}, + [3214] = {.lex_state = 31, .external_lex_state = 12}, [3215] = {.lex_state = 812, .external_lex_state = 12}, - [3216] = {.lex_state = 25, .external_lex_state = 12}, - [3217] = {.lex_state = 812, .external_lex_state = 12}, + [3216] = {.lex_state = 0, .external_lex_state = 19}, + [3217] = {.lex_state = 2988, .external_lex_state = 12}, [3218] = {.lex_state = 812, .external_lex_state = 12}, + [3219] = {.lex_state = 812, .external_lex_state = 12}, + [3220] = {.lex_state = 0, .external_lex_state = 19}, + [3221] = {.lex_state = 115, .external_lex_state = 12}, + [3222] = {.lex_state = 115, .external_lex_state = 12}, + [3223] = {.lex_state = 0, .external_lex_state = 38}, + [3224] = {.lex_state = 0, .external_lex_state = 38}, + [3225] = {.lex_state = 812, .external_lex_state = 12}, + [3226] = {.lex_state = 812, .external_lex_state = 12}, + [3227] = {.lex_state = 812, .external_lex_state = 12}, + [3228] = {.lex_state = 115, .external_lex_state = 12}, }; enum { @@ -49869,13 +49907,13 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__for] = true, [ts_external_token__while] = true, [ts_external_token__if] = true, + [ts_external_token__elseif] = true, + [ts_external_token__else] = true, + [ts_external_token__endif] = true, [ts_external_token__try] = true, - [ts_external_token__catch] = true, [ts_external_token__cnext] = true, [ts_external_token__cprevious] = true, [ts_external_token__cNext] = true, - [ts_external_token__finally] = true, - [ts_external_token__endtry] = true, [ts_external_token__const] = true, [ts_external_token__normal] = true, [ts_external_token__return] = true, @@ -49963,13 +50001,13 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__for] = true, [ts_external_token__while] = true, [ts_external_token__if] = true, - [ts_external_token__elseif] = true, - [ts_external_token__else] = true, - [ts_external_token__endif] = true, [ts_external_token__try] = true, + [ts_external_token__catch] = true, [ts_external_token__cnext] = true, [ts_external_token__cprevious] = true, [ts_external_token__cNext] = true, + [ts_external_token__finally] = true, + [ts_external_token__endtry] = true, [ts_external_token__const] = true, [ts_external_token__normal] = true, [ts_external_token__return] = true, @@ -50054,9 +50092,9 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_comment] = true, [ts_external_token_line_continuation_comment] = true, [ts_external_token__function] = true, - [ts_external_token__endfunction] = true, [ts_external_token__for] = true, [ts_external_token__while] = true, + [ts_external_token__endwhile] = true, [ts_external_token__if] = true, [ts_external_token__try] = true, [ts_external_token__cnext] = true, @@ -50147,9 +50185,9 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_line_continuation_comment] = true, [ts_external_token__function] = true, [ts_external_token__for] = true, - [ts_external_token__endfor] = true, [ts_external_token__while] = true, [ts_external_token__if] = true, + [ts_external_token__endif] = true, [ts_external_token__try] = true, [ts_external_token__cnext] = true, [ts_external_token__cprevious] = true, @@ -50238,9 +50276,9 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_comment] = true, [ts_external_token_line_continuation_comment] = true, [ts_external_token__function] = true, + [ts_external_token__endfunction] = true, [ts_external_token__for] = true, [ts_external_token__while] = true, - [ts_external_token__endwhile] = true, [ts_external_token__if] = true, [ts_external_token__try] = true, [ts_external_token__cnext] = true, @@ -50325,10 +50363,13 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_unknown_command_name] = true, }, [8] = { + [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, + [ts_external_token_comment] = true, [ts_external_token_line_continuation_comment] = true, [ts_external_token__function] = true, [ts_external_token__for] = true, + [ts_external_token__endfor] = true, [ts_external_token__while] = true, [ts_external_token__if] = true, [ts_external_token__try] = true, @@ -50414,9 +50455,7 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_unknown_command_name] = true, }, [9] = { - [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, - [ts_external_token_comment] = true, [ts_external_token_line_continuation_comment] = true, [ts_external_token__function] = true, [ts_external_token__for] = true, @@ -50426,7 +50465,6 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__cnext] = true, [ts_external_token__cprevious] = true, [ts_external_token__cNext] = true, - [ts_external_token__endtry] = true, [ts_external_token__const] = true, [ts_external_token__normal] = true, [ts_external_token__return] = true, @@ -50514,11 +50552,11 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__for] = true, [ts_external_token__while] = true, [ts_external_token__if] = true, - [ts_external_token__endif] = true, [ts_external_token__try] = true, [ts_external_token__cnext] = true, [ts_external_token__cprevious] = true, [ts_external_token__cNext] = true, + [ts_external_token__endtry] = true, [ts_external_token__const] = true, [ts_external_token__normal] = true, [ts_external_token__return] = true, @@ -50683,24 +50721,31 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__default] = true, }, [24] = { + [ts_external_token__line_continuation] = true, + [ts_external_token_string_literal] = true, + [ts_external_token_line_continuation_comment] = true, + }, + [25] = { [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token_comment] = true, [ts_external_token_line_continuation_comment] = true, [ts_external_token__default] = true, }, - [25] = { + [26] = { + [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token_string_literal] = true, + [ts_external_token_comment] = true, [ts_external_token_line_continuation_comment] = true, }, - [26] = { + [27] = { [ts_external_token__no] = true, [ts_external_token__inv] = true, [ts_external_token__line_continuation] = true, [ts_external_token_line_continuation_comment] = true, }, - [27] = { + [28] = { [ts_external_token__line_continuation] = true, [ts_external_token_line_continuation_comment] = true, [ts_external_token__normal] = true, @@ -50709,13 +50754,6 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__wincmd] = true, [ts_external_token__call] = true, }, - [28] = { - [ts_external_token__newline_or_pipe] = true, - [ts_external_token__line_continuation] = true, - [ts_external_token_string_literal] = true, - [ts_external_token_comment] = true, - [ts_external_token_line_continuation_comment] = true, - }, [29] = { [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, @@ -50735,16 +50773,16 @@ static const bool ts_external_scanner_states[40][EXTERNAL_TOKEN_COUNT] = { [31] = { [ts_external_token__line_continuation] = true, [ts_external_token_line_continuation_comment] = true, - [ts_external_token__catch] = true, - [ts_external_token__finally] = true, - [ts_external_token__endtry] = true, + [ts_external_token__elseif] = true, + [ts_external_token__else] = true, + [ts_external_token__endif] = true, }, [32] = { [ts_external_token__line_continuation] = true, [ts_external_token_line_continuation_comment] = true, - [ts_external_token__elseif] = true, - [ts_external_token__else] = true, - [ts_external_token__endif] = true, + [ts_external_token__catch] = true, + [ts_external_token__finally] = true, + [ts_external_token__endtry] = true, }, [33] = { [ts_external_token__line_continuation] = true, @@ -51118,87 +51156,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(1), }, [1] = { - [sym_script_file] = STATE(3127), - [sym__cmd_separator] = STATE(112), - [aux_sym__separated_statements] = STATE(49), - [sym__statement] = STATE(2391), - [sym_unknown_builtin_statement] = STATE(2391), - [sym_return_statement] = STATE(2391), - [sym_break_statement] = STATE(2391), - [sym_continue_statement] = STATE(2391), - [sym_normal_statement] = STATE(2391), - [sym_setfiletype_statement] = STATE(2391), - [sym_options_statement] = STATE(2391), - [sym_startinsert_statement] = STATE(2391), - [sym_stopinsert_statement] = STATE(2391), - [sym_scriptencoding_statement] = STATE(2391), - [sym_cnext_statement] = STATE(2391), - [sym_cprevious_statement] = STATE(2391), - [sym_runtime_statement] = STATE(2391), - [sym_wincmd_statement] = STATE(2391), - [sym_source_statement] = STATE(2391), - [sym_global_statement] = STATE(2391), - [sym_filetype_statement] = STATE(2391), - [sym_colorscheme_statement] = STATE(2391), - [sym_lua_statement] = STATE(2391), - [sym_ruby_statement] = STATE(2391), - [sym_python_statement] = STATE(2391), - [sym_perl_statement] = STATE(2391), - [sym_for_loop] = STATE(2391), - [sym_while_loop] = STATE(2391), - [sym_if_statement] = STATE(2391), - [sym_try_statement] = STATE(2391), - [sym_throw_statement] = STATE(2391), - [sym_bang_filter_statement] = STATE(2391), - [sym_let_statement] = STATE(2391), - [sym_const_statement] = STATE(2391), - [sym_set_statement] = STATE(2391), - [sym_setlocal_statement] = STATE(2391), - [sym_unlet_statement] = STATE(2391), - [sym_call_statement] = STATE(2391), - [sym_echo_statement] = STATE(2391), - [sym_echon_statement] = STATE(2391), - [sym_echohl_statement] = STATE(2391), - [sym_echomsg_statement] = STATE(2391), - [sym_echoerr_statement] = STATE(2391), - [sym_execute_statement] = STATE(2391), - [sym_silent_statement] = STATE(2391), - [sym_vertical_statement] = STATE(2391), - [sym_topleft_statement] = STATE(2391), - [sym_botright_statement] = STATE(2391), - [sym_aboveleft_statement] = STATE(2391), - [sym_belowright_statement] = STATE(2391), - [sym_user_command] = STATE(2391), - [sym_function_definition] = STATE(2391), - [sym_range_statement] = STATE(2391), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2391), - [sym_map_statement] = STATE(2391), - [sym_sign_statement] = STATE(2391), - [sym_eval_statement] = STATE(2391), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2391), - [sym_augroup_statement] = STATE(2391), - [sym_command_statement] = STATE(2391), - [sym_comclear_statement] = STATE(2391), - [sym_delcommand_statement] = STATE(2391), - [sym_highlight_statement] = STATE(2391), - [sym_syntax_statement] = STATE(2391), - [sym_edit_statement] = STATE(2391), - [sym_enew_statement] = STATE(2391), - [sym_find_statement] = STATE(2391), - [sym_ex_statement] = STATE(2391), - [sym_visual_statement] = STATE(2391), - [sym_view_statement] = STATE(2391), - [aux_sym__statement_repeat1] = STATE(92), + [sym_script_file] = STATE(3137), + [sym__cmd_separator] = STATE(110), + [aux_sym__separated_statements] = STATE(36), + [sym__statement] = STATE(2323), + [sym_unknown_builtin_statement] = STATE(2323), + [sym_return_statement] = STATE(2323), + [sym_break_statement] = STATE(2323), + [sym_continue_statement] = STATE(2323), + [sym_normal_statement] = STATE(2323), + [sym_setfiletype_statement] = STATE(2323), + [sym_options_statement] = STATE(2323), + [sym_startinsert_statement] = STATE(2323), + [sym_stopinsert_statement] = STATE(2323), + [sym_scriptencoding_statement] = STATE(2323), + [sym_cnext_statement] = STATE(2323), + [sym_cprevious_statement] = STATE(2323), + [sym_runtime_statement] = STATE(2323), + [sym_wincmd_statement] = STATE(2323), + [sym_source_statement] = STATE(2323), + [sym_global_statement] = STATE(2323), + [sym_filetype_statement] = STATE(2323), + [sym_colorscheme_statement] = STATE(2323), + [sym_lua_statement] = STATE(2323), + [sym_ruby_statement] = STATE(2323), + [sym_python_statement] = STATE(2323), + [sym_perl_statement] = STATE(2323), + [sym_for_loop] = STATE(2323), + [sym_while_loop] = STATE(2323), + [sym_if_statement] = STATE(2323), + [sym_try_statement] = STATE(2323), + [sym_throw_statement] = STATE(2323), + [sym_bang_filter_statement] = STATE(2323), + [sym_let_statement] = STATE(2323), + [sym_const_statement] = STATE(2323), + [sym_set_statement] = STATE(2323), + [sym_setlocal_statement] = STATE(2323), + [sym_unlet_statement] = STATE(2323), + [sym_call_statement] = STATE(2323), + [sym_echo_statement] = STATE(2323), + [sym_echon_statement] = STATE(2323), + [sym_echohl_statement] = STATE(2323), + [sym_echomsg_statement] = STATE(2323), + [sym_echoerr_statement] = STATE(2323), + [sym_execute_statement] = STATE(2323), + [sym_silent_statement] = STATE(2323), + [sym_vertical_statement] = STATE(2323), + [sym_topleft_statement] = STATE(2323), + [sym_botright_statement] = STATE(2323), + [sym_aboveleft_statement] = STATE(2323), + [sym_belowright_statement] = STATE(2323), + [sym_user_command] = STATE(2323), + [sym_function_definition] = STATE(2323), + [sym_range_statement] = STATE(2323), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2323), + [sym_map_statement] = STATE(2323), + [sym_sign_statement] = STATE(2323), + [sym_eval_statement] = STATE(2323), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2323), + [sym_augroup_statement] = STATE(2323), + [sym_command_statement] = STATE(2323), + [sym_comclear_statement] = STATE(2323), + [sym_delcommand_statement] = STATE(2323), + [sym_highlight_statement] = STATE(2323), + [sym_syntax_statement] = STATE(2323), + [sym_edit_statement] = STATE(2323), + [sym_enew_statement] = STATE(2323), + [sym_find_statement] = STATE(2323), + [sym_ex_statement] = STATE(2323), + [sym_visual_statement] = STATE(2323), + [sym_view_statement] = STATE(2323), + [aux_sym__statement_repeat1] = STATE(93), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), @@ -51305,89 +51343,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [2] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_catch_statement] = STATE(1963), - [sym_finally_statement] = STATE(3208), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_try_statement_repeat1] = STATE(1963), + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(7), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_elseif_statement] = STATE(2008), + [sym_else_statement] = STATE(3198), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_if_statement_repeat1] = STATE(2008), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -51410,13 +51448,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(161), + [sym__else] = ACTIONS(163), + [sym__endif] = ACTIONS(165), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(161), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(163), - [sym__endtry] = ACTIONS(165), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -51496,89 +51534,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [3] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(2), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_catch_statement] = STATE(2014), - [sym_finally_statement] = STATE(3063), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_try_statement_repeat1] = STATE(2014), + [sym__cmd_separator] = STATE(102), + [aux_sym__separated_statements] = STATE(4), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_catch_statement] = STATE(2040), + [sym_finally_statement] = STATE(2920), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_try_statement_repeat1] = STATE(2040), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -51593,21 +51631,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(159), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(159), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(161), + [sym__catch] = ACTIONS(169), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(163), - [sym__endtry] = ACTIONS(167), + [sym__finally] = ACTIONS(171), + [sym__endtry] = ACTIONS(173), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -51688,88 +51726,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_elseif_statement] = STATE(2022), - [sym_else_statement] = STATE(2861), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_if_statement_repeat1] = STATE(2022), + [aux_sym__separated_statements] = STATE(16), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_catch_statement] = STATE(1997), + [sym_finally_statement] = STATE(2962), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_try_statement_repeat1] = STATE(1997), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -51784,21 +51822,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(169), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(169), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(171), - [sym__else] = ACTIONS(173), - [sym__endif] = ACTIONS(175), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(169), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), + [sym__finally] = ACTIONS(171), + [sym__endtry] = ACTIONS(175), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -51878,89 +51916,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [5] = { - [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_elseif_statement] = STATE(1967), - [sym_else_statement] = STATE(3144), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_if_statement_repeat1] = STATE(1967), + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(8), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_elseif_statement] = STATE(2001), + [sym_else_statement] = STATE(2929), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_if_statement_repeat1] = STATE(2001), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -51975,16 +52013,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(169), + [sym__newline_or_pipe] = ACTIONS(159), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(169), + [sym_comment] = ACTIONS(159), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(171), - [sym__else] = ACTIONS(173), + [sym__elseif] = ACTIONS(161), + [sym__else] = ACTIONS(163), [sym__endif] = ACTIONS(177), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -52069,89 +52107,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [6] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(8), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_catch_statement] = STATE(1968), - [sym_finally_statement] = STATE(3111), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_try_statement_repeat1] = STATE(1968), + [sym__cmd_separator] = STATE(102), + [aux_sym__separated_statements] = STATE(9), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_catch_statement] = STATE(2042), + [sym_finally_statement] = STATE(3056), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_try_statement_repeat1] = STATE(2042), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -52166,20 +52204,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(159), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(159), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(161), + [sym__catch] = ACTIONS(169), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(163), + [sym__finally] = ACTIONS(171), [sym__endtry] = ACTIONS(179), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), @@ -52260,89 +52298,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [7] = { - [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(4), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_elseif_statement] = STATE(1988), - [sym_else_statement] = STATE(3187), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_if_statement_repeat1] = STATE(1988), + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(10), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_elseif_statement] = STATE(1987), + [sym_else_statement] = STATE(3152), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_if_statement_repeat1] = STATE(1987), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -52357,16 +52395,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(169), + [sym__newline_or_pipe] = ACTIONS(159), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(169), + [sym_comment] = ACTIONS(159), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(171), - [sym__else] = ACTIONS(173), + [sym__elseif] = ACTIONS(161), + [sym__else] = ACTIONS(163), [sym__endif] = ACTIONS(181), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -52451,89 +52489,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [8] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_catch_statement] = STATE(1950), - [sym_finally_statement] = STATE(3173), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_try_statement_repeat1] = STATE(1950), + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(10), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_elseif_statement] = STATE(2019), + [sym_else_statement] = STATE(2872), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_if_statement_repeat1] = STATE(2019), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -52556,13 +52594,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(161), + [sym__else] = ACTIONS(163), + [sym__endif] = ACTIONS(183), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(161), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(163), - [sym__endtry] = ACTIONS(183), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -52643,88 +52681,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [9] = { [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(5), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_elseif_statement] = STATE(1951), - [sym_else_statement] = STATE(3179), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), - [aux_sym_if_statement_repeat1] = STATE(1951), + [aux_sym__separated_statements] = STATE(16), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_catch_statement] = STATE(2006), + [sym_finally_statement] = STATE(3223), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), + [aux_sym_try_statement_repeat1] = STATE(2006), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -52739,21 +52777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(169), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(169), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(171), - [sym__else] = ACTIONS(173), - [sym__endif] = ACTIONS(185), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(169), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), + [sym__finally] = ACTIONS(171), + [sym__endtry] = ACTIONS(185), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -52833,274 +52871,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [10] = { - [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(15), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(9), - [sym_mark] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(15), - [anon_sym_DOT2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DOLLAR] = ACTIONS(21), - [anon_sym_BSLASH_SLASH] = ACTIONS(23), - [anon_sym_BSLASH_QMARK] = ACTIONS(23), - [anon_sym_BSLASH_AMP] = ACTIONS(23), - [sym_integer_literal] = ACTIONS(25), - [sym_register] = ACTIONS(27), - [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(169), + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(10), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(223), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(169), + [sym_comment] = ACTIONS(223), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(33), - [sym__for] = ACTIONS(35), - [sym__while] = ACTIONS(37), - [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(187), - [sym__else] = ACTIONS(187), - [sym__endif] = ACTIONS(187), - [sym__try] = ACTIONS(41), - [sym__cnext] = ACTIONS(43), - [sym__cprevious] = ACTIONS(45), - [sym__cNext] = ACTIONS(45), - [sym__const] = ACTIONS(47), - [sym__normal] = ACTIONS(49), - [sym__return] = ACTIONS(51), - [sym__perl] = ACTIONS(53), - [sym__lua] = ACTIONS(55), - [sym__ruby] = ACTIONS(57), - [sym__python] = ACTIONS(59), - [sym__throw] = ACTIONS(61), - [sym__execute] = ACTIONS(63), - [sym__autocmd] = ACTIONS(65), - [sym__silent] = ACTIONS(67), - [sym__echo] = ACTIONS(69), - [sym__echon] = ACTIONS(71), - [sym__echohl] = ACTIONS(73), - [sym__echomsg] = ACTIONS(75), - [sym__echoerr] = ACTIONS(77), - [sym__map] = ACTIONS(79), - [sym__nmap] = ACTIONS(79), - [sym__vmap] = ACTIONS(79), - [sym__xmap] = ACTIONS(79), - [sym__smap] = ACTIONS(79), - [sym__omap] = ACTIONS(79), - [sym__imap] = ACTIONS(79), - [sym__lmap] = ACTIONS(79), - [sym__cmap] = ACTIONS(79), - [sym__tmap] = ACTIONS(79), - [sym__noremap] = ACTIONS(79), - [sym__nnoremap] = ACTIONS(79), - [sym__vnoremap] = ACTIONS(79), - [sym__xnoremap] = ACTIONS(79), - [sym__snoremap] = ACTIONS(79), - [sym__onoremap] = ACTIONS(79), - [sym__inoremap] = ACTIONS(79), - [sym__lnoremap] = ACTIONS(79), - [sym__cnoremap] = ACTIONS(79), - [sym__tnoremap] = ACTIONS(79), - [sym__augroup] = ACTIONS(81), - [sym__highlight] = ACTIONS(83), - [sym__syntax] = ACTIONS(85), - [sym__set] = ACTIONS(87), - [sym__setlocal] = ACTIONS(89), - [sym__setfiletype] = ACTIONS(91), - [sym__browse] = ACTIONS(93), - [sym__options] = ACTIONS(95), - [sym__startinsert] = ACTIONS(97), - [sym__stopinsert] = ACTIONS(99), - [sym__scriptencoding] = ACTIONS(101), - [sym__source] = ACTIONS(103), - [sym__global] = ACTIONS(105), - [sym__colorscheme] = ACTIONS(107), - [sym__command] = ACTIONS(109), - [sym__comclear] = ACTIONS(111), - [sym__delcommand] = ACTIONS(113), - [sym__runtime] = ACTIONS(115), - [sym__wincmd] = ACTIONS(117), - [sym__sign] = ACTIONS(119), - [sym__filetype] = ACTIONS(121), - [sym__let] = ACTIONS(123), - [sym__unlet] = ACTIONS(125), - [sym__call] = ACTIONS(127), - [sym__break] = ACTIONS(129), - [sym__continue] = ACTIONS(131), - [sym__vertical] = ACTIONS(133), - [sym__leftabove] = ACTIONS(135), - [sym__aboveleft] = ACTIONS(135), - [sym__rightbelow] = ACTIONS(137), - [sym__belowright] = ACTIONS(137), - [sym__topleft] = ACTIONS(139), - [sym__botright] = ACTIONS(141), - [sym__edit] = ACTIONS(143), - [sym__enew] = ACTIONS(145), - [sym__find] = ACTIONS(147), - [sym__ex] = ACTIONS(149), - [sym__visual] = ACTIONS(151), - [sym__view] = ACTIONS(153), - [sym__eval] = ACTIONS(155), - [sym_unknown_command_name] = ACTIONS(157), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__elseif] = ACTIONS(238), + [sym__else] = ACTIONS(238), + [sym__endif] = ACTIONS(238), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), }, [11] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), + [sym__cmd_separator] = STATE(102), + [aux_sym__separated_statements] = STATE(16), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -53115,21 +53153,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(159), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(159), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(189), + [sym__catch] = ACTIONS(417), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(189), - [sym__endtry] = ACTIONS(189), + [sym__finally] = ACTIONS(417), + [sym__endtry] = ACTIONS(417), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -53209,86 +53247,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [12] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(15), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -53311,13 +53349,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(419), + [sym__else] = ACTIONS(419), + [sym__endif] = ACTIONS(419), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(191), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(191), - [sym__endtry] = ACTIONS(191), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -53397,86 +53435,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [13] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(12), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), + [sym__cmd_separator] = STATE(102), + [aux_sym__separated_statements] = STATE(16), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -53491,21 +53529,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(159), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(159), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(193), + [sym__catch] = ACTIONS(421), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(193), - [sym__endtry] = ACTIONS(193), + [sym__finally] = ACTIONS(421), + [sym__endtry] = ACTIONS(421), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -53585,274 +53623,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [14] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(231), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(231), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__try] = ACTIONS(246), - [sym__catch] = ACTIONS(249), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__finally] = ACTIONS(249), - [sym__endtry] = ACTIONS(249), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), - }, - [15] = { [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__separated_statements] = STATE(11), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -53867,21 +53717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(169), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(169), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(425), - [sym__else] = ACTIONS(425), - [sym__endif] = ACTIONS(425), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(423), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), + [sym__finally] = ACTIONS(423), + [sym__endtry] = ACTIONS(423), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -53960,87 +53810,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [16] = { - [sym__cmd_separator] = STATE(103), - [aux_sym__separated_statements] = STATE(11), - [sym__statement] = STATE(2338), - [sym_unknown_builtin_statement] = STATE(2338), - [sym_return_statement] = STATE(2338), - [sym_break_statement] = STATE(2338), - [sym_continue_statement] = STATE(2338), - [sym_normal_statement] = STATE(2338), - [sym_setfiletype_statement] = STATE(2338), - [sym_options_statement] = STATE(2338), - [sym_startinsert_statement] = STATE(2338), - [sym_stopinsert_statement] = STATE(2338), - [sym_scriptencoding_statement] = STATE(2338), - [sym_cnext_statement] = STATE(2338), - [sym_cprevious_statement] = STATE(2338), - [sym_runtime_statement] = STATE(2338), - [sym_wincmd_statement] = STATE(2338), - [sym_source_statement] = STATE(2338), - [sym_global_statement] = STATE(2338), - [sym_filetype_statement] = STATE(2338), - [sym_colorscheme_statement] = STATE(2338), - [sym_lua_statement] = STATE(2338), - [sym_ruby_statement] = STATE(2338), - [sym_python_statement] = STATE(2338), - [sym_perl_statement] = STATE(2338), - [sym_for_loop] = STATE(2338), - [sym_while_loop] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_try_statement] = STATE(2338), - [sym_throw_statement] = STATE(2338), - [sym_bang_filter_statement] = STATE(2338), - [sym_let_statement] = STATE(2338), - [sym_const_statement] = STATE(2338), - [sym_set_statement] = STATE(2338), - [sym_setlocal_statement] = STATE(2338), - [sym_unlet_statement] = STATE(2338), - [sym_call_statement] = STATE(2338), - [sym_echo_statement] = STATE(2338), - [sym_echon_statement] = STATE(2338), - [sym_echohl_statement] = STATE(2338), - [sym_echomsg_statement] = STATE(2338), - [sym_echoerr_statement] = STATE(2338), - [sym_execute_statement] = STATE(2338), - [sym_silent_statement] = STATE(2338), - [sym_vertical_statement] = STATE(2338), - [sym_topleft_statement] = STATE(2338), - [sym_botright_statement] = STATE(2338), - [sym_aboveleft_statement] = STATE(2338), - [sym_belowright_statement] = STATE(2338), - [sym_user_command] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_range_statement] = STATE(2338), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2338), - [sym_map_statement] = STATE(2338), - [sym_sign_statement] = STATE(2338), - [sym_eval_statement] = STATE(2338), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2338), - [sym_augroup_statement] = STATE(2338), - [sym_command_statement] = STATE(2338), - [sym_comclear_statement] = STATE(2338), - [sym_delcommand_statement] = STATE(2338), - [sym_highlight_statement] = STATE(2338), - [sym_syntax_statement] = STATE(2338), - [sym_edit_statement] = STATE(2338), - [sym_enew_statement] = STATE(2338), - [sym_find_statement] = STATE(2338), - [sym_ex_statement] = STATE(2338), - [sym_visual_statement] = STATE(2338), - [sym_view_statement] = STATE(2338), - [aux_sym__statement_repeat1] = STATE(92), + [15] = { + [sym__cmd_separator] = STATE(105), + [aux_sym__separated_statements] = STATE(10), + [sym__statement] = STATE(2361), + [sym_unknown_builtin_statement] = STATE(2361), + [sym_return_statement] = STATE(2361), + [sym_break_statement] = STATE(2361), + [sym_continue_statement] = STATE(2361), + [sym_normal_statement] = STATE(2361), + [sym_setfiletype_statement] = STATE(2361), + [sym_options_statement] = STATE(2361), + [sym_startinsert_statement] = STATE(2361), + [sym_stopinsert_statement] = STATE(2361), + [sym_scriptencoding_statement] = STATE(2361), + [sym_cnext_statement] = STATE(2361), + [sym_cprevious_statement] = STATE(2361), + [sym_runtime_statement] = STATE(2361), + [sym_wincmd_statement] = STATE(2361), + [sym_source_statement] = STATE(2361), + [sym_global_statement] = STATE(2361), + [sym_filetype_statement] = STATE(2361), + [sym_colorscheme_statement] = STATE(2361), + [sym_lua_statement] = STATE(2361), + [sym_ruby_statement] = STATE(2361), + [sym_python_statement] = STATE(2361), + [sym_perl_statement] = STATE(2361), + [sym_for_loop] = STATE(2361), + [sym_while_loop] = STATE(2361), + [sym_if_statement] = STATE(2361), + [sym_try_statement] = STATE(2361), + [sym_throw_statement] = STATE(2361), + [sym_bang_filter_statement] = STATE(2361), + [sym_let_statement] = STATE(2361), + [sym_const_statement] = STATE(2361), + [sym_set_statement] = STATE(2361), + [sym_setlocal_statement] = STATE(2361), + [sym_unlet_statement] = STATE(2361), + [sym_call_statement] = STATE(2361), + [sym_echo_statement] = STATE(2361), + [sym_echon_statement] = STATE(2361), + [sym_echohl_statement] = STATE(2361), + [sym_echomsg_statement] = STATE(2361), + [sym_echoerr_statement] = STATE(2361), + [sym_execute_statement] = STATE(2361), + [sym_silent_statement] = STATE(2361), + [sym_vertical_statement] = STATE(2361), + [sym_topleft_statement] = STATE(2361), + [sym_botright_statement] = STATE(2361), + [sym_aboveleft_statement] = STATE(2361), + [sym_belowright_statement] = STATE(2361), + [sym_user_command] = STATE(2361), + [sym_function_definition] = STATE(2361), + [sym_range_statement] = STATE(2361), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2361), + [sym_map_statement] = STATE(2361), + [sym_sign_statement] = STATE(2361), + [sym_eval_statement] = STATE(2361), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2361), + [sym_augroup_statement] = STATE(2361), + [sym_command_statement] = STATE(2361), + [sym_comclear_statement] = STATE(2361), + [sym_delcommand_statement] = STATE(2361), + [sym_highlight_statement] = STATE(2361), + [sym_syntax_statement] = STATE(2361), + [sym_edit_statement] = STATE(2361), + [sym_enew_statement] = STATE(2361), + [sym_find_statement] = STATE(2361), + [sym_ex_statement] = STATE(2361), + [sym_visual_statement] = STATE(2361), + [sym_view_statement] = STATE(2361), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -54063,13 +53913,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(425), + [sym__else] = ACTIONS(425), + [sym__endif] = ACTIONS(425), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(427), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__finally] = ACTIONS(427), - [sym__endtry] = ACTIONS(427), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -54148,275 +53998,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [17] = { + [16] = { [sym__cmd_separator] = STATE(102), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2373), - [sym_unknown_builtin_statement] = STATE(2373), - [sym_return_statement] = STATE(2373), - [sym_break_statement] = STATE(2373), - [sym_continue_statement] = STATE(2373), - [sym_normal_statement] = STATE(2373), - [sym_setfiletype_statement] = STATE(2373), - [sym_options_statement] = STATE(2373), - [sym_startinsert_statement] = STATE(2373), - [sym_stopinsert_statement] = STATE(2373), - [sym_scriptencoding_statement] = STATE(2373), - [sym_cnext_statement] = STATE(2373), - [sym_cprevious_statement] = STATE(2373), - [sym_runtime_statement] = STATE(2373), - [sym_wincmd_statement] = STATE(2373), - [sym_source_statement] = STATE(2373), - [sym_global_statement] = STATE(2373), - [sym_filetype_statement] = STATE(2373), - [sym_colorscheme_statement] = STATE(2373), - [sym_lua_statement] = STATE(2373), - [sym_ruby_statement] = STATE(2373), - [sym_python_statement] = STATE(2373), - [sym_perl_statement] = STATE(2373), - [sym_for_loop] = STATE(2373), - [sym_while_loop] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_try_statement] = STATE(2373), - [sym_throw_statement] = STATE(2373), - [sym_bang_filter_statement] = STATE(2373), - [sym_let_statement] = STATE(2373), - [sym_const_statement] = STATE(2373), - [sym_set_statement] = STATE(2373), - [sym_setlocal_statement] = STATE(2373), - [sym_unlet_statement] = STATE(2373), - [sym_call_statement] = STATE(2373), - [sym_echo_statement] = STATE(2373), - [sym_echon_statement] = STATE(2373), - [sym_echohl_statement] = STATE(2373), - [sym_echomsg_statement] = STATE(2373), - [sym_echoerr_statement] = STATE(2373), - [sym_execute_statement] = STATE(2373), - [sym_silent_statement] = STATE(2373), - [sym_vertical_statement] = STATE(2373), - [sym_topleft_statement] = STATE(2373), - [sym_botright_statement] = STATE(2373), - [sym_aboveleft_statement] = STATE(2373), - [sym_belowright_statement] = STATE(2373), - [sym_user_command] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_range_statement] = STATE(2373), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2373), - [sym_map_statement] = STATE(2373), - [sym_sign_statement] = STATE(2373), - [sym_eval_statement] = STATE(2373), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2373), - [sym_augroup_statement] = STATE(2373), - [sym_command_statement] = STATE(2373), - [sym_comclear_statement] = STATE(2373), - [sym_delcommand_statement] = STATE(2373), - [sym_highlight_statement] = STATE(2373), - [sym_syntax_statement] = STATE(2373), - [sym_edit_statement] = STATE(2373), - [sym_enew_statement] = STATE(2373), - [sym_find_statement] = STATE(2373), - [sym_ex_statement] = STATE(2373), - [sym_visual_statement] = STATE(2373), - [sym_view_statement] = STATE(2373), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(429), + [aux_sym__separated_statements] = STATE(16), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(427), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(429), + [sym_comment] = ACTIONS(427), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__elseif] = ACTIONS(249), - [sym__else] = ACTIONS(249), - [sym__endif] = ACTIONS(249), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__try] = ACTIONS(240), + [sym__catch] = ACTIONS(238), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__finally] = ACTIONS(238), + [sym__endtry] = ACTIONS(238), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), }, - [18] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(39), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [17] = { + [sym__cmd_separator] = STATE(102), + [aux_sym__separated_statements] = STATE(13), + [sym__statement] = STATE(2464), + [sym_unknown_builtin_statement] = STATE(2464), + [sym_return_statement] = STATE(2464), + [sym_break_statement] = STATE(2464), + [sym_continue_statement] = STATE(2464), + [sym_normal_statement] = STATE(2464), + [sym_setfiletype_statement] = STATE(2464), + [sym_options_statement] = STATE(2464), + [sym_startinsert_statement] = STATE(2464), + [sym_stopinsert_statement] = STATE(2464), + [sym_scriptencoding_statement] = STATE(2464), + [sym_cnext_statement] = STATE(2464), + [sym_cprevious_statement] = STATE(2464), + [sym_runtime_statement] = STATE(2464), + [sym_wincmd_statement] = STATE(2464), + [sym_source_statement] = STATE(2464), + [sym_global_statement] = STATE(2464), + [sym_filetype_statement] = STATE(2464), + [sym_colorscheme_statement] = STATE(2464), + [sym_lua_statement] = STATE(2464), + [sym_ruby_statement] = STATE(2464), + [sym_python_statement] = STATE(2464), + [sym_perl_statement] = STATE(2464), + [sym_for_loop] = STATE(2464), + [sym_while_loop] = STATE(2464), + [sym_if_statement] = STATE(2464), + [sym_try_statement] = STATE(2464), + [sym_throw_statement] = STATE(2464), + [sym_bang_filter_statement] = STATE(2464), + [sym_let_statement] = STATE(2464), + [sym_const_statement] = STATE(2464), + [sym_set_statement] = STATE(2464), + [sym_setlocal_statement] = STATE(2464), + [sym_unlet_statement] = STATE(2464), + [sym_call_statement] = STATE(2464), + [sym_echo_statement] = STATE(2464), + [sym_echon_statement] = STATE(2464), + [sym_echohl_statement] = STATE(2464), + [sym_echomsg_statement] = STATE(2464), + [sym_echoerr_statement] = STATE(2464), + [sym_execute_statement] = STATE(2464), + [sym_silent_statement] = STATE(2464), + [sym_vertical_statement] = STATE(2464), + [sym_topleft_statement] = STATE(2464), + [sym_botright_statement] = STATE(2464), + [sym_aboveleft_statement] = STATE(2464), + [sym_belowright_statement] = STATE(2464), + [sym_user_command] = STATE(2464), + [sym_function_definition] = STATE(2464), + [sym_range_statement] = STATE(2464), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2464), + [sym_map_statement] = STATE(2464), + [sym_sign_statement] = STATE(2464), + [sym_eval_statement] = STATE(2464), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2464), + [sym_augroup_statement] = STATE(2464), + [sym_command_statement] = STATE(2464), + [sym_comclear_statement] = STATE(2464), + [sym_delcommand_statement] = STATE(2464), + [sym_highlight_statement] = STATE(2464), + [sym_syntax_statement] = STATE(2464), + [sym_edit_statement] = STATE(2464), + [sym_enew_statement] = STATE(2464), + [sym_find_statement] = STATE(2464), + [sym_ex_statement] = STATE(2464), + [sym_visual_statement] = STATE(2464), + [sym_view_statement] = STATE(2464), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -54431,19 +54281,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(167), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(167), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(434), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(430), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), + [sym__finally] = ACTIONS(430), + [sym__endtry] = ACTIONS(430), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -54522,87 +54374,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [19] = { - [sym__cmd_separator] = STATE(114), - [aux_sym__separated_statements] = STATE(45), - [sym__statement] = STATE(2281), - [sym_unknown_builtin_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2281), - [sym_normal_statement] = STATE(2281), - [sym_setfiletype_statement] = STATE(2281), - [sym_options_statement] = STATE(2281), - [sym_startinsert_statement] = STATE(2281), - [sym_stopinsert_statement] = STATE(2281), - [sym_scriptencoding_statement] = STATE(2281), - [sym_cnext_statement] = STATE(2281), - [sym_cprevious_statement] = STATE(2281), - [sym_runtime_statement] = STATE(2281), - [sym_wincmd_statement] = STATE(2281), - [sym_source_statement] = STATE(2281), - [sym_global_statement] = STATE(2281), - [sym_filetype_statement] = STATE(2281), - [sym_colorscheme_statement] = STATE(2281), - [sym_lua_statement] = STATE(2281), - [sym_ruby_statement] = STATE(2281), - [sym_python_statement] = STATE(2281), - [sym_perl_statement] = STATE(2281), - [sym_for_loop] = STATE(2281), - [sym_while_loop] = STATE(2281), - [sym_if_statement] = STATE(2281), - [sym_try_statement] = STATE(2281), - [sym_throw_statement] = STATE(2281), - [sym_bang_filter_statement] = STATE(2281), - [sym_let_statement] = STATE(2281), - [sym_const_statement] = STATE(2281), - [sym_set_statement] = STATE(2281), - [sym_setlocal_statement] = STATE(2281), - [sym_unlet_statement] = STATE(2281), - [sym_call_statement] = STATE(2281), - [sym_echo_statement] = STATE(2281), - [sym_echon_statement] = STATE(2281), - [sym_echohl_statement] = STATE(2281), - [sym_echomsg_statement] = STATE(2281), - [sym_echoerr_statement] = STATE(2281), - [sym_execute_statement] = STATE(2281), - [sym_silent_statement] = STATE(2281), - [sym_vertical_statement] = STATE(2281), - [sym_topleft_statement] = STATE(2281), - [sym_botright_statement] = STATE(2281), - [sym_aboveleft_statement] = STATE(2281), - [sym_belowright_statement] = STATE(2281), - [sym_user_command] = STATE(2281), - [sym_function_definition] = STATE(2281), - [sym_range_statement] = STATE(2281), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2281), - [sym_map_statement] = STATE(2281), - [sym_sign_statement] = STATE(2281), - [sym_eval_statement] = STATE(2281), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2281), - [sym_augroup_statement] = STATE(2281), - [sym_command_statement] = STATE(2281), - [sym_comclear_statement] = STATE(2281), - [sym_delcommand_statement] = STATE(2281), - [sym_highlight_statement] = STATE(2281), - [sym_syntax_statement] = STATE(2281), - [sym_edit_statement] = STATE(2281), - [sym_enew_statement] = STATE(2281), - [sym_find_statement] = STATE(2281), - [sym_ex_statement] = STATE(2281), - [sym_visual_statement] = STATE(2281), - [sym_view_statement] = STATE(2281), - [aux_sym__statement_repeat1] = STATE(92), + [18] = { + [sym__cmd_separator] = STATE(116), + [aux_sym__separated_statements] = STATE(21), + [sym__statement] = STATE(2617), + [sym_unknown_builtin_statement] = STATE(2617), + [sym_return_statement] = STATE(2617), + [sym_break_statement] = STATE(2617), + [sym_continue_statement] = STATE(2617), + [sym_normal_statement] = STATE(2617), + [sym_setfiletype_statement] = STATE(2617), + [sym_options_statement] = STATE(2617), + [sym_startinsert_statement] = STATE(2617), + [sym_stopinsert_statement] = STATE(2617), + [sym_scriptencoding_statement] = STATE(2617), + [sym_cnext_statement] = STATE(2617), + [sym_cprevious_statement] = STATE(2617), + [sym_runtime_statement] = STATE(2617), + [sym_wincmd_statement] = STATE(2617), + [sym_source_statement] = STATE(2617), + [sym_global_statement] = STATE(2617), + [sym_filetype_statement] = STATE(2617), + [sym_colorscheme_statement] = STATE(2617), + [sym_lua_statement] = STATE(2617), + [sym_ruby_statement] = STATE(2617), + [sym_python_statement] = STATE(2617), + [sym_perl_statement] = STATE(2617), + [sym_for_loop] = STATE(2617), + [sym_while_loop] = STATE(2617), + [sym_if_statement] = STATE(2617), + [sym_try_statement] = STATE(2617), + [sym_throw_statement] = STATE(2617), + [sym_bang_filter_statement] = STATE(2617), + [sym_let_statement] = STATE(2617), + [sym_const_statement] = STATE(2617), + [sym_set_statement] = STATE(2617), + [sym_setlocal_statement] = STATE(2617), + [sym_unlet_statement] = STATE(2617), + [sym_call_statement] = STATE(2617), + [sym_echo_statement] = STATE(2617), + [sym_echon_statement] = STATE(2617), + [sym_echohl_statement] = STATE(2617), + [sym_echomsg_statement] = STATE(2617), + [sym_echoerr_statement] = STATE(2617), + [sym_execute_statement] = STATE(2617), + [sym_silent_statement] = STATE(2617), + [sym_vertical_statement] = STATE(2617), + [sym_topleft_statement] = STATE(2617), + [sym_botright_statement] = STATE(2617), + [sym_aboveleft_statement] = STATE(2617), + [sym_belowright_statement] = STATE(2617), + [sym_user_command] = STATE(2617), + [sym_function_definition] = STATE(2617), + [sym_range_statement] = STATE(2617), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2617), + [sym_map_statement] = STATE(2617), + [sym_sign_statement] = STATE(2617), + [sym_eval_statement] = STATE(2617), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2617), + [sym_augroup_statement] = STATE(2617), + [sym_command_statement] = STATE(2617), + [sym_comclear_statement] = STATE(2617), + [sym_delcommand_statement] = STATE(2617), + [sym_highlight_statement] = STATE(2617), + [sym_syntax_statement] = STATE(2617), + [sym_edit_statement] = STATE(2617), + [sym_enew_statement] = STATE(2617), + [sym_find_statement] = STATE(2617), + [sym_ex_statement] = STATE(2617), + [sym_visual_statement] = STATE(2617), + [sym_view_statement] = STATE(2617), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -54617,14 +54469,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(436), + [sym__newline_or_pipe] = ACTIONS(432), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(436), + [sym_comment] = ACTIONS(432), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), - [sym__endfor] = ACTIONS(438), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(434), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -54708,87 +54560,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [20] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [19] = { + [sym__cmd_separator] = STATE(114), + [aux_sym__separated_statements] = STATE(39), + [sym__statement] = STATE(2570), + [sym_unknown_builtin_statement] = STATE(2570), + [sym_return_statement] = STATE(2570), + [sym_break_statement] = STATE(2570), + [sym_continue_statement] = STATE(2570), + [sym_normal_statement] = STATE(2570), + [sym_setfiletype_statement] = STATE(2570), + [sym_options_statement] = STATE(2570), + [sym_startinsert_statement] = STATE(2570), + [sym_stopinsert_statement] = STATE(2570), + [sym_scriptencoding_statement] = STATE(2570), + [sym_cnext_statement] = STATE(2570), + [sym_cprevious_statement] = STATE(2570), + [sym_runtime_statement] = STATE(2570), + [sym_wincmd_statement] = STATE(2570), + [sym_source_statement] = STATE(2570), + [sym_global_statement] = STATE(2570), + [sym_filetype_statement] = STATE(2570), + [sym_colorscheme_statement] = STATE(2570), + [sym_lua_statement] = STATE(2570), + [sym_ruby_statement] = STATE(2570), + [sym_python_statement] = STATE(2570), + [sym_perl_statement] = STATE(2570), + [sym_for_loop] = STATE(2570), + [sym_while_loop] = STATE(2570), + [sym_if_statement] = STATE(2570), + [sym_try_statement] = STATE(2570), + [sym_throw_statement] = STATE(2570), + [sym_bang_filter_statement] = STATE(2570), + [sym_let_statement] = STATE(2570), + [sym_const_statement] = STATE(2570), + [sym_set_statement] = STATE(2570), + [sym_setlocal_statement] = STATE(2570), + [sym_unlet_statement] = STATE(2570), + [sym_call_statement] = STATE(2570), + [sym_echo_statement] = STATE(2570), + [sym_echon_statement] = STATE(2570), + [sym_echohl_statement] = STATE(2570), + [sym_echomsg_statement] = STATE(2570), + [sym_echoerr_statement] = STATE(2570), + [sym_execute_statement] = STATE(2570), + [sym_silent_statement] = STATE(2570), + [sym_vertical_statement] = STATE(2570), + [sym_topleft_statement] = STATE(2570), + [sym_botright_statement] = STATE(2570), + [sym_aboveleft_statement] = STATE(2570), + [sym_belowright_statement] = STATE(2570), + [sym_user_command] = STATE(2570), + [sym_function_definition] = STATE(2570), + [sym_range_statement] = STATE(2570), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2570), + [sym_map_statement] = STATE(2570), + [sym_sign_statement] = STATE(2570), + [sym_eval_statement] = STATE(2570), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2570), + [sym_augroup_statement] = STATE(2570), + [sym_command_statement] = STATE(2570), + [sym_comclear_statement] = STATE(2570), + [sym_delcommand_statement] = STATE(2570), + [sym_highlight_statement] = STATE(2570), + [sym_syntax_statement] = STATE(2570), + [sym_edit_statement] = STATE(2570), + [sym_enew_statement] = STATE(2570), + [sym_find_statement] = STATE(2570), + [sym_ex_statement] = STATE(2570), + [sym_visual_statement] = STATE(2570), + [sym_view_statement] = STATE(2570), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -54803,15 +54655,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(436), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(436), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(440), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__endif] = ACTIONS(438), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), @@ -54894,87 +54746,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [21] = { + [20] = { [sym__cmd_separator] = STATE(109), - [aux_sym__separated_statements] = STATE(38), - [sym__statement] = STATE(2583), - [sym_unknown_builtin_statement] = STATE(2583), - [sym_return_statement] = STATE(2583), - [sym_break_statement] = STATE(2583), - [sym_continue_statement] = STATE(2583), - [sym_normal_statement] = STATE(2583), - [sym_setfiletype_statement] = STATE(2583), - [sym_options_statement] = STATE(2583), - [sym_startinsert_statement] = STATE(2583), - [sym_stopinsert_statement] = STATE(2583), - [sym_scriptencoding_statement] = STATE(2583), - [sym_cnext_statement] = STATE(2583), - [sym_cprevious_statement] = STATE(2583), - [sym_runtime_statement] = STATE(2583), - [sym_wincmd_statement] = STATE(2583), - [sym_source_statement] = STATE(2583), - [sym_global_statement] = STATE(2583), - [sym_filetype_statement] = STATE(2583), - [sym_colorscheme_statement] = STATE(2583), - [sym_lua_statement] = STATE(2583), - [sym_ruby_statement] = STATE(2583), - [sym_python_statement] = STATE(2583), - [sym_perl_statement] = STATE(2583), - [sym_for_loop] = STATE(2583), - [sym_while_loop] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_try_statement] = STATE(2583), - [sym_throw_statement] = STATE(2583), - [sym_bang_filter_statement] = STATE(2583), - [sym_let_statement] = STATE(2583), - [sym_const_statement] = STATE(2583), - [sym_set_statement] = STATE(2583), - [sym_setlocal_statement] = STATE(2583), - [sym_unlet_statement] = STATE(2583), - [sym_call_statement] = STATE(2583), - [sym_echo_statement] = STATE(2583), - [sym_echon_statement] = STATE(2583), - [sym_echohl_statement] = STATE(2583), - [sym_echomsg_statement] = STATE(2583), - [sym_echoerr_statement] = STATE(2583), - [sym_execute_statement] = STATE(2583), - [sym_silent_statement] = STATE(2583), - [sym_vertical_statement] = STATE(2583), - [sym_topleft_statement] = STATE(2583), - [sym_botright_statement] = STATE(2583), - [sym_aboveleft_statement] = STATE(2583), - [sym_belowright_statement] = STATE(2583), - [sym_user_command] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_range_statement] = STATE(2583), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2583), - [sym_map_statement] = STATE(2583), - [sym_sign_statement] = STATE(2583), - [sym_eval_statement] = STATE(2583), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2583), - [sym_augroup_statement] = STATE(2583), - [sym_command_statement] = STATE(2583), - [sym_comclear_statement] = STATE(2583), - [sym_delcommand_statement] = STATE(2583), - [sym_highlight_statement] = STATE(2583), - [sym_syntax_statement] = STATE(2583), - [sym_edit_statement] = STATE(2583), - [sym_enew_statement] = STATE(2583), - [sym_find_statement] = STATE(2583), - [sym_ex_statement] = STATE(2583), - [sym_visual_statement] = STATE(2583), - [sym_view_statement] = STATE(2583), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -54989,14 +54841,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(442), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(442), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(442), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(444), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -55080,459 +54932,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [22] = { - [sym__statement] = STATE(2278), - [sym_unknown_builtin_statement] = STATE(2278), - [sym_return_statement] = STATE(2278), - [sym_break_statement] = STATE(2278), - [sym_continue_statement] = STATE(2278), - [sym_normal_statement] = STATE(2278), - [sym_setfiletype_statement] = STATE(2278), - [sym_options_statement] = STATE(2278), - [sym_startinsert_statement] = STATE(2278), - [sym_stopinsert_statement] = STATE(2278), - [sym_scriptencoding_statement] = STATE(2278), - [sym_cnext_statement] = STATE(2278), - [sym_cprevious_statement] = STATE(2278), - [sym_runtime_statement] = STATE(2278), - [sym_wincmd_statement] = STATE(2278), - [sym_source_statement] = STATE(2278), - [sym_global_statement] = STATE(2278), - [sym_filetype_statement] = STATE(2278), - [sym_colorscheme_statement] = STATE(2278), - [sym_lua_statement] = STATE(2278), - [sym_ruby_statement] = STATE(2278), - [sym_python_statement] = STATE(2278), - [sym_perl_statement] = STATE(2278), - [sym_for_loop] = STATE(2278), - [sym_while_loop] = STATE(2278), - [sym_if_statement] = STATE(2278), - [sym_try_statement] = STATE(2278), - [sym_throw_statement] = STATE(2278), - [sym_bang_filter_statement] = STATE(2278), - [sym_let_statement] = STATE(2278), - [sym_const_statement] = STATE(2278), - [sym_set_statement] = STATE(2278), - [sym_setlocal_statement] = STATE(2278), - [sym_unlet_statement] = STATE(2278), - [sym_call_statement] = STATE(2278), - [sym_echo_statement] = STATE(2278), - [sym_echon_statement] = STATE(2278), - [sym_echohl_statement] = STATE(2278), - [sym_echomsg_statement] = STATE(2278), - [sym_echoerr_statement] = STATE(2278), - [sym_execute_statement] = STATE(2278), - [sym_silent_statement] = STATE(2278), - [sym_vertical_statement] = STATE(2278), - [sym_topleft_statement] = STATE(2278), - [sym_botright_statement] = STATE(2278), - [sym_aboveleft_statement] = STATE(2278), - [sym_belowright_statement] = STATE(2278), - [sym_user_command] = STATE(2278), - [sym_function_definition] = STATE(2278), - [sym_range_statement] = STATE(2278), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2278), - [sym_map_statement] = STATE(2278), - [sym_sign_statement] = STATE(2278), - [sym_eval_statement] = STATE(2278), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2278), - [sym_augroup_statement] = STATE(2278), - [sym_command_statement] = STATE(2278), - [sym_comclear_statement] = STATE(2278), - [sym_delcommand_statement] = STATE(2278), - [sym_highlight_statement] = STATE(2278), - [sym_syntax_statement] = STATE(2278), - [sym_edit_statement] = STATE(2278), - [sym_enew_statement] = STATE(2278), - [sym_find_statement] = STATE(2278), - [sym_ex_statement] = STATE(2278), - [sym_visual_statement] = STATE(2278), - [sym_view_statement] = STATE(2278), + [21] = { + [sym__cmd_separator] = STATE(116), + [aux_sym__separated_statements] = STATE(46), + [sym__statement] = STATE(2617), + [sym_unknown_builtin_statement] = STATE(2617), + [sym_return_statement] = STATE(2617), + [sym_break_statement] = STATE(2617), + [sym_continue_statement] = STATE(2617), + [sym_normal_statement] = STATE(2617), + [sym_setfiletype_statement] = STATE(2617), + [sym_options_statement] = STATE(2617), + [sym_startinsert_statement] = STATE(2617), + [sym_stopinsert_statement] = STATE(2617), + [sym_scriptencoding_statement] = STATE(2617), + [sym_cnext_statement] = STATE(2617), + [sym_cprevious_statement] = STATE(2617), + [sym_runtime_statement] = STATE(2617), + [sym_wincmd_statement] = STATE(2617), + [sym_source_statement] = STATE(2617), + [sym_global_statement] = STATE(2617), + [sym_filetype_statement] = STATE(2617), + [sym_colorscheme_statement] = STATE(2617), + [sym_lua_statement] = STATE(2617), + [sym_ruby_statement] = STATE(2617), + [sym_python_statement] = STATE(2617), + [sym_perl_statement] = STATE(2617), + [sym_for_loop] = STATE(2617), + [sym_while_loop] = STATE(2617), + [sym_if_statement] = STATE(2617), + [sym_try_statement] = STATE(2617), + [sym_throw_statement] = STATE(2617), + [sym_bang_filter_statement] = STATE(2617), + [sym_let_statement] = STATE(2617), + [sym_const_statement] = STATE(2617), + [sym_set_statement] = STATE(2617), + [sym_setlocal_statement] = STATE(2617), + [sym_unlet_statement] = STATE(2617), + [sym_call_statement] = STATE(2617), + [sym_echo_statement] = STATE(2617), + [sym_echon_statement] = STATE(2617), + [sym_echohl_statement] = STATE(2617), + [sym_echomsg_statement] = STATE(2617), + [sym_echoerr_statement] = STATE(2617), + [sym_execute_statement] = STATE(2617), + [sym_silent_statement] = STATE(2617), + [sym_vertical_statement] = STATE(2617), + [sym_topleft_statement] = STATE(2617), + [sym_botright_statement] = STATE(2617), + [sym_aboveleft_statement] = STATE(2617), + [sym_belowright_statement] = STATE(2617), + [sym_user_command] = STATE(2617), + [sym_function_definition] = STATE(2617), + [sym_range_statement] = STATE(2617), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2617), + [sym_map_statement] = STATE(2617), + [sym_sign_statement] = STATE(2617), + [sym_eval_statement] = STATE(2617), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2617), + [sym_augroup_statement] = STATE(2617), + [sym_command_statement] = STATE(2617), + [sym_comclear_statement] = STATE(2617), + [sym_delcommand_statement] = STATE(2617), + [sym_highlight_statement] = STATE(2617), + [sym_syntax_statement] = STATE(2617), + [sym_edit_statement] = STATE(2617), + [sym_enew_statement] = STATE(2617), + [sym_find_statement] = STATE(2617), + [sym_ex_statement] = STATE(2617), + [sym_visual_statement] = STATE(2617), + [sym_view_statement] = STATE(2617), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [anon_sym_BSLASH_PIPE] = ACTIONS(464), - [aux_sym__map_rhs_statement_token2] = ACTIONS(464), - [aux_sym__map_rhs_statement_token3] = ACTIONS(464), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_au_once] = ACTIONS(470), - [sym_au_nested] = ACTIONS(472), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [23] = { - [sym__cmd_separator] = STATE(112), - [aux_sym__separated_statements] = STATE(23), - [sym__statement] = STATE(2391), - [sym_unknown_builtin_statement] = STATE(2391), - [sym_return_statement] = STATE(2391), - [sym_break_statement] = STATE(2391), - [sym_continue_statement] = STATE(2391), - [sym_normal_statement] = STATE(2391), - [sym_setfiletype_statement] = STATE(2391), - [sym_options_statement] = STATE(2391), - [sym_startinsert_statement] = STATE(2391), - [sym_stopinsert_statement] = STATE(2391), - [sym_scriptencoding_statement] = STATE(2391), - [sym_cnext_statement] = STATE(2391), - [sym_cprevious_statement] = STATE(2391), - [sym_runtime_statement] = STATE(2391), - [sym_wincmd_statement] = STATE(2391), - [sym_source_statement] = STATE(2391), - [sym_global_statement] = STATE(2391), - [sym_filetype_statement] = STATE(2391), - [sym_colorscheme_statement] = STATE(2391), - [sym_lua_statement] = STATE(2391), - [sym_ruby_statement] = STATE(2391), - [sym_python_statement] = STATE(2391), - [sym_perl_statement] = STATE(2391), - [sym_for_loop] = STATE(2391), - [sym_while_loop] = STATE(2391), - [sym_if_statement] = STATE(2391), - [sym_try_statement] = STATE(2391), - [sym_throw_statement] = STATE(2391), - [sym_bang_filter_statement] = STATE(2391), - [sym_let_statement] = STATE(2391), - [sym_const_statement] = STATE(2391), - [sym_set_statement] = STATE(2391), - [sym_setlocal_statement] = STATE(2391), - [sym_unlet_statement] = STATE(2391), - [sym_call_statement] = STATE(2391), - [sym_echo_statement] = STATE(2391), - [sym_echon_statement] = STATE(2391), - [sym_echohl_statement] = STATE(2391), - [sym_echomsg_statement] = STATE(2391), - [sym_echoerr_statement] = STATE(2391), - [sym_execute_statement] = STATE(2391), - [sym_silent_statement] = STATE(2391), - [sym_vertical_statement] = STATE(2391), - [sym_topleft_statement] = STATE(2391), - [sym_botright_statement] = STATE(2391), - [sym_aboveleft_statement] = STATE(2391), - [sym_belowright_statement] = STATE(2391), - [sym_user_command] = STATE(2391), - [sym_function_definition] = STATE(2391), - [sym_range_statement] = STATE(2391), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2391), - [sym_map_statement] = STATE(2391), - [sym_sign_statement] = STATE(2391), - [sym_eval_statement] = STATE(2391), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2391), - [sym_augroup_statement] = STATE(2391), - [sym_command_statement] = STATE(2391), - [sym_comclear_statement] = STATE(2391), - [sym_delcommand_statement] = STATE(2391), - [sym_highlight_statement] = STATE(2391), - [sym_syntax_statement] = STATE(2391), - [sym_edit_statement] = STATE(2391), - [sym_enew_statement] = STATE(2391), - [sym_find_statement] = STATE(2391), - [sym_ex_statement] = STATE(2391), - [sym_visual_statement] = STATE(2391), - [sym_view_statement] = STATE(2391), - [aux_sym__statement_repeat1] = STATE(92), - [ts_builtin_sym_end] = ACTIONS(249), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(602), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(602), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), - }, - [24] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(20), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -55552,9 +55032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(432), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(605), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(444), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -55638,87 +55118,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [25] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(34), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [22] = { + [sym__cmd_separator] = STATE(112), + [aux_sym__separated_statements] = STATE(43), + [sym__statement] = STATE(2350), + [sym_unknown_builtin_statement] = STATE(2350), + [sym_return_statement] = STATE(2350), + [sym_break_statement] = STATE(2350), + [sym_continue_statement] = STATE(2350), + [sym_normal_statement] = STATE(2350), + [sym_setfiletype_statement] = STATE(2350), + [sym_options_statement] = STATE(2350), + [sym_startinsert_statement] = STATE(2350), + [sym_stopinsert_statement] = STATE(2350), + [sym_scriptencoding_statement] = STATE(2350), + [sym_cnext_statement] = STATE(2350), + [sym_cprevious_statement] = STATE(2350), + [sym_runtime_statement] = STATE(2350), + [sym_wincmd_statement] = STATE(2350), + [sym_source_statement] = STATE(2350), + [sym_global_statement] = STATE(2350), + [sym_filetype_statement] = STATE(2350), + [sym_colorscheme_statement] = STATE(2350), + [sym_lua_statement] = STATE(2350), + [sym_ruby_statement] = STATE(2350), + [sym_python_statement] = STATE(2350), + [sym_perl_statement] = STATE(2350), + [sym_for_loop] = STATE(2350), + [sym_while_loop] = STATE(2350), + [sym_if_statement] = STATE(2350), + [sym_try_statement] = STATE(2350), + [sym_throw_statement] = STATE(2350), + [sym_bang_filter_statement] = STATE(2350), + [sym_let_statement] = STATE(2350), + [sym_const_statement] = STATE(2350), + [sym_set_statement] = STATE(2350), + [sym_setlocal_statement] = STATE(2350), + [sym_unlet_statement] = STATE(2350), + [sym_call_statement] = STATE(2350), + [sym_echo_statement] = STATE(2350), + [sym_echon_statement] = STATE(2350), + [sym_echohl_statement] = STATE(2350), + [sym_echomsg_statement] = STATE(2350), + [sym_echoerr_statement] = STATE(2350), + [sym_execute_statement] = STATE(2350), + [sym_silent_statement] = STATE(2350), + [sym_vertical_statement] = STATE(2350), + [sym_topleft_statement] = STATE(2350), + [sym_botright_statement] = STATE(2350), + [sym_aboveleft_statement] = STATE(2350), + [sym_belowright_statement] = STATE(2350), + [sym_user_command] = STATE(2350), + [sym_function_definition] = STATE(2350), + [sym_range_statement] = STATE(2350), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2350), + [sym_map_statement] = STATE(2350), + [sym_sign_statement] = STATE(2350), + [sym_eval_statement] = STATE(2350), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2350), + [sym_augroup_statement] = STATE(2350), + [sym_command_statement] = STATE(2350), + [sym_comclear_statement] = STATE(2350), + [sym_delcommand_statement] = STATE(2350), + [sym_highlight_statement] = STATE(2350), + [sym_syntax_statement] = STATE(2350), + [sym_edit_statement] = STATE(2350), + [sym_enew_statement] = STATE(2350), + [sym_find_statement] = STATE(2350), + [sym_ex_statement] = STATE(2350), + [sym_visual_statement] = STATE(2350), + [sym_view_statement] = STATE(2350), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -55733,13 +55213,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(446), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(446), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(607), [sym__for] = ACTIONS(35), + [sym__endfor] = ACTIONS(448), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -55824,87 +55304,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [26] = { - [sym__cmd_separator] = STATE(109), - [aux_sym__separated_statements] = STATE(36), - [sym__statement] = STATE(2583), - [sym_unknown_builtin_statement] = STATE(2583), - [sym_return_statement] = STATE(2583), - [sym_break_statement] = STATE(2583), - [sym_continue_statement] = STATE(2583), - [sym_normal_statement] = STATE(2583), - [sym_setfiletype_statement] = STATE(2583), - [sym_options_statement] = STATE(2583), - [sym_startinsert_statement] = STATE(2583), - [sym_stopinsert_statement] = STATE(2583), - [sym_scriptencoding_statement] = STATE(2583), - [sym_cnext_statement] = STATE(2583), - [sym_cprevious_statement] = STATE(2583), - [sym_runtime_statement] = STATE(2583), - [sym_wincmd_statement] = STATE(2583), - [sym_source_statement] = STATE(2583), - [sym_global_statement] = STATE(2583), - [sym_filetype_statement] = STATE(2583), - [sym_colorscheme_statement] = STATE(2583), - [sym_lua_statement] = STATE(2583), - [sym_ruby_statement] = STATE(2583), - [sym_python_statement] = STATE(2583), - [sym_perl_statement] = STATE(2583), - [sym_for_loop] = STATE(2583), - [sym_while_loop] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_try_statement] = STATE(2583), - [sym_throw_statement] = STATE(2583), - [sym_bang_filter_statement] = STATE(2583), - [sym_let_statement] = STATE(2583), - [sym_const_statement] = STATE(2583), - [sym_set_statement] = STATE(2583), - [sym_setlocal_statement] = STATE(2583), - [sym_unlet_statement] = STATE(2583), - [sym_call_statement] = STATE(2583), - [sym_echo_statement] = STATE(2583), - [sym_echon_statement] = STATE(2583), - [sym_echohl_statement] = STATE(2583), - [sym_echomsg_statement] = STATE(2583), - [sym_echoerr_statement] = STATE(2583), - [sym_execute_statement] = STATE(2583), - [sym_silent_statement] = STATE(2583), - [sym_vertical_statement] = STATE(2583), - [sym_topleft_statement] = STATE(2583), - [sym_botright_statement] = STATE(2583), - [sym_aboveleft_statement] = STATE(2583), - [sym_belowright_statement] = STATE(2583), - [sym_user_command] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_range_statement] = STATE(2583), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2583), - [sym_map_statement] = STATE(2583), - [sym_sign_statement] = STATE(2583), - [sym_eval_statement] = STATE(2583), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2583), - [sym_augroup_statement] = STATE(2583), - [sym_command_statement] = STATE(2583), - [sym_comclear_statement] = STATE(2583), - [sym_delcommand_statement] = STATE(2583), - [sym_highlight_statement] = STATE(2583), - [sym_syntax_statement] = STATE(2583), - [sym_edit_statement] = STATE(2583), - [sym_enew_statement] = STATE(2583), - [sym_find_statement] = STATE(2583), - [sym_ex_statement] = STATE(2583), - [sym_visual_statement] = STATE(2583), - [sym_view_statement] = STATE(2583), + [23] = { + [sym__statement] = STATE(2448), + [sym_unknown_builtin_statement] = STATE(2448), + [sym_return_statement] = STATE(2448), + [sym_break_statement] = STATE(2448), + [sym_continue_statement] = STATE(2448), + [sym_normal_statement] = STATE(2448), + [sym_setfiletype_statement] = STATE(2448), + [sym_options_statement] = STATE(2448), + [sym_startinsert_statement] = STATE(2448), + [sym_stopinsert_statement] = STATE(2448), + [sym_scriptencoding_statement] = STATE(2448), + [sym_cnext_statement] = STATE(2448), + [sym_cprevious_statement] = STATE(2448), + [sym_runtime_statement] = STATE(2448), + [sym_wincmd_statement] = STATE(2448), + [sym_source_statement] = STATE(2448), + [sym_global_statement] = STATE(2448), + [sym_filetype_statement] = STATE(2448), + [sym_colorscheme_statement] = STATE(2448), + [sym_lua_statement] = STATE(2448), + [sym_ruby_statement] = STATE(2448), + [sym_python_statement] = STATE(2448), + [sym_perl_statement] = STATE(2448), + [sym_for_loop] = STATE(2448), + [sym_while_loop] = STATE(2448), + [sym_if_statement] = STATE(2448), + [sym_try_statement] = STATE(2448), + [sym_throw_statement] = STATE(2448), + [sym_bang_filter_statement] = STATE(2448), + [sym_let_statement] = STATE(2448), + [sym_const_statement] = STATE(2448), + [sym_set_statement] = STATE(2448), + [sym_setlocal_statement] = STATE(2448), + [sym_unlet_statement] = STATE(2448), + [sym_call_statement] = STATE(2448), + [sym_echo_statement] = STATE(2448), + [sym_echon_statement] = STATE(2448), + [sym_echohl_statement] = STATE(2448), + [sym_echomsg_statement] = STATE(2448), + [sym_echoerr_statement] = STATE(2448), + [sym_execute_statement] = STATE(2448), + [sym_silent_statement] = STATE(2448), + [sym_vertical_statement] = STATE(2448), + [sym_topleft_statement] = STATE(2448), + [sym_botright_statement] = STATE(2448), + [sym_aboveleft_statement] = STATE(2448), + [sym_belowright_statement] = STATE(2448), + [sym_user_command] = STATE(2448), + [sym_function_definition] = STATE(2448), + [sym_range_statement] = STATE(2448), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2448), + [sym_map_statement] = STATE(2448), + [sym_sign_statement] = STATE(2448), + [sym_eval_statement] = STATE(2448), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2448), + [sym_augroup_statement] = STATE(2448), + [sym_command_statement] = STATE(2448), + [sym_comclear_statement] = STATE(2448), + [sym_delcommand_statement] = STATE(2448), + [sym_highlight_statement] = STATE(2448), + [sym_syntax_statement] = STATE(2448), + [sym_edit_statement] = STATE(2448), + [sym_enew_statement] = STATE(2448), + [sym_find_statement] = STATE(2448), + [sym_ex_statement] = STATE(2448), + [sym_visual_statement] = STATE(2448), + [sym_view_statement] = STATE(2448), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [anon_sym_BSLASH_PIPE] = ACTIONS(468), + [aux_sym__map_rhs_statement_token2] = ACTIONS(468), + [aux_sym__map_rhs_statement_token3] = ACTIONS(468), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_au_once] = ACTIONS(474), + [sym_au_nested] = ACTIONS(476), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [24] = { + [sym__cmd_separator] = STATE(112), + [aux_sym__separated_statements] = STATE(43), + [sym__statement] = STATE(2350), + [sym_unknown_builtin_statement] = STATE(2350), + [sym_return_statement] = STATE(2350), + [sym_break_statement] = STATE(2350), + [sym_continue_statement] = STATE(2350), + [sym_normal_statement] = STATE(2350), + [sym_setfiletype_statement] = STATE(2350), + [sym_options_statement] = STATE(2350), + [sym_startinsert_statement] = STATE(2350), + [sym_stopinsert_statement] = STATE(2350), + [sym_scriptencoding_statement] = STATE(2350), + [sym_cnext_statement] = STATE(2350), + [sym_cprevious_statement] = STATE(2350), + [sym_runtime_statement] = STATE(2350), + [sym_wincmd_statement] = STATE(2350), + [sym_source_statement] = STATE(2350), + [sym_global_statement] = STATE(2350), + [sym_filetype_statement] = STATE(2350), + [sym_colorscheme_statement] = STATE(2350), + [sym_lua_statement] = STATE(2350), + [sym_ruby_statement] = STATE(2350), + [sym_python_statement] = STATE(2350), + [sym_perl_statement] = STATE(2350), + [sym_for_loop] = STATE(2350), + [sym_while_loop] = STATE(2350), + [sym_if_statement] = STATE(2350), + [sym_try_statement] = STATE(2350), + [sym_throw_statement] = STATE(2350), + [sym_bang_filter_statement] = STATE(2350), + [sym_let_statement] = STATE(2350), + [sym_const_statement] = STATE(2350), + [sym_set_statement] = STATE(2350), + [sym_setlocal_statement] = STATE(2350), + [sym_unlet_statement] = STATE(2350), + [sym_call_statement] = STATE(2350), + [sym_echo_statement] = STATE(2350), + [sym_echon_statement] = STATE(2350), + [sym_echohl_statement] = STATE(2350), + [sym_echomsg_statement] = STATE(2350), + [sym_echoerr_statement] = STATE(2350), + [sym_execute_statement] = STATE(2350), + [sym_silent_statement] = STATE(2350), + [sym_vertical_statement] = STATE(2350), + [sym_topleft_statement] = STATE(2350), + [sym_botright_statement] = STATE(2350), + [sym_aboveleft_statement] = STATE(2350), + [sym_belowright_statement] = STATE(2350), + [sym_user_command] = STATE(2350), + [sym_function_definition] = STATE(2350), + [sym_range_statement] = STATE(2350), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2350), + [sym_map_statement] = STATE(2350), + [sym_sign_statement] = STATE(2350), + [sym_eval_statement] = STATE(2350), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2350), + [sym_augroup_statement] = STATE(2350), + [sym_command_statement] = STATE(2350), + [sym_comclear_statement] = STATE(2350), + [sym_delcommand_statement] = STATE(2350), + [sym_highlight_statement] = STATE(2350), + [sym_syntax_statement] = STATE(2350), + [sym_edit_statement] = STATE(2350), + [sym_enew_statement] = STATE(2350), + [sym_find_statement] = STATE(2350), + [sym_ex_statement] = STATE(2350), + [sym_visual_statement] = STATE(2350), + [sym_view_statement] = STATE(2350), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -55919,14 +55585,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(442), + [sym__newline_or_pipe] = ACTIONS(446), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(442), + [sym_comment] = ACTIONS(446), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), + [sym__endfor] = ACTIONS(606), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(609), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -56010,87 +55676,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [27] = { - [sym__cmd_separator] = STATE(108), - [aux_sym__separated_statements] = STATE(40), - [sym__statement] = STATE(2551), - [sym_unknown_builtin_statement] = STATE(2551), - [sym_return_statement] = STATE(2551), - [sym_break_statement] = STATE(2551), - [sym_continue_statement] = STATE(2551), - [sym_normal_statement] = STATE(2551), - [sym_setfiletype_statement] = STATE(2551), - [sym_options_statement] = STATE(2551), - [sym_startinsert_statement] = STATE(2551), - [sym_stopinsert_statement] = STATE(2551), - [sym_scriptencoding_statement] = STATE(2551), - [sym_cnext_statement] = STATE(2551), - [sym_cprevious_statement] = STATE(2551), - [sym_runtime_statement] = STATE(2551), - [sym_wincmd_statement] = STATE(2551), - [sym_source_statement] = STATE(2551), - [sym_global_statement] = STATE(2551), - [sym_filetype_statement] = STATE(2551), - [sym_colorscheme_statement] = STATE(2551), - [sym_lua_statement] = STATE(2551), - [sym_ruby_statement] = STATE(2551), - [sym_python_statement] = STATE(2551), - [sym_perl_statement] = STATE(2551), - [sym_for_loop] = STATE(2551), - [sym_while_loop] = STATE(2551), - [sym_if_statement] = STATE(2551), - [sym_try_statement] = STATE(2551), - [sym_throw_statement] = STATE(2551), - [sym_bang_filter_statement] = STATE(2551), - [sym_let_statement] = STATE(2551), - [sym_const_statement] = STATE(2551), - [sym_set_statement] = STATE(2551), - [sym_setlocal_statement] = STATE(2551), - [sym_unlet_statement] = STATE(2551), - [sym_call_statement] = STATE(2551), - [sym_echo_statement] = STATE(2551), - [sym_echon_statement] = STATE(2551), - [sym_echohl_statement] = STATE(2551), - [sym_echomsg_statement] = STATE(2551), - [sym_echoerr_statement] = STATE(2551), - [sym_execute_statement] = STATE(2551), - [sym_silent_statement] = STATE(2551), - [sym_vertical_statement] = STATE(2551), - [sym_topleft_statement] = STATE(2551), - [sym_botright_statement] = STATE(2551), - [sym_aboveleft_statement] = STATE(2551), - [sym_belowright_statement] = STATE(2551), - [sym_user_command] = STATE(2551), - [sym_function_definition] = STATE(2551), - [sym_range_statement] = STATE(2551), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2551), - [sym_map_statement] = STATE(2551), - [sym_sign_statement] = STATE(2551), - [sym_eval_statement] = STATE(2551), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2551), - [sym_augroup_statement] = STATE(2551), - [sym_command_statement] = STATE(2551), - [sym_comclear_statement] = STATE(2551), - [sym_delcommand_statement] = STATE(2551), - [sym_highlight_statement] = STATE(2551), - [sym_syntax_statement] = STATE(2551), - [sym_edit_statement] = STATE(2551), - [sym_enew_statement] = STATE(2551), - [sym_find_statement] = STATE(2551), - [sym_ex_statement] = STATE(2551), - [sym_visual_statement] = STATE(2551), - [sym_view_statement] = STATE(2551), - [aux_sym__statement_repeat1] = STATE(92), + [25] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(45), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -56105,11 +55771,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(611), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(611), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(608), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -56117,7 +55784,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__endtry] = ACTIONS(613), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -56196,87 +55862,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [28] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [26] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -56291,12 +55957,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(615), + [sym__endfunction] = ACTIONS(610), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -56382,939 +56048,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [29] = { - [sym__statement] = STATE(2278), - [sym_unknown_builtin_statement] = STATE(2278), - [sym_return_statement] = STATE(2278), - [sym_break_statement] = STATE(2278), - [sym_continue_statement] = STATE(2278), - [sym_normal_statement] = STATE(2278), - [sym_setfiletype_statement] = STATE(2278), - [sym_options_statement] = STATE(2278), - [sym_startinsert_statement] = STATE(2278), - [sym_stopinsert_statement] = STATE(2278), - [sym_scriptencoding_statement] = STATE(2278), - [sym_cnext_statement] = STATE(2278), - [sym_cprevious_statement] = STATE(2278), - [sym_runtime_statement] = STATE(2278), - [sym_wincmd_statement] = STATE(2278), - [sym_source_statement] = STATE(2278), - [sym_global_statement] = STATE(2278), - [sym_filetype_statement] = STATE(2278), - [sym_colorscheme_statement] = STATE(2278), - [sym_lua_statement] = STATE(2278), - [sym_ruby_statement] = STATE(2278), - [sym_python_statement] = STATE(2278), - [sym_perl_statement] = STATE(2278), - [sym_for_loop] = STATE(2278), - [sym_while_loop] = STATE(2278), - [sym_if_statement] = STATE(2278), - [sym_try_statement] = STATE(2278), - [sym_throw_statement] = STATE(2278), - [sym_bang_filter_statement] = STATE(2278), - [sym_let_statement] = STATE(2278), - [sym_const_statement] = STATE(2278), - [sym_set_statement] = STATE(2278), - [sym_setlocal_statement] = STATE(2278), - [sym_unlet_statement] = STATE(2278), - [sym_call_statement] = STATE(2278), - [sym_echo_statement] = STATE(2278), - [sym_echon_statement] = STATE(2278), - [sym_echohl_statement] = STATE(2278), - [sym_echomsg_statement] = STATE(2278), - [sym_echoerr_statement] = STATE(2278), - [sym_execute_statement] = STATE(2278), - [sym_silent_statement] = STATE(2278), - [sym_vertical_statement] = STATE(2278), - [sym_topleft_statement] = STATE(2278), - [sym_botright_statement] = STATE(2278), - [sym_aboveleft_statement] = STATE(2278), - [sym_belowright_statement] = STATE(2278), - [sym_user_command] = STATE(2278), - [sym_function_definition] = STATE(2278), - [sym_range_statement] = STATE(2278), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2278), - [sym_map_statement] = STATE(2278), - [sym_sign_statement] = STATE(2278), - [sym_eval_statement] = STATE(2278), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2278), - [sym_augroup_statement] = STATE(2278), - [sym_command_statement] = STATE(2278), - [sym_comclear_statement] = STATE(2278), - [sym_delcommand_statement] = STATE(2278), - [sym_highlight_statement] = STATE(2278), - [sym_syntax_statement] = STATE(2278), - [sym_edit_statement] = STATE(2278), - [sym_enew_statement] = STATE(2278), - [sym_find_statement] = STATE(2278), - [sym_ex_statement] = STATE(2278), - [sym_visual_statement] = STATE(2278), - [sym_view_statement] = STATE(2278), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [anon_sym_BSLASH_PIPE] = ACTIONS(617), - [aux_sym__map_rhs_statement_token2] = ACTIONS(617), - [aux_sym__map_rhs_statement_token3] = ACTIONS(617), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_au_once] = ACTIONS(470), - [sym_au_nested] = ACTIONS(472), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [30] = { - [sym__cmd_separator] = STATE(114), - [aux_sym__separated_statements] = STATE(30), - [sym__statement] = STATE(2281), - [sym_unknown_builtin_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2281), - [sym_normal_statement] = STATE(2281), - [sym_setfiletype_statement] = STATE(2281), - [sym_options_statement] = STATE(2281), - [sym_startinsert_statement] = STATE(2281), - [sym_stopinsert_statement] = STATE(2281), - [sym_scriptencoding_statement] = STATE(2281), - [sym_cnext_statement] = STATE(2281), - [sym_cprevious_statement] = STATE(2281), - [sym_runtime_statement] = STATE(2281), - [sym_wincmd_statement] = STATE(2281), - [sym_source_statement] = STATE(2281), - [sym_global_statement] = STATE(2281), - [sym_filetype_statement] = STATE(2281), - [sym_colorscheme_statement] = STATE(2281), - [sym_lua_statement] = STATE(2281), - [sym_ruby_statement] = STATE(2281), - [sym_python_statement] = STATE(2281), - [sym_perl_statement] = STATE(2281), - [sym_for_loop] = STATE(2281), - [sym_while_loop] = STATE(2281), - [sym_if_statement] = STATE(2281), - [sym_try_statement] = STATE(2281), - [sym_throw_statement] = STATE(2281), - [sym_bang_filter_statement] = STATE(2281), - [sym_let_statement] = STATE(2281), - [sym_const_statement] = STATE(2281), - [sym_set_statement] = STATE(2281), - [sym_setlocal_statement] = STATE(2281), - [sym_unlet_statement] = STATE(2281), - [sym_call_statement] = STATE(2281), - [sym_echo_statement] = STATE(2281), - [sym_echon_statement] = STATE(2281), - [sym_echohl_statement] = STATE(2281), - [sym_echomsg_statement] = STATE(2281), - [sym_echoerr_statement] = STATE(2281), - [sym_execute_statement] = STATE(2281), - [sym_silent_statement] = STATE(2281), - [sym_vertical_statement] = STATE(2281), - [sym_topleft_statement] = STATE(2281), - [sym_botright_statement] = STATE(2281), - [sym_aboveleft_statement] = STATE(2281), - [sym_belowright_statement] = STATE(2281), - [sym_user_command] = STATE(2281), - [sym_function_definition] = STATE(2281), - [sym_range_statement] = STATE(2281), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2281), - [sym_map_statement] = STATE(2281), - [sym_sign_statement] = STATE(2281), - [sym_eval_statement] = STATE(2281), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2281), - [sym_augroup_statement] = STATE(2281), - [sym_command_statement] = STATE(2281), - [sym_comclear_statement] = STATE(2281), - [sym_delcommand_statement] = STATE(2281), - [sym_highlight_statement] = STATE(2281), - [sym_syntax_statement] = STATE(2281), - [sym_edit_statement] = STATE(2281), - [sym_enew_statement] = STATE(2281), - [sym_find_statement] = STATE(2281), - [sym_ex_statement] = STATE(2281), - [sym_visual_statement] = STATE(2281), - [sym_view_statement] = STATE(2281), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(619), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(619), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__endfor] = ACTIONS(249), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), - }, - [31] = { - [sym__cmd_separator] = STATE(116), - [aux_sym__separated_statements] = STATE(31), - [sym__statement] = STATE(2420), - [sym_unknown_builtin_statement] = STATE(2420), - [sym_return_statement] = STATE(2420), - [sym_break_statement] = STATE(2420), - [sym_continue_statement] = STATE(2420), - [sym_normal_statement] = STATE(2420), - [sym_setfiletype_statement] = STATE(2420), - [sym_options_statement] = STATE(2420), - [sym_startinsert_statement] = STATE(2420), - [sym_stopinsert_statement] = STATE(2420), - [sym_scriptencoding_statement] = STATE(2420), - [sym_cnext_statement] = STATE(2420), - [sym_cprevious_statement] = STATE(2420), - [sym_runtime_statement] = STATE(2420), - [sym_wincmd_statement] = STATE(2420), - [sym_source_statement] = STATE(2420), - [sym_global_statement] = STATE(2420), - [sym_filetype_statement] = STATE(2420), - [sym_colorscheme_statement] = STATE(2420), - [sym_lua_statement] = STATE(2420), - [sym_ruby_statement] = STATE(2420), - [sym_python_statement] = STATE(2420), - [sym_perl_statement] = STATE(2420), - [sym_for_loop] = STATE(2420), - [sym_while_loop] = STATE(2420), - [sym_if_statement] = STATE(2420), - [sym_try_statement] = STATE(2420), - [sym_throw_statement] = STATE(2420), - [sym_bang_filter_statement] = STATE(2420), - [sym_let_statement] = STATE(2420), - [sym_const_statement] = STATE(2420), - [sym_set_statement] = STATE(2420), - [sym_setlocal_statement] = STATE(2420), - [sym_unlet_statement] = STATE(2420), - [sym_call_statement] = STATE(2420), - [sym_echo_statement] = STATE(2420), - [sym_echon_statement] = STATE(2420), - [sym_echohl_statement] = STATE(2420), - [sym_echomsg_statement] = STATE(2420), - [sym_echoerr_statement] = STATE(2420), - [sym_execute_statement] = STATE(2420), - [sym_silent_statement] = STATE(2420), - [sym_vertical_statement] = STATE(2420), - [sym_topleft_statement] = STATE(2420), - [sym_botright_statement] = STATE(2420), - [sym_aboveleft_statement] = STATE(2420), - [sym_belowright_statement] = STATE(2420), - [sym_user_command] = STATE(2420), - [sym_function_definition] = STATE(2420), - [sym_range_statement] = STATE(2420), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2420), - [sym_map_statement] = STATE(2420), - [sym_sign_statement] = STATE(2420), - [sym_eval_statement] = STATE(2420), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2420), - [sym_augroup_statement] = STATE(2420), - [sym_command_statement] = STATE(2420), - [sym_comclear_statement] = STATE(2420), - [sym_delcommand_statement] = STATE(2420), - [sym_highlight_statement] = STATE(2420), - [sym_syntax_statement] = STATE(2420), - [sym_edit_statement] = STATE(2420), - [sym_enew_statement] = STATE(2420), - [sym_find_statement] = STATE(2420), - [sym_ex_statement] = STATE(2420), - [sym_visual_statement] = STATE(2420), - [sym_view_statement] = STATE(2420), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(622), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(622), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__endif] = ACTIONS(249), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), - }, - [32] = { - [sym__cmd_separator] = STATE(108), - [aux_sym__separated_statements] = STATE(32), - [sym__statement] = STATE(2551), - [sym_unknown_builtin_statement] = STATE(2551), - [sym_return_statement] = STATE(2551), - [sym_break_statement] = STATE(2551), - [sym_continue_statement] = STATE(2551), - [sym_normal_statement] = STATE(2551), - [sym_setfiletype_statement] = STATE(2551), - [sym_options_statement] = STATE(2551), - [sym_startinsert_statement] = STATE(2551), - [sym_stopinsert_statement] = STATE(2551), - [sym_scriptencoding_statement] = STATE(2551), - [sym_cnext_statement] = STATE(2551), - [sym_cprevious_statement] = STATE(2551), - [sym_runtime_statement] = STATE(2551), - [sym_wincmd_statement] = STATE(2551), - [sym_source_statement] = STATE(2551), - [sym_global_statement] = STATE(2551), - [sym_filetype_statement] = STATE(2551), - [sym_colorscheme_statement] = STATE(2551), - [sym_lua_statement] = STATE(2551), - [sym_ruby_statement] = STATE(2551), - [sym_python_statement] = STATE(2551), - [sym_perl_statement] = STATE(2551), - [sym_for_loop] = STATE(2551), - [sym_while_loop] = STATE(2551), - [sym_if_statement] = STATE(2551), - [sym_try_statement] = STATE(2551), - [sym_throw_statement] = STATE(2551), - [sym_bang_filter_statement] = STATE(2551), - [sym_let_statement] = STATE(2551), - [sym_const_statement] = STATE(2551), - [sym_set_statement] = STATE(2551), - [sym_setlocal_statement] = STATE(2551), - [sym_unlet_statement] = STATE(2551), - [sym_call_statement] = STATE(2551), - [sym_echo_statement] = STATE(2551), - [sym_echon_statement] = STATE(2551), - [sym_echohl_statement] = STATE(2551), - [sym_echomsg_statement] = STATE(2551), - [sym_echoerr_statement] = STATE(2551), - [sym_execute_statement] = STATE(2551), - [sym_silent_statement] = STATE(2551), - [sym_vertical_statement] = STATE(2551), - [sym_topleft_statement] = STATE(2551), - [sym_botright_statement] = STATE(2551), - [sym_aboveleft_statement] = STATE(2551), - [sym_belowright_statement] = STATE(2551), - [sym_user_command] = STATE(2551), - [sym_function_definition] = STATE(2551), - [sym_range_statement] = STATE(2551), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2551), - [sym_map_statement] = STATE(2551), - [sym_sign_statement] = STATE(2551), - [sym_eval_statement] = STATE(2551), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2551), - [sym_augroup_statement] = STATE(2551), - [sym_command_statement] = STATE(2551), - [sym_comclear_statement] = STATE(2551), - [sym_delcommand_statement] = STATE(2551), - [sym_highlight_statement] = STATE(2551), - [sym_syntax_statement] = STATE(2551), - [sym_edit_statement] = STATE(2551), - [sym_enew_statement] = STATE(2551), - [sym_find_statement] = STATE(2551), - [sym_ex_statement] = STATE(2551), - [sym_visual_statement] = STATE(2551), - [sym_view_statement] = STATE(2551), + [27] = { + [sym__statement] = STATE(2448), + [sym_unknown_builtin_statement] = STATE(2448), + [sym_return_statement] = STATE(2448), + [sym_break_statement] = STATE(2448), + [sym_continue_statement] = STATE(2448), + [sym_normal_statement] = STATE(2448), + [sym_setfiletype_statement] = STATE(2448), + [sym_options_statement] = STATE(2448), + [sym_startinsert_statement] = STATE(2448), + [sym_stopinsert_statement] = STATE(2448), + [sym_scriptencoding_statement] = STATE(2448), + [sym_cnext_statement] = STATE(2448), + [sym_cprevious_statement] = STATE(2448), + [sym_runtime_statement] = STATE(2448), + [sym_wincmd_statement] = STATE(2448), + [sym_source_statement] = STATE(2448), + [sym_global_statement] = STATE(2448), + [sym_filetype_statement] = STATE(2448), + [sym_colorscheme_statement] = STATE(2448), + [sym_lua_statement] = STATE(2448), + [sym_ruby_statement] = STATE(2448), + [sym_python_statement] = STATE(2448), + [sym_perl_statement] = STATE(2448), + [sym_for_loop] = STATE(2448), + [sym_while_loop] = STATE(2448), + [sym_if_statement] = STATE(2448), + [sym_try_statement] = STATE(2448), + [sym_throw_statement] = STATE(2448), + [sym_bang_filter_statement] = STATE(2448), + [sym_let_statement] = STATE(2448), + [sym_const_statement] = STATE(2448), + [sym_set_statement] = STATE(2448), + [sym_setlocal_statement] = STATE(2448), + [sym_unlet_statement] = STATE(2448), + [sym_call_statement] = STATE(2448), + [sym_echo_statement] = STATE(2448), + [sym_echon_statement] = STATE(2448), + [sym_echohl_statement] = STATE(2448), + [sym_echomsg_statement] = STATE(2448), + [sym_echoerr_statement] = STATE(2448), + [sym_execute_statement] = STATE(2448), + [sym_silent_statement] = STATE(2448), + [sym_vertical_statement] = STATE(2448), + [sym_topleft_statement] = STATE(2448), + [sym_botright_statement] = STATE(2448), + [sym_aboveleft_statement] = STATE(2448), + [sym_belowright_statement] = STATE(2448), + [sym_user_command] = STATE(2448), + [sym_function_definition] = STATE(2448), + [sym_range_statement] = STATE(2448), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2448), + [sym_map_statement] = STATE(2448), + [sym_sign_statement] = STATE(2448), + [sym_eval_statement] = STATE(2448), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2448), + [sym_augroup_statement] = STATE(2448), + [sym_command_statement] = STATE(2448), + [sym_comclear_statement] = STATE(2448), + [sym_delcommand_statement] = STATE(2448), + [sym_highlight_statement] = STATE(2448), + [sym_syntax_statement] = STATE(2448), + [sym_edit_statement] = STATE(2448), + [sym_enew_statement] = STATE(2448), + [sym_find_statement] = STATE(2448), + [sym_ex_statement] = STATE(2448), + [sym_visual_statement] = STATE(2448), + [sym_view_statement] = STATE(2448), [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [anon_sym_BSLASH_PIPE] = ACTIONS(612), + [aux_sym__map_rhs_statement_token2] = ACTIONS(612), + [aux_sym__map_rhs_statement_token3] = ACTIONS(612), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_au_once] = ACTIONS(474), + [sym_au_nested] = ACTIONS(476), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(625), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__endtry] = ACTIONS(249), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, - [33] = { - [sym__cmd_separator] = STATE(109), - [aux_sym__separated_statements] = STATE(33), - [sym__statement] = STATE(2583), - [sym_unknown_builtin_statement] = STATE(2583), - [sym_return_statement] = STATE(2583), - [sym_break_statement] = STATE(2583), - [sym_continue_statement] = STATE(2583), - [sym_normal_statement] = STATE(2583), - [sym_setfiletype_statement] = STATE(2583), - [sym_options_statement] = STATE(2583), - [sym_startinsert_statement] = STATE(2583), - [sym_stopinsert_statement] = STATE(2583), - [sym_scriptencoding_statement] = STATE(2583), - [sym_cnext_statement] = STATE(2583), - [sym_cprevious_statement] = STATE(2583), - [sym_runtime_statement] = STATE(2583), - [sym_wincmd_statement] = STATE(2583), - [sym_source_statement] = STATE(2583), - [sym_global_statement] = STATE(2583), - [sym_filetype_statement] = STATE(2583), - [sym_colorscheme_statement] = STATE(2583), - [sym_lua_statement] = STATE(2583), - [sym_ruby_statement] = STATE(2583), - [sym_python_statement] = STATE(2583), - [sym_perl_statement] = STATE(2583), - [sym_for_loop] = STATE(2583), - [sym_while_loop] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_try_statement] = STATE(2583), - [sym_throw_statement] = STATE(2583), - [sym_bang_filter_statement] = STATE(2583), - [sym_let_statement] = STATE(2583), - [sym_const_statement] = STATE(2583), - [sym_set_statement] = STATE(2583), - [sym_setlocal_statement] = STATE(2583), - [sym_unlet_statement] = STATE(2583), - [sym_call_statement] = STATE(2583), - [sym_echo_statement] = STATE(2583), - [sym_echon_statement] = STATE(2583), - [sym_echohl_statement] = STATE(2583), - [sym_echomsg_statement] = STATE(2583), - [sym_echoerr_statement] = STATE(2583), - [sym_execute_statement] = STATE(2583), - [sym_silent_statement] = STATE(2583), - [sym_vertical_statement] = STATE(2583), - [sym_topleft_statement] = STATE(2583), - [sym_botright_statement] = STATE(2583), - [sym_aboveleft_statement] = STATE(2583), - [sym_belowright_statement] = STATE(2583), - [sym_user_command] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_range_statement] = STATE(2583), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2583), - [sym_map_statement] = STATE(2583), - [sym_sign_statement] = STATE(2583), - [sym_eval_statement] = STATE(2583), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2583), - [sym_augroup_statement] = STATE(2583), - [sym_command_statement] = STATE(2583), - [sym_comclear_statement] = STATE(2583), - [sym_delcommand_statement] = STATE(2583), - [sym_highlight_statement] = STATE(2583), - [sym_syntax_statement] = STATE(2583), - [sym_edit_statement] = STATE(2583), - [sym_enew_statement] = STATE(2583), - [sym_find_statement] = STATE(2583), - [sym_ex_statement] = STATE(2583), - [sym_visual_statement] = STATE(2583), - [sym_view_statement] = STATE(2583), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(628), + [28] = { + [sym__cmd_separator] = STATE(110), + [aux_sym__separated_statements] = STATE(28), + [sym__statement] = STATE(2323), + [sym_unknown_builtin_statement] = STATE(2323), + [sym_return_statement] = STATE(2323), + [sym_break_statement] = STATE(2323), + [sym_continue_statement] = STATE(2323), + [sym_normal_statement] = STATE(2323), + [sym_setfiletype_statement] = STATE(2323), + [sym_options_statement] = STATE(2323), + [sym_startinsert_statement] = STATE(2323), + [sym_stopinsert_statement] = STATE(2323), + [sym_scriptencoding_statement] = STATE(2323), + [sym_cnext_statement] = STATE(2323), + [sym_cprevious_statement] = STATE(2323), + [sym_runtime_statement] = STATE(2323), + [sym_wincmd_statement] = STATE(2323), + [sym_source_statement] = STATE(2323), + [sym_global_statement] = STATE(2323), + [sym_filetype_statement] = STATE(2323), + [sym_colorscheme_statement] = STATE(2323), + [sym_lua_statement] = STATE(2323), + [sym_ruby_statement] = STATE(2323), + [sym_python_statement] = STATE(2323), + [sym_perl_statement] = STATE(2323), + [sym_for_loop] = STATE(2323), + [sym_while_loop] = STATE(2323), + [sym_if_statement] = STATE(2323), + [sym_try_statement] = STATE(2323), + [sym_throw_statement] = STATE(2323), + [sym_bang_filter_statement] = STATE(2323), + [sym_let_statement] = STATE(2323), + [sym_const_statement] = STATE(2323), + [sym_set_statement] = STATE(2323), + [sym_setlocal_statement] = STATE(2323), + [sym_unlet_statement] = STATE(2323), + [sym_call_statement] = STATE(2323), + [sym_echo_statement] = STATE(2323), + [sym_echon_statement] = STATE(2323), + [sym_echohl_statement] = STATE(2323), + [sym_echomsg_statement] = STATE(2323), + [sym_echoerr_statement] = STATE(2323), + [sym_execute_statement] = STATE(2323), + [sym_silent_statement] = STATE(2323), + [sym_vertical_statement] = STATE(2323), + [sym_topleft_statement] = STATE(2323), + [sym_botright_statement] = STATE(2323), + [sym_aboveleft_statement] = STATE(2323), + [sym_belowright_statement] = STATE(2323), + [sym_user_command] = STATE(2323), + [sym_function_definition] = STATE(2323), + [sym_range_statement] = STATE(2323), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2323), + [sym_map_statement] = STATE(2323), + [sym_sign_statement] = STATE(2323), + [sym_eval_statement] = STATE(2323), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2323), + [sym_augroup_statement] = STATE(2323), + [sym_command_statement] = STATE(2323), + [sym_comclear_statement] = STATE(2323), + [sym_delcommand_statement] = STATE(2323), + [sym_highlight_statement] = STATE(2323), + [sym_syntax_statement] = STATE(2323), + [sym_edit_statement] = STATE(2323), + [sym_enew_statement] = STATE(2323), + [sym_find_statement] = STATE(2323), + [sym_ex_statement] = STATE(2323), + [sym_visual_statement] = STATE(2323), + [sym_view_statement] = STATE(2323), + [aux_sym__statement_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(238), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(614), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(628), + [sym_comment] = ACTIONS(614), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__endwhile] = ACTIONS(249), - [sym__if] = ACTIONS(243), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), }, - [34] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), + [29] = { + [sym__cmd_separator] = STATE(113), + [aux_sym__separated_statements] = STATE(31), [sym__statement] = STATE(2351), [sym_unknown_builtin_statement] = STATE(2351), [sym_return_statement] = STATE(2351), @@ -57365,20 +56473,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_user_command] = STATE(2351), [sym_function_definition] = STATE(2351), [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), [sym_register_statement] = STATE(2351), [sym_map_statement] = STATE(2351), [sym_sign_statement] = STATE(2351), [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), [sym_autocmd_statement] = STATE(2351), [sym_augroup_statement] = STATE(2351), [sym_command_statement] = STATE(2351), @@ -57392,7 +56500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ex_statement] = STATE(2351), [sym_visual_statement] = STATE(2351), [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -57407,12 +56515,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(617), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(617), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(631), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -57420,6 +56527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), + [sym__endtry] = ACTIONS(619), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -57498,9 +56606,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [35] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(51), + [30] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(26), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(9), + [sym_mark] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(15), + [anon_sym_DOT2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DOLLAR] = ACTIONS(21), + [anon_sym_BSLASH_SLASH] = ACTIONS(23), + [anon_sym_BSLASH_QMARK] = ACTIONS(23), + [anon_sym_BSLASH_AMP] = ACTIONS(23), + [sym_integer_literal] = ACTIONS(25), + [sym_register] = ACTIONS(27), + [sym_command_name] = ACTIONS(29), + [sym__newline_or_pipe] = ACTIONS(440), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(440), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(621), + [sym__for] = ACTIONS(35), + [sym__while] = ACTIONS(37), + [sym__if] = ACTIONS(39), + [sym__try] = ACTIONS(41), + [sym__cnext] = ACTIONS(43), + [sym__cprevious] = ACTIONS(45), + [sym__cNext] = ACTIONS(45), + [sym__const] = ACTIONS(47), + [sym__normal] = ACTIONS(49), + [sym__return] = ACTIONS(51), + [sym__perl] = ACTIONS(53), + [sym__lua] = ACTIONS(55), + [sym__ruby] = ACTIONS(57), + [sym__python] = ACTIONS(59), + [sym__throw] = ACTIONS(61), + [sym__execute] = ACTIONS(63), + [sym__autocmd] = ACTIONS(65), + [sym__silent] = ACTIONS(67), + [sym__echo] = ACTIONS(69), + [sym__echon] = ACTIONS(71), + [sym__echohl] = ACTIONS(73), + [sym__echomsg] = ACTIONS(75), + [sym__echoerr] = ACTIONS(77), + [sym__map] = ACTIONS(79), + [sym__nmap] = ACTIONS(79), + [sym__vmap] = ACTIONS(79), + [sym__xmap] = ACTIONS(79), + [sym__smap] = ACTIONS(79), + [sym__omap] = ACTIONS(79), + [sym__imap] = ACTIONS(79), + [sym__lmap] = ACTIONS(79), + [sym__cmap] = ACTIONS(79), + [sym__tmap] = ACTIONS(79), + [sym__noremap] = ACTIONS(79), + [sym__nnoremap] = ACTIONS(79), + [sym__vnoremap] = ACTIONS(79), + [sym__xnoremap] = ACTIONS(79), + [sym__snoremap] = ACTIONS(79), + [sym__onoremap] = ACTIONS(79), + [sym__inoremap] = ACTIONS(79), + [sym__lnoremap] = ACTIONS(79), + [sym__cnoremap] = ACTIONS(79), + [sym__tnoremap] = ACTIONS(79), + [sym__augroup] = ACTIONS(81), + [sym__highlight] = ACTIONS(83), + [sym__syntax] = ACTIONS(85), + [sym__set] = ACTIONS(87), + [sym__setlocal] = ACTIONS(89), + [sym__setfiletype] = ACTIONS(91), + [sym__browse] = ACTIONS(93), + [sym__options] = ACTIONS(95), + [sym__startinsert] = ACTIONS(97), + [sym__stopinsert] = ACTIONS(99), + [sym__scriptencoding] = ACTIONS(101), + [sym__source] = ACTIONS(103), + [sym__global] = ACTIONS(105), + [sym__colorscheme] = ACTIONS(107), + [sym__command] = ACTIONS(109), + [sym__comclear] = ACTIONS(111), + [sym__delcommand] = ACTIONS(113), + [sym__runtime] = ACTIONS(115), + [sym__wincmd] = ACTIONS(117), + [sym__sign] = ACTIONS(119), + [sym__filetype] = ACTIONS(121), + [sym__let] = ACTIONS(123), + [sym__unlet] = ACTIONS(125), + [sym__call] = ACTIONS(127), + [sym__break] = ACTIONS(129), + [sym__continue] = ACTIONS(131), + [sym__vertical] = ACTIONS(133), + [sym__leftabove] = ACTIONS(135), + [sym__aboveleft] = ACTIONS(135), + [sym__rightbelow] = ACTIONS(137), + [sym__belowright] = ACTIONS(137), + [sym__topleft] = ACTIONS(139), + [sym__botright] = ACTIONS(141), + [sym__edit] = ACTIONS(143), + [sym__enew] = ACTIONS(145), + [sym__find] = ACTIONS(147), + [sym__ex] = ACTIONS(149), + [sym__visual] = ACTIONS(151), + [sym__view] = ACTIONS(153), + [sym__eval] = ACTIONS(155), + [sym_unknown_command_name] = ACTIONS(157), + }, + [31] = { + [sym__cmd_separator] = STATE(113), + [aux_sym__separated_statements] = STATE(31), [sym__statement] = STATE(2351), [sym_unknown_builtin_statement] = STATE(2351), [sym_return_statement] = STATE(2351), @@ -57551,20 +56845,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_user_command] = STATE(2351), [sym_function_definition] = STATE(2351), [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), [sym_register_statement] = STATE(2351), [sym_map_statement] = STATE(2351), [sym_sign_statement] = STATE(2351), [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), [sym_autocmd_statement] = STATE(2351), [sym_augroup_statement] = STATE(2351), [sym_command_statement] = STATE(2351), @@ -57578,7 +56872,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ex_statement] = STATE(2351), [sym_visual_statement] = STATE(2351), [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(623), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(623), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__endtry] = ACTIONS(238), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), + }, + [32] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -57593,12 +57073,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(633), + [sym__endfunction] = ACTIONS(626), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -57684,87 +57164,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [36] = { + [33] = { [sym__cmd_separator] = STATE(109), - [aux_sym__separated_statements] = STATE(33), - [sym__statement] = STATE(2583), - [sym_unknown_builtin_statement] = STATE(2583), - [sym_return_statement] = STATE(2583), - [sym_break_statement] = STATE(2583), - [sym_continue_statement] = STATE(2583), - [sym_normal_statement] = STATE(2583), - [sym_setfiletype_statement] = STATE(2583), - [sym_options_statement] = STATE(2583), - [sym_startinsert_statement] = STATE(2583), - [sym_stopinsert_statement] = STATE(2583), - [sym_scriptencoding_statement] = STATE(2583), - [sym_cnext_statement] = STATE(2583), - [sym_cprevious_statement] = STATE(2583), - [sym_runtime_statement] = STATE(2583), - [sym_wincmd_statement] = STATE(2583), - [sym_source_statement] = STATE(2583), - [sym_global_statement] = STATE(2583), - [sym_filetype_statement] = STATE(2583), - [sym_colorscheme_statement] = STATE(2583), - [sym_lua_statement] = STATE(2583), - [sym_ruby_statement] = STATE(2583), - [sym_python_statement] = STATE(2583), - [sym_perl_statement] = STATE(2583), - [sym_for_loop] = STATE(2583), - [sym_while_loop] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_try_statement] = STATE(2583), - [sym_throw_statement] = STATE(2583), - [sym_bang_filter_statement] = STATE(2583), - [sym_let_statement] = STATE(2583), - [sym_const_statement] = STATE(2583), - [sym_set_statement] = STATE(2583), - [sym_setlocal_statement] = STATE(2583), - [sym_unlet_statement] = STATE(2583), - [sym_call_statement] = STATE(2583), - [sym_echo_statement] = STATE(2583), - [sym_echon_statement] = STATE(2583), - [sym_echohl_statement] = STATE(2583), - [sym_echomsg_statement] = STATE(2583), - [sym_echoerr_statement] = STATE(2583), - [sym_execute_statement] = STATE(2583), - [sym_silent_statement] = STATE(2583), - [sym_vertical_statement] = STATE(2583), - [sym_topleft_statement] = STATE(2583), - [sym_botright_statement] = STATE(2583), - [sym_aboveleft_statement] = STATE(2583), - [sym_belowright_statement] = STATE(2583), - [sym_user_command] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_range_statement] = STATE(2583), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2583), - [sym_map_statement] = STATE(2583), - [sym_sign_statement] = STATE(2583), - [sym_eval_statement] = STATE(2583), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2583), - [sym_augroup_statement] = STATE(2583), - [sym_command_statement] = STATE(2583), - [sym_comclear_statement] = STATE(2583), - [sym_delcommand_statement] = STATE(2583), - [sym_highlight_statement] = STATE(2583), - [sym_syntax_statement] = STATE(2583), - [sym_edit_statement] = STATE(2583), - [sym_enew_statement] = STATE(2583), - [sym_find_statement] = STATE(2583), - [sym_ex_statement] = STATE(2583), - [sym_visual_statement] = STATE(2583), - [sym_view_statement] = STATE(2583), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__separated_statements] = STATE(37), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -57779,14 +57259,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(442), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(442), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(628), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(635), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -57870,87 +57350,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [37] = { - [sym__cmd_separator] = STATE(116), - [aux_sym__separated_statements] = STATE(48), - [sym__statement] = STATE(2420), - [sym_unknown_builtin_statement] = STATE(2420), - [sym_return_statement] = STATE(2420), - [sym_break_statement] = STATE(2420), - [sym_continue_statement] = STATE(2420), - [sym_normal_statement] = STATE(2420), - [sym_setfiletype_statement] = STATE(2420), - [sym_options_statement] = STATE(2420), - [sym_startinsert_statement] = STATE(2420), - [sym_stopinsert_statement] = STATE(2420), - [sym_scriptencoding_statement] = STATE(2420), - [sym_cnext_statement] = STATE(2420), - [sym_cprevious_statement] = STATE(2420), - [sym_runtime_statement] = STATE(2420), - [sym_wincmd_statement] = STATE(2420), - [sym_source_statement] = STATE(2420), - [sym_global_statement] = STATE(2420), - [sym_filetype_statement] = STATE(2420), - [sym_colorscheme_statement] = STATE(2420), - [sym_lua_statement] = STATE(2420), - [sym_ruby_statement] = STATE(2420), - [sym_python_statement] = STATE(2420), - [sym_perl_statement] = STATE(2420), - [sym_for_loop] = STATE(2420), - [sym_while_loop] = STATE(2420), - [sym_if_statement] = STATE(2420), - [sym_try_statement] = STATE(2420), - [sym_throw_statement] = STATE(2420), - [sym_bang_filter_statement] = STATE(2420), - [sym_let_statement] = STATE(2420), - [sym_const_statement] = STATE(2420), - [sym_set_statement] = STATE(2420), - [sym_setlocal_statement] = STATE(2420), - [sym_unlet_statement] = STATE(2420), - [sym_call_statement] = STATE(2420), - [sym_echo_statement] = STATE(2420), - [sym_echon_statement] = STATE(2420), - [sym_echohl_statement] = STATE(2420), - [sym_echomsg_statement] = STATE(2420), - [sym_echoerr_statement] = STATE(2420), - [sym_execute_statement] = STATE(2420), - [sym_silent_statement] = STATE(2420), - [sym_vertical_statement] = STATE(2420), - [sym_topleft_statement] = STATE(2420), - [sym_botright_statement] = STATE(2420), - [sym_aboveleft_statement] = STATE(2420), - [sym_belowright_statement] = STATE(2420), - [sym_user_command] = STATE(2420), - [sym_function_definition] = STATE(2420), - [sym_range_statement] = STATE(2420), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2420), - [sym_map_statement] = STATE(2420), - [sym_sign_statement] = STATE(2420), - [sym_eval_statement] = STATE(2420), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2420), - [sym_augroup_statement] = STATE(2420), - [sym_command_statement] = STATE(2420), - [sym_comclear_statement] = STATE(2420), - [sym_delcommand_statement] = STATE(2420), - [sym_highlight_statement] = STATE(2420), - [sym_syntax_statement] = STATE(2420), - [sym_edit_statement] = STATE(2420), - [sym_enew_statement] = STATE(2420), - [sym_find_statement] = STATE(2420), - [sym_ex_statement] = STATE(2420), - [sym_visual_statement] = STATE(2420), - [sym_view_statement] = STATE(2420), + [34] = { + [sym__statement] = STATE(2448), + [sym_unknown_builtin_statement] = STATE(2448), + [sym_return_statement] = STATE(2448), + [sym_break_statement] = STATE(2448), + [sym_continue_statement] = STATE(2448), + [sym_normal_statement] = STATE(2448), + [sym_setfiletype_statement] = STATE(2448), + [sym_options_statement] = STATE(2448), + [sym_startinsert_statement] = STATE(2448), + [sym_stopinsert_statement] = STATE(2448), + [sym_scriptencoding_statement] = STATE(2448), + [sym_cnext_statement] = STATE(2448), + [sym_cprevious_statement] = STATE(2448), + [sym_runtime_statement] = STATE(2448), + [sym_wincmd_statement] = STATE(2448), + [sym_source_statement] = STATE(2448), + [sym_global_statement] = STATE(2448), + [sym_filetype_statement] = STATE(2448), + [sym_colorscheme_statement] = STATE(2448), + [sym_lua_statement] = STATE(2448), + [sym_ruby_statement] = STATE(2448), + [sym_python_statement] = STATE(2448), + [sym_perl_statement] = STATE(2448), + [sym_for_loop] = STATE(2448), + [sym_while_loop] = STATE(2448), + [sym_if_statement] = STATE(2448), + [sym_try_statement] = STATE(2448), + [sym_throw_statement] = STATE(2448), + [sym_bang_filter_statement] = STATE(2448), + [sym_let_statement] = STATE(2448), + [sym_const_statement] = STATE(2448), + [sym_set_statement] = STATE(2448), + [sym_setlocal_statement] = STATE(2448), + [sym_unlet_statement] = STATE(2448), + [sym_call_statement] = STATE(2448), + [sym_echo_statement] = STATE(2448), + [sym_echon_statement] = STATE(2448), + [sym_echohl_statement] = STATE(2448), + [sym_echomsg_statement] = STATE(2448), + [sym_echoerr_statement] = STATE(2448), + [sym_execute_statement] = STATE(2448), + [sym_silent_statement] = STATE(2448), + [sym_vertical_statement] = STATE(2448), + [sym_topleft_statement] = STATE(2448), + [sym_botright_statement] = STATE(2448), + [sym_aboveleft_statement] = STATE(2448), + [sym_belowright_statement] = STATE(2448), + [sym_user_command] = STATE(2448), + [sym_function_definition] = STATE(2448), + [sym_range_statement] = STATE(2448), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2448), + [sym_map_statement] = STATE(2448), + [sym_sign_statement] = STATE(2448), + [sym_eval_statement] = STATE(2448), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2448), + [sym_augroup_statement] = STATE(2448), + [sym_command_statement] = STATE(2448), + [sym_comclear_statement] = STATE(2448), + [sym_delcommand_statement] = STATE(2448), + [sym_highlight_statement] = STATE(2448), + [sym_syntax_statement] = STATE(2448), + [sym_edit_statement] = STATE(2448), + [sym_enew_statement] = STATE(2448), + [sym_find_statement] = STATE(2448), + [sym_ex_statement] = STATE(2448), + [sym_visual_statement] = STATE(2448), + [sym_view_statement] = STATE(2448), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [anon_sym_BSLASH_PIPE] = ACTIONS(630), + [aux_sym__map_rhs_statement_token2] = ACTIONS(630), + [aux_sym__map_rhs_statement_token3] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_au_once] = ACTIONS(474), + [sym_au_nested] = ACTIONS(476), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [35] = { + [sym__cmd_separator] = STATE(114), + [aux_sym__separated_statements] = STATE(35), + [sym__statement] = STATE(2570), + [sym_unknown_builtin_statement] = STATE(2570), + [sym_return_statement] = STATE(2570), + [sym_break_statement] = STATE(2570), + [sym_continue_statement] = STATE(2570), + [sym_normal_statement] = STATE(2570), + [sym_setfiletype_statement] = STATE(2570), + [sym_options_statement] = STATE(2570), + [sym_startinsert_statement] = STATE(2570), + [sym_stopinsert_statement] = STATE(2570), + [sym_scriptencoding_statement] = STATE(2570), + [sym_cnext_statement] = STATE(2570), + [sym_cprevious_statement] = STATE(2570), + [sym_runtime_statement] = STATE(2570), + [sym_wincmd_statement] = STATE(2570), + [sym_source_statement] = STATE(2570), + [sym_global_statement] = STATE(2570), + [sym_filetype_statement] = STATE(2570), + [sym_colorscheme_statement] = STATE(2570), + [sym_lua_statement] = STATE(2570), + [sym_ruby_statement] = STATE(2570), + [sym_python_statement] = STATE(2570), + [sym_perl_statement] = STATE(2570), + [sym_for_loop] = STATE(2570), + [sym_while_loop] = STATE(2570), + [sym_if_statement] = STATE(2570), + [sym_try_statement] = STATE(2570), + [sym_throw_statement] = STATE(2570), + [sym_bang_filter_statement] = STATE(2570), + [sym_let_statement] = STATE(2570), + [sym_const_statement] = STATE(2570), + [sym_set_statement] = STATE(2570), + [sym_setlocal_statement] = STATE(2570), + [sym_unlet_statement] = STATE(2570), + [sym_call_statement] = STATE(2570), + [sym_echo_statement] = STATE(2570), + [sym_echon_statement] = STATE(2570), + [sym_echohl_statement] = STATE(2570), + [sym_echomsg_statement] = STATE(2570), + [sym_echoerr_statement] = STATE(2570), + [sym_execute_statement] = STATE(2570), + [sym_silent_statement] = STATE(2570), + [sym_vertical_statement] = STATE(2570), + [sym_topleft_statement] = STATE(2570), + [sym_botright_statement] = STATE(2570), + [sym_aboveleft_statement] = STATE(2570), + [sym_belowright_statement] = STATE(2570), + [sym_user_command] = STATE(2570), + [sym_function_definition] = STATE(2570), + [sym_range_statement] = STATE(2570), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2570), + [sym_map_statement] = STATE(2570), + [sym_sign_statement] = STATE(2570), + [sym_eval_statement] = STATE(2570), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2570), + [sym_augroup_statement] = STATE(2570), + [sym_command_statement] = STATE(2570), + [sym_comclear_statement] = STATE(2570), + [sym_delcommand_statement] = STATE(2570), + [sym_highlight_statement] = STATE(2570), + [sym_syntax_statement] = STATE(2570), + [sym_edit_statement] = STATE(2570), + [sym_enew_statement] = STATE(2570), + [sym_find_statement] = STATE(2570), + [sym_ex_statement] = STATE(2570), + [sym_visual_statement] = STATE(2570), + [sym_view_statement] = STATE(2570), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(632), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(632), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__endif] = ACTIONS(238), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), + }, + [36] = { + [sym__cmd_separator] = STATE(110), + [aux_sym__separated_statements] = STATE(28), + [sym__statement] = STATE(2323), + [sym_unknown_builtin_statement] = STATE(2323), + [sym_return_statement] = STATE(2323), + [sym_break_statement] = STATE(2323), + [sym_continue_statement] = STATE(2323), + [sym_normal_statement] = STATE(2323), + [sym_setfiletype_statement] = STATE(2323), + [sym_options_statement] = STATE(2323), + [sym_startinsert_statement] = STATE(2323), + [sym_stopinsert_statement] = STATE(2323), + [sym_scriptencoding_statement] = STATE(2323), + [sym_cnext_statement] = STATE(2323), + [sym_cprevious_statement] = STATE(2323), + [sym_runtime_statement] = STATE(2323), + [sym_wincmd_statement] = STATE(2323), + [sym_source_statement] = STATE(2323), + [sym_global_statement] = STATE(2323), + [sym_filetype_statement] = STATE(2323), + [sym_colorscheme_statement] = STATE(2323), + [sym_lua_statement] = STATE(2323), + [sym_ruby_statement] = STATE(2323), + [sym_python_statement] = STATE(2323), + [sym_perl_statement] = STATE(2323), + [sym_for_loop] = STATE(2323), + [sym_while_loop] = STATE(2323), + [sym_if_statement] = STATE(2323), + [sym_try_statement] = STATE(2323), + [sym_throw_statement] = STATE(2323), + [sym_bang_filter_statement] = STATE(2323), + [sym_let_statement] = STATE(2323), + [sym_const_statement] = STATE(2323), + [sym_set_statement] = STATE(2323), + [sym_setlocal_statement] = STATE(2323), + [sym_unlet_statement] = STATE(2323), + [sym_call_statement] = STATE(2323), + [sym_echo_statement] = STATE(2323), + [sym_echon_statement] = STATE(2323), + [sym_echohl_statement] = STATE(2323), + [sym_echomsg_statement] = STATE(2323), + [sym_echoerr_statement] = STATE(2323), + [sym_execute_statement] = STATE(2323), + [sym_silent_statement] = STATE(2323), + [sym_vertical_statement] = STATE(2323), + [sym_topleft_statement] = STATE(2323), + [sym_botright_statement] = STATE(2323), + [sym_aboveleft_statement] = STATE(2323), + [sym_belowright_statement] = STATE(2323), + [sym_user_command] = STATE(2323), + [sym_function_definition] = STATE(2323), + [sym_range_statement] = STATE(2323), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2323), + [sym_map_statement] = STATE(2323), + [sym_sign_statement] = STATE(2323), + [sym_eval_statement] = STATE(2323), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2323), + [sym_augroup_statement] = STATE(2323), + [sym_command_statement] = STATE(2323), + [sym_comclear_statement] = STATE(2323), + [sym_delcommand_statement] = STATE(2323), + [sym_highlight_statement] = STATE(2323), + [sym_syntax_statement] = STATE(2323), + [sym_edit_statement] = STATE(2323), + [sym_enew_statement] = STATE(2323), + [sym_find_statement] = STATE(2323), + [sym_ex_statement] = STATE(2323), + [sym_visual_statement] = STATE(2323), + [sym_view_statement] = STATE(2323), + [aux_sym__statement_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(635), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -57965,15 +57818,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(637), + [sym__newline_or_pipe] = ACTIONS(31), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(637), + [sym_comment] = ACTIONS(31), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__endif] = ACTIONS(639), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), @@ -58056,87 +57908,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [38] = { + [37] = { [sym__cmd_separator] = STATE(109), - [aux_sym__separated_statements] = STATE(33), - [sym__statement] = STATE(2583), - [sym_unknown_builtin_statement] = STATE(2583), - [sym_return_statement] = STATE(2583), - [sym_break_statement] = STATE(2583), - [sym_continue_statement] = STATE(2583), - [sym_normal_statement] = STATE(2583), - [sym_setfiletype_statement] = STATE(2583), - [sym_options_statement] = STATE(2583), - [sym_startinsert_statement] = STATE(2583), - [sym_stopinsert_statement] = STATE(2583), - [sym_scriptencoding_statement] = STATE(2583), - [sym_cnext_statement] = STATE(2583), - [sym_cprevious_statement] = STATE(2583), - [sym_runtime_statement] = STATE(2583), - [sym_wincmd_statement] = STATE(2583), - [sym_source_statement] = STATE(2583), - [sym_global_statement] = STATE(2583), - [sym_filetype_statement] = STATE(2583), - [sym_colorscheme_statement] = STATE(2583), - [sym_lua_statement] = STATE(2583), - [sym_ruby_statement] = STATE(2583), - [sym_python_statement] = STATE(2583), - [sym_perl_statement] = STATE(2583), - [sym_for_loop] = STATE(2583), - [sym_while_loop] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_try_statement] = STATE(2583), - [sym_throw_statement] = STATE(2583), - [sym_bang_filter_statement] = STATE(2583), - [sym_let_statement] = STATE(2583), - [sym_const_statement] = STATE(2583), - [sym_set_statement] = STATE(2583), - [sym_setlocal_statement] = STATE(2583), - [sym_unlet_statement] = STATE(2583), - [sym_call_statement] = STATE(2583), - [sym_echo_statement] = STATE(2583), - [sym_echon_statement] = STATE(2583), - [sym_echohl_statement] = STATE(2583), - [sym_echomsg_statement] = STATE(2583), - [sym_echoerr_statement] = STATE(2583), - [sym_execute_statement] = STATE(2583), - [sym_silent_statement] = STATE(2583), - [sym_vertical_statement] = STATE(2583), - [sym_topleft_statement] = STATE(2583), - [sym_botright_statement] = STATE(2583), - [sym_aboveleft_statement] = STATE(2583), - [sym_belowright_statement] = STATE(2583), - [sym_user_command] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_range_statement] = STATE(2583), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2583), - [sym_map_statement] = STATE(2583), - [sym_sign_statement] = STATE(2583), - [sym_eval_statement] = STATE(2583), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2583), - [sym_augroup_statement] = STATE(2583), - [sym_command_statement] = STATE(2583), - [sym_comclear_statement] = STATE(2583), - [sym_delcommand_statement] = STATE(2583), - [sym_highlight_statement] = STATE(2583), - [sym_syntax_statement] = STATE(2583), - [sym_edit_statement] = STATE(2583), - [sym_enew_statement] = STATE(2583), - [sym_find_statement] = STATE(2583), - [sym_ex_statement] = STATE(2583), - [sym_visual_statement] = STATE(2583), - [sym_view_statement] = STATE(2583), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -58151,14 +58003,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(442), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(442), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(637), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(641), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -58242,87 +58094,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [39] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [38] = { + [sym__cmd_separator] = STATE(112), + [aux_sym__separated_statements] = STATE(24), + [sym__statement] = STATE(2350), + [sym_unknown_builtin_statement] = STATE(2350), + [sym_return_statement] = STATE(2350), + [sym_break_statement] = STATE(2350), + [sym_continue_statement] = STATE(2350), + [sym_normal_statement] = STATE(2350), + [sym_setfiletype_statement] = STATE(2350), + [sym_options_statement] = STATE(2350), + [sym_startinsert_statement] = STATE(2350), + [sym_stopinsert_statement] = STATE(2350), + [sym_scriptencoding_statement] = STATE(2350), + [sym_cnext_statement] = STATE(2350), + [sym_cprevious_statement] = STATE(2350), + [sym_runtime_statement] = STATE(2350), + [sym_wincmd_statement] = STATE(2350), + [sym_source_statement] = STATE(2350), + [sym_global_statement] = STATE(2350), + [sym_filetype_statement] = STATE(2350), + [sym_colorscheme_statement] = STATE(2350), + [sym_lua_statement] = STATE(2350), + [sym_ruby_statement] = STATE(2350), + [sym_python_statement] = STATE(2350), + [sym_perl_statement] = STATE(2350), + [sym_for_loop] = STATE(2350), + [sym_while_loop] = STATE(2350), + [sym_if_statement] = STATE(2350), + [sym_try_statement] = STATE(2350), + [sym_throw_statement] = STATE(2350), + [sym_bang_filter_statement] = STATE(2350), + [sym_let_statement] = STATE(2350), + [sym_const_statement] = STATE(2350), + [sym_set_statement] = STATE(2350), + [sym_setlocal_statement] = STATE(2350), + [sym_unlet_statement] = STATE(2350), + [sym_call_statement] = STATE(2350), + [sym_echo_statement] = STATE(2350), + [sym_echon_statement] = STATE(2350), + [sym_echohl_statement] = STATE(2350), + [sym_echomsg_statement] = STATE(2350), + [sym_echoerr_statement] = STATE(2350), + [sym_execute_statement] = STATE(2350), + [sym_silent_statement] = STATE(2350), + [sym_vertical_statement] = STATE(2350), + [sym_topleft_statement] = STATE(2350), + [sym_botright_statement] = STATE(2350), + [sym_aboveleft_statement] = STATE(2350), + [sym_belowright_statement] = STATE(2350), + [sym_user_command] = STATE(2350), + [sym_function_definition] = STATE(2350), + [sym_range_statement] = STATE(2350), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2350), + [sym_map_statement] = STATE(2350), + [sym_sign_statement] = STATE(2350), + [sym_eval_statement] = STATE(2350), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2350), + [sym_augroup_statement] = STATE(2350), + [sym_command_statement] = STATE(2350), + [sym_comclear_statement] = STATE(2350), + [sym_delcommand_statement] = STATE(2350), + [sym_highlight_statement] = STATE(2350), + [sym_syntax_statement] = STATE(2350), + [sym_edit_statement] = STATE(2350), + [sym_enew_statement] = STATE(2350), + [sym_find_statement] = STATE(2350), + [sym_ex_statement] = STATE(2350), + [sym_visual_statement] = STATE(2350), + [sym_view_statement] = STATE(2350), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -58337,13 +58189,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(446), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(446), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(643), [sym__for] = ACTIONS(35), + [sym__endfor] = ACTIONS(639), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -58428,87 +58280,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [40] = { - [sym__cmd_separator] = STATE(108), - [aux_sym__separated_statements] = STATE(32), - [sym__statement] = STATE(2551), - [sym_unknown_builtin_statement] = STATE(2551), - [sym_return_statement] = STATE(2551), - [sym_break_statement] = STATE(2551), - [sym_continue_statement] = STATE(2551), - [sym_normal_statement] = STATE(2551), - [sym_setfiletype_statement] = STATE(2551), - [sym_options_statement] = STATE(2551), - [sym_startinsert_statement] = STATE(2551), - [sym_stopinsert_statement] = STATE(2551), - [sym_scriptencoding_statement] = STATE(2551), - [sym_cnext_statement] = STATE(2551), - [sym_cprevious_statement] = STATE(2551), - [sym_runtime_statement] = STATE(2551), - [sym_wincmd_statement] = STATE(2551), - [sym_source_statement] = STATE(2551), - [sym_global_statement] = STATE(2551), - [sym_filetype_statement] = STATE(2551), - [sym_colorscheme_statement] = STATE(2551), - [sym_lua_statement] = STATE(2551), - [sym_ruby_statement] = STATE(2551), - [sym_python_statement] = STATE(2551), - [sym_perl_statement] = STATE(2551), - [sym_for_loop] = STATE(2551), - [sym_while_loop] = STATE(2551), - [sym_if_statement] = STATE(2551), - [sym_try_statement] = STATE(2551), - [sym_throw_statement] = STATE(2551), - [sym_bang_filter_statement] = STATE(2551), - [sym_let_statement] = STATE(2551), - [sym_const_statement] = STATE(2551), - [sym_set_statement] = STATE(2551), - [sym_setlocal_statement] = STATE(2551), - [sym_unlet_statement] = STATE(2551), - [sym_call_statement] = STATE(2551), - [sym_echo_statement] = STATE(2551), - [sym_echon_statement] = STATE(2551), - [sym_echohl_statement] = STATE(2551), - [sym_echomsg_statement] = STATE(2551), - [sym_echoerr_statement] = STATE(2551), - [sym_execute_statement] = STATE(2551), - [sym_silent_statement] = STATE(2551), - [sym_vertical_statement] = STATE(2551), - [sym_topleft_statement] = STATE(2551), - [sym_botright_statement] = STATE(2551), - [sym_aboveleft_statement] = STATE(2551), - [sym_belowright_statement] = STATE(2551), - [sym_user_command] = STATE(2551), - [sym_function_definition] = STATE(2551), - [sym_range_statement] = STATE(2551), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2551), - [sym_map_statement] = STATE(2551), - [sym_sign_statement] = STATE(2551), - [sym_eval_statement] = STATE(2551), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2551), - [sym_augroup_statement] = STATE(2551), - [sym_command_statement] = STATE(2551), - [sym_comclear_statement] = STATE(2551), - [sym_delcommand_statement] = STATE(2551), - [sym_highlight_statement] = STATE(2551), - [sym_syntax_statement] = STATE(2551), - [sym_edit_statement] = STATE(2551), - [sym_enew_statement] = STATE(2551), - [sym_find_statement] = STATE(2551), - [sym_ex_statement] = STATE(2551), - [sym_visual_statement] = STATE(2551), - [sym_view_statement] = STATE(2551), - [aux_sym__statement_repeat1] = STATE(92), + [39] = { + [sym__cmd_separator] = STATE(114), + [aux_sym__separated_statements] = STATE(35), + [sym__statement] = STATE(2570), + [sym_unknown_builtin_statement] = STATE(2570), + [sym_return_statement] = STATE(2570), + [sym_break_statement] = STATE(2570), + [sym_continue_statement] = STATE(2570), + [sym_normal_statement] = STATE(2570), + [sym_setfiletype_statement] = STATE(2570), + [sym_options_statement] = STATE(2570), + [sym_startinsert_statement] = STATE(2570), + [sym_stopinsert_statement] = STATE(2570), + [sym_scriptencoding_statement] = STATE(2570), + [sym_cnext_statement] = STATE(2570), + [sym_cprevious_statement] = STATE(2570), + [sym_runtime_statement] = STATE(2570), + [sym_wincmd_statement] = STATE(2570), + [sym_source_statement] = STATE(2570), + [sym_global_statement] = STATE(2570), + [sym_filetype_statement] = STATE(2570), + [sym_colorscheme_statement] = STATE(2570), + [sym_lua_statement] = STATE(2570), + [sym_ruby_statement] = STATE(2570), + [sym_python_statement] = STATE(2570), + [sym_perl_statement] = STATE(2570), + [sym_for_loop] = STATE(2570), + [sym_while_loop] = STATE(2570), + [sym_if_statement] = STATE(2570), + [sym_try_statement] = STATE(2570), + [sym_throw_statement] = STATE(2570), + [sym_bang_filter_statement] = STATE(2570), + [sym_let_statement] = STATE(2570), + [sym_const_statement] = STATE(2570), + [sym_set_statement] = STATE(2570), + [sym_setlocal_statement] = STATE(2570), + [sym_unlet_statement] = STATE(2570), + [sym_call_statement] = STATE(2570), + [sym_echo_statement] = STATE(2570), + [sym_echon_statement] = STATE(2570), + [sym_echohl_statement] = STATE(2570), + [sym_echomsg_statement] = STATE(2570), + [sym_echoerr_statement] = STATE(2570), + [sym_execute_statement] = STATE(2570), + [sym_silent_statement] = STATE(2570), + [sym_vertical_statement] = STATE(2570), + [sym_topleft_statement] = STATE(2570), + [sym_botright_statement] = STATE(2570), + [sym_aboveleft_statement] = STATE(2570), + [sym_belowright_statement] = STATE(2570), + [sym_user_command] = STATE(2570), + [sym_function_definition] = STATE(2570), + [sym_range_statement] = STATE(2570), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2570), + [sym_map_statement] = STATE(2570), + [sym_sign_statement] = STATE(2570), + [sym_eval_statement] = STATE(2570), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2570), + [sym_augroup_statement] = STATE(2570), + [sym_command_statement] = STATE(2570), + [sym_comclear_statement] = STATE(2570), + [sym_delcommand_statement] = STATE(2570), + [sym_highlight_statement] = STATE(2570), + [sym_syntax_statement] = STATE(2570), + [sym_edit_statement] = STATE(2570), + [sym_enew_statement] = STATE(2570), + [sym_find_statement] = STATE(2570), + [sym_ex_statement] = STATE(2570), + [sym_visual_statement] = STATE(2570), + [sym_view_statement] = STATE(2570), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -58523,19 +58375,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(611), + [sym__newline_or_pipe] = ACTIONS(436), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(611), + [sym_comment] = ACTIONS(436), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__endif] = ACTIONS(641), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), - [sym__endtry] = ACTIONS(645), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -58614,273 +58466,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [41] = { - [sym__statement] = STATE(2278), - [sym_unknown_builtin_statement] = STATE(2278), - [sym_return_statement] = STATE(2278), - [sym_break_statement] = STATE(2278), - [sym_continue_statement] = STATE(2278), - [sym_normal_statement] = STATE(2278), - [sym_setfiletype_statement] = STATE(2278), - [sym_options_statement] = STATE(2278), - [sym_startinsert_statement] = STATE(2278), - [sym_stopinsert_statement] = STATE(2278), - [sym_scriptencoding_statement] = STATE(2278), - [sym_cnext_statement] = STATE(2278), - [sym_cprevious_statement] = STATE(2278), - [sym_runtime_statement] = STATE(2278), - [sym_wincmd_statement] = STATE(2278), - [sym_source_statement] = STATE(2278), - [sym_global_statement] = STATE(2278), - [sym_filetype_statement] = STATE(2278), - [sym_colorscheme_statement] = STATE(2278), - [sym_lua_statement] = STATE(2278), - [sym_ruby_statement] = STATE(2278), - [sym_python_statement] = STATE(2278), - [sym_perl_statement] = STATE(2278), - [sym_for_loop] = STATE(2278), - [sym_while_loop] = STATE(2278), - [sym_if_statement] = STATE(2278), - [sym_try_statement] = STATE(2278), - [sym_throw_statement] = STATE(2278), - [sym_bang_filter_statement] = STATE(2278), - [sym_let_statement] = STATE(2278), - [sym_const_statement] = STATE(2278), - [sym_set_statement] = STATE(2278), - [sym_setlocal_statement] = STATE(2278), - [sym_unlet_statement] = STATE(2278), - [sym_call_statement] = STATE(2278), - [sym_echo_statement] = STATE(2278), - [sym_echon_statement] = STATE(2278), - [sym_echohl_statement] = STATE(2278), - [sym_echomsg_statement] = STATE(2278), - [sym_echoerr_statement] = STATE(2278), - [sym_execute_statement] = STATE(2278), - [sym_silent_statement] = STATE(2278), - [sym_vertical_statement] = STATE(2278), - [sym_topleft_statement] = STATE(2278), - [sym_botright_statement] = STATE(2278), - [sym_aboveleft_statement] = STATE(2278), - [sym_belowright_statement] = STATE(2278), - [sym_user_command] = STATE(2278), - [sym_function_definition] = STATE(2278), - [sym_range_statement] = STATE(2278), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2278), - [sym_map_statement] = STATE(2278), - [sym_sign_statement] = STATE(2278), - [sym_eval_statement] = STATE(2278), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2278), - [sym_augroup_statement] = STATE(2278), - [sym_command_statement] = STATE(2278), - [sym_comclear_statement] = STATE(2278), - [sym_delcommand_statement] = STATE(2278), - [sym_highlight_statement] = STATE(2278), - [sym_syntax_statement] = STATE(2278), - [sym_edit_statement] = STATE(2278), - [sym_enew_statement] = STATE(2278), - [sym_find_statement] = STATE(2278), - [sym_ex_statement] = STATE(2278), - [sym_visual_statement] = STATE(2278), - [sym_view_statement] = STATE(2278), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [anon_sym_BSLASH_PIPE] = ACTIONS(647), - [aux_sym__map_rhs_statement_token2] = ACTIONS(647), - [aux_sym__map_rhs_statement_token3] = ACTIONS(647), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_au_once] = ACTIONS(470), - [sym_au_nested] = ACTIONS(472), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [42] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(28), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [40] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(643), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(643), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(226), + [sym__endfunction] = ACTIONS(238), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), + }, + [41] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(32), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -58895,12 +58747,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(649), + [sym__endfunction] = ACTIONS(646), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -58986,273 +58838,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [43] = { - [sym__statement] = STATE(2278), - [sym_unknown_builtin_statement] = STATE(2278), - [sym_return_statement] = STATE(2278), - [sym_break_statement] = STATE(2278), - [sym_continue_statement] = STATE(2278), - [sym_normal_statement] = STATE(2278), - [sym_setfiletype_statement] = STATE(2278), - [sym_options_statement] = STATE(2278), - [sym_startinsert_statement] = STATE(2278), - [sym_stopinsert_statement] = STATE(2278), - [sym_scriptencoding_statement] = STATE(2278), - [sym_cnext_statement] = STATE(2278), - [sym_cprevious_statement] = STATE(2278), - [sym_runtime_statement] = STATE(2278), - [sym_wincmd_statement] = STATE(2278), - [sym_source_statement] = STATE(2278), - [sym_global_statement] = STATE(2278), - [sym_filetype_statement] = STATE(2278), - [sym_colorscheme_statement] = STATE(2278), - [sym_lua_statement] = STATE(2278), - [sym_ruby_statement] = STATE(2278), - [sym_python_statement] = STATE(2278), - [sym_perl_statement] = STATE(2278), - [sym_for_loop] = STATE(2278), - [sym_while_loop] = STATE(2278), - [sym_if_statement] = STATE(2278), - [sym_try_statement] = STATE(2278), - [sym_throw_statement] = STATE(2278), - [sym_bang_filter_statement] = STATE(2278), - [sym_let_statement] = STATE(2278), - [sym_const_statement] = STATE(2278), - [sym_set_statement] = STATE(2278), - [sym_setlocal_statement] = STATE(2278), - [sym_unlet_statement] = STATE(2278), - [sym_call_statement] = STATE(2278), - [sym_echo_statement] = STATE(2278), - [sym_echon_statement] = STATE(2278), - [sym_echohl_statement] = STATE(2278), - [sym_echomsg_statement] = STATE(2278), - [sym_echoerr_statement] = STATE(2278), - [sym_execute_statement] = STATE(2278), - [sym_silent_statement] = STATE(2278), - [sym_vertical_statement] = STATE(2278), - [sym_topleft_statement] = STATE(2278), - [sym_botright_statement] = STATE(2278), - [sym_aboveleft_statement] = STATE(2278), - [sym_belowright_statement] = STATE(2278), - [sym_user_command] = STATE(2278), - [sym_function_definition] = STATE(2278), - [sym_range_statement] = STATE(2278), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2278), - [sym_map_statement] = STATE(2278), - [sym_sign_statement] = STATE(2278), - [sym_eval_statement] = STATE(2278), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2278), - [sym_augroup_statement] = STATE(2278), - [sym_command_statement] = STATE(2278), - [sym_comclear_statement] = STATE(2278), - [sym_delcommand_statement] = STATE(2278), - [sym_highlight_statement] = STATE(2278), - [sym_syntax_statement] = STATE(2278), - [sym_edit_statement] = STATE(2278), - [sym_enew_statement] = STATE(2278), - [sym_find_statement] = STATE(2278), - [sym_ex_statement] = STATE(2278), - [sym_visual_statement] = STATE(2278), - [sym_view_statement] = STATE(2278), + [42] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(20), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [anon_sym_BSLASH_PIPE] = ACTIONS(651), - [aux_sym__map_rhs_statement_token2] = ACTIONS(651), - [aux_sym__map_rhs_statement_token3] = ACTIONS(651), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_au_once] = ACTIONS(470), - [sym_au_nested] = ACTIONS(472), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [44] = { - [sym__cmd_separator] = STATE(114), - [aux_sym__separated_statements] = STATE(46), - [sym__statement] = STATE(2281), - [sym_unknown_builtin_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2281), - [sym_normal_statement] = STATE(2281), - [sym_setfiletype_statement] = STATE(2281), - [sym_options_statement] = STATE(2281), - [sym_startinsert_statement] = STATE(2281), - [sym_stopinsert_statement] = STATE(2281), - [sym_scriptencoding_statement] = STATE(2281), - [sym_cnext_statement] = STATE(2281), - [sym_cprevious_statement] = STATE(2281), - [sym_runtime_statement] = STATE(2281), - [sym_wincmd_statement] = STATE(2281), - [sym_source_statement] = STATE(2281), - [sym_global_statement] = STATE(2281), - [sym_filetype_statement] = STATE(2281), - [sym_colorscheme_statement] = STATE(2281), - [sym_lua_statement] = STATE(2281), - [sym_ruby_statement] = STATE(2281), - [sym_python_statement] = STATE(2281), - [sym_perl_statement] = STATE(2281), - [sym_for_loop] = STATE(2281), - [sym_while_loop] = STATE(2281), - [sym_if_statement] = STATE(2281), - [sym_try_statement] = STATE(2281), - [sym_throw_statement] = STATE(2281), - [sym_bang_filter_statement] = STATE(2281), - [sym_let_statement] = STATE(2281), - [sym_const_statement] = STATE(2281), - [sym_set_statement] = STATE(2281), - [sym_setlocal_statement] = STATE(2281), - [sym_unlet_statement] = STATE(2281), - [sym_call_statement] = STATE(2281), - [sym_echo_statement] = STATE(2281), - [sym_echon_statement] = STATE(2281), - [sym_echohl_statement] = STATE(2281), - [sym_echomsg_statement] = STATE(2281), - [sym_echoerr_statement] = STATE(2281), - [sym_execute_statement] = STATE(2281), - [sym_silent_statement] = STATE(2281), - [sym_vertical_statement] = STATE(2281), - [sym_topleft_statement] = STATE(2281), - [sym_botright_statement] = STATE(2281), - [sym_aboveleft_statement] = STATE(2281), - [sym_belowright_statement] = STATE(2281), - [sym_user_command] = STATE(2281), - [sym_function_definition] = STATE(2281), - [sym_range_statement] = STATE(2281), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2281), - [sym_map_statement] = STATE(2281), - [sym_sign_statement] = STATE(2281), - [sym_eval_statement] = STATE(2281), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2281), - [sym_augroup_statement] = STATE(2281), - [sym_command_statement] = STATE(2281), - [sym_comclear_statement] = STATE(2281), - [sym_delcommand_statement] = STATE(2281), - [sym_highlight_statement] = STATE(2281), - [sym_syntax_statement] = STATE(2281), - [sym_edit_statement] = STATE(2281), - [sym_enew_statement] = STATE(2281), - [sym_find_statement] = STATE(2281), - [sym_ex_statement] = STATE(2281), - [sym_visual_statement] = STATE(2281), - [sym_view_statement] = STATE(2281), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -59267,13 +58933,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(436), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(436), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(648), [sym__for] = ACTIONS(35), - [sym__endfor] = ACTIONS(653), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -59358,87 +59024,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [45] = { - [sym__cmd_separator] = STATE(114), - [aux_sym__separated_statements] = STATE(30), - [sym__statement] = STATE(2281), - [sym_unknown_builtin_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2281), - [sym_normal_statement] = STATE(2281), - [sym_setfiletype_statement] = STATE(2281), - [sym_options_statement] = STATE(2281), - [sym_startinsert_statement] = STATE(2281), - [sym_stopinsert_statement] = STATE(2281), - [sym_scriptencoding_statement] = STATE(2281), - [sym_cnext_statement] = STATE(2281), - [sym_cprevious_statement] = STATE(2281), - [sym_runtime_statement] = STATE(2281), - [sym_wincmd_statement] = STATE(2281), - [sym_source_statement] = STATE(2281), - [sym_global_statement] = STATE(2281), - [sym_filetype_statement] = STATE(2281), - [sym_colorscheme_statement] = STATE(2281), - [sym_lua_statement] = STATE(2281), - [sym_ruby_statement] = STATE(2281), - [sym_python_statement] = STATE(2281), - [sym_perl_statement] = STATE(2281), - [sym_for_loop] = STATE(2281), - [sym_while_loop] = STATE(2281), - [sym_if_statement] = STATE(2281), - [sym_try_statement] = STATE(2281), - [sym_throw_statement] = STATE(2281), - [sym_bang_filter_statement] = STATE(2281), - [sym_let_statement] = STATE(2281), - [sym_const_statement] = STATE(2281), - [sym_set_statement] = STATE(2281), - [sym_setlocal_statement] = STATE(2281), - [sym_unlet_statement] = STATE(2281), - [sym_call_statement] = STATE(2281), - [sym_echo_statement] = STATE(2281), - [sym_echon_statement] = STATE(2281), - [sym_echohl_statement] = STATE(2281), - [sym_echomsg_statement] = STATE(2281), - [sym_echoerr_statement] = STATE(2281), - [sym_execute_statement] = STATE(2281), - [sym_silent_statement] = STATE(2281), - [sym_vertical_statement] = STATE(2281), - [sym_topleft_statement] = STATE(2281), - [sym_botright_statement] = STATE(2281), - [sym_aboveleft_statement] = STATE(2281), - [sym_belowright_statement] = STATE(2281), - [sym_user_command] = STATE(2281), - [sym_function_definition] = STATE(2281), - [sym_range_statement] = STATE(2281), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2281), - [sym_map_statement] = STATE(2281), - [sym_sign_statement] = STATE(2281), - [sym_eval_statement] = STATE(2281), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2281), - [sym_augroup_statement] = STATE(2281), - [sym_command_statement] = STATE(2281), - [sym_comclear_statement] = STATE(2281), - [sym_delcommand_statement] = STATE(2281), - [sym_highlight_statement] = STATE(2281), - [sym_syntax_statement] = STATE(2281), - [sym_edit_statement] = STATE(2281), - [sym_enew_statement] = STATE(2281), - [sym_find_statement] = STATE(2281), - [sym_ex_statement] = STATE(2281), - [sym_visual_statement] = STATE(2281), - [sym_view_statement] = STATE(2281), - [aux_sym__statement_repeat1] = STATE(92), + [43] = { + [sym__cmd_separator] = STATE(112), + [aux_sym__separated_statements] = STATE(43), + [sym__statement] = STATE(2350), + [sym_unknown_builtin_statement] = STATE(2350), + [sym_return_statement] = STATE(2350), + [sym_break_statement] = STATE(2350), + [sym_continue_statement] = STATE(2350), + [sym_normal_statement] = STATE(2350), + [sym_setfiletype_statement] = STATE(2350), + [sym_options_statement] = STATE(2350), + [sym_startinsert_statement] = STATE(2350), + [sym_stopinsert_statement] = STATE(2350), + [sym_scriptencoding_statement] = STATE(2350), + [sym_cnext_statement] = STATE(2350), + [sym_cprevious_statement] = STATE(2350), + [sym_runtime_statement] = STATE(2350), + [sym_wincmd_statement] = STATE(2350), + [sym_source_statement] = STATE(2350), + [sym_global_statement] = STATE(2350), + [sym_filetype_statement] = STATE(2350), + [sym_colorscheme_statement] = STATE(2350), + [sym_lua_statement] = STATE(2350), + [sym_ruby_statement] = STATE(2350), + [sym_python_statement] = STATE(2350), + [sym_perl_statement] = STATE(2350), + [sym_for_loop] = STATE(2350), + [sym_while_loop] = STATE(2350), + [sym_if_statement] = STATE(2350), + [sym_try_statement] = STATE(2350), + [sym_throw_statement] = STATE(2350), + [sym_bang_filter_statement] = STATE(2350), + [sym_let_statement] = STATE(2350), + [sym_const_statement] = STATE(2350), + [sym_set_statement] = STATE(2350), + [sym_setlocal_statement] = STATE(2350), + [sym_unlet_statement] = STATE(2350), + [sym_call_statement] = STATE(2350), + [sym_echo_statement] = STATE(2350), + [sym_echon_statement] = STATE(2350), + [sym_echohl_statement] = STATE(2350), + [sym_echomsg_statement] = STATE(2350), + [sym_echoerr_statement] = STATE(2350), + [sym_execute_statement] = STATE(2350), + [sym_silent_statement] = STATE(2350), + [sym_vertical_statement] = STATE(2350), + [sym_topleft_statement] = STATE(2350), + [sym_botright_statement] = STATE(2350), + [sym_aboveleft_statement] = STATE(2350), + [sym_belowright_statement] = STATE(2350), + [sym_user_command] = STATE(2350), + [sym_function_definition] = STATE(2350), + [sym_range_statement] = STATE(2350), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2350), + [sym_map_statement] = STATE(2350), + [sym_sign_statement] = STATE(2350), + [sym_eval_statement] = STATE(2350), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2350), + [sym_augroup_statement] = STATE(2350), + [sym_command_statement] = STATE(2350), + [sym_comclear_statement] = STATE(2350), + [sym_delcommand_statement] = STATE(2350), + [sym_highlight_statement] = STATE(2350), + [sym_syntax_statement] = STATE(2350), + [sym_edit_statement] = STATE(2350), + [sym_enew_statement] = STATE(2350), + [sym_find_statement] = STATE(2350), + [sym_ex_statement] = STATE(2350), + [sym_visual_statement] = STATE(2350), + [sym_view_statement] = STATE(2350), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(650), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(650), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__endfor] = ACTIONS(238), + [sym__while] = ACTIONS(232), + [sym__if] = ACTIONS(235), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), + }, + [44] = { + [sym__cmd_separator] = STATE(116), + [aux_sym__separated_statements] = STATE(52), + [sym__statement] = STATE(2617), + [sym_unknown_builtin_statement] = STATE(2617), + [sym_return_statement] = STATE(2617), + [sym_break_statement] = STATE(2617), + [sym_continue_statement] = STATE(2617), + [sym_normal_statement] = STATE(2617), + [sym_setfiletype_statement] = STATE(2617), + [sym_options_statement] = STATE(2617), + [sym_startinsert_statement] = STATE(2617), + [sym_stopinsert_statement] = STATE(2617), + [sym_scriptencoding_statement] = STATE(2617), + [sym_cnext_statement] = STATE(2617), + [sym_cprevious_statement] = STATE(2617), + [sym_runtime_statement] = STATE(2617), + [sym_wincmd_statement] = STATE(2617), + [sym_source_statement] = STATE(2617), + [sym_global_statement] = STATE(2617), + [sym_filetype_statement] = STATE(2617), + [sym_colorscheme_statement] = STATE(2617), + [sym_lua_statement] = STATE(2617), + [sym_ruby_statement] = STATE(2617), + [sym_python_statement] = STATE(2617), + [sym_perl_statement] = STATE(2617), + [sym_for_loop] = STATE(2617), + [sym_while_loop] = STATE(2617), + [sym_if_statement] = STATE(2617), + [sym_try_statement] = STATE(2617), + [sym_throw_statement] = STATE(2617), + [sym_bang_filter_statement] = STATE(2617), + [sym_let_statement] = STATE(2617), + [sym_const_statement] = STATE(2617), + [sym_set_statement] = STATE(2617), + [sym_setlocal_statement] = STATE(2617), + [sym_unlet_statement] = STATE(2617), + [sym_call_statement] = STATE(2617), + [sym_echo_statement] = STATE(2617), + [sym_echon_statement] = STATE(2617), + [sym_echohl_statement] = STATE(2617), + [sym_echomsg_statement] = STATE(2617), + [sym_echoerr_statement] = STATE(2617), + [sym_execute_statement] = STATE(2617), + [sym_silent_statement] = STATE(2617), + [sym_vertical_statement] = STATE(2617), + [sym_topleft_statement] = STATE(2617), + [sym_botright_statement] = STATE(2617), + [sym_aboveleft_statement] = STATE(2617), + [sym_belowright_statement] = STATE(2617), + [sym_user_command] = STATE(2617), + [sym_function_definition] = STATE(2617), + [sym_range_statement] = STATE(2617), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2617), + [sym_map_statement] = STATE(2617), + [sym_sign_statement] = STATE(2617), + [sym_eval_statement] = STATE(2617), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2617), + [sym_augroup_statement] = STATE(2617), + [sym_command_statement] = STATE(2617), + [sym_comclear_statement] = STATE(2617), + [sym_delcommand_statement] = STATE(2617), + [sym_highlight_statement] = STATE(2617), + [sym_syntax_statement] = STATE(2617), + [sym_edit_statement] = STATE(2617), + [sym_enew_statement] = STATE(2617), + [sym_find_statement] = STATE(2617), + [sym_ex_statement] = STATE(2617), + [sym_visual_statement] = STATE(2617), + [sym_view_statement] = STATE(2617), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -59453,14 +59305,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(436), + [sym__newline_or_pipe] = ACTIONS(432), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(436), + [sym_comment] = ACTIONS(432), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), - [sym__endfor] = ACTIONS(655), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(653), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -59544,87 +59396,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [46] = { - [sym__cmd_separator] = STATE(114), - [aux_sym__separated_statements] = STATE(30), - [sym__statement] = STATE(2281), - [sym_unknown_builtin_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2281), - [sym_normal_statement] = STATE(2281), - [sym_setfiletype_statement] = STATE(2281), - [sym_options_statement] = STATE(2281), - [sym_startinsert_statement] = STATE(2281), - [sym_stopinsert_statement] = STATE(2281), - [sym_scriptencoding_statement] = STATE(2281), - [sym_cnext_statement] = STATE(2281), - [sym_cprevious_statement] = STATE(2281), - [sym_runtime_statement] = STATE(2281), - [sym_wincmd_statement] = STATE(2281), - [sym_source_statement] = STATE(2281), - [sym_global_statement] = STATE(2281), - [sym_filetype_statement] = STATE(2281), - [sym_colorscheme_statement] = STATE(2281), - [sym_lua_statement] = STATE(2281), - [sym_ruby_statement] = STATE(2281), - [sym_python_statement] = STATE(2281), - [sym_perl_statement] = STATE(2281), - [sym_for_loop] = STATE(2281), - [sym_while_loop] = STATE(2281), - [sym_if_statement] = STATE(2281), - [sym_try_statement] = STATE(2281), - [sym_throw_statement] = STATE(2281), - [sym_bang_filter_statement] = STATE(2281), - [sym_let_statement] = STATE(2281), - [sym_const_statement] = STATE(2281), - [sym_set_statement] = STATE(2281), - [sym_setlocal_statement] = STATE(2281), - [sym_unlet_statement] = STATE(2281), - [sym_call_statement] = STATE(2281), - [sym_echo_statement] = STATE(2281), - [sym_echon_statement] = STATE(2281), - [sym_echohl_statement] = STATE(2281), - [sym_echomsg_statement] = STATE(2281), - [sym_echoerr_statement] = STATE(2281), - [sym_execute_statement] = STATE(2281), - [sym_silent_statement] = STATE(2281), - [sym_vertical_statement] = STATE(2281), - [sym_topleft_statement] = STATE(2281), - [sym_botright_statement] = STATE(2281), - [sym_aboveleft_statement] = STATE(2281), - [sym_belowright_statement] = STATE(2281), - [sym_user_command] = STATE(2281), - [sym_function_definition] = STATE(2281), - [sym_range_statement] = STATE(2281), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2281), - [sym_map_statement] = STATE(2281), - [sym_sign_statement] = STATE(2281), - [sym_eval_statement] = STATE(2281), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2281), - [sym_augroup_statement] = STATE(2281), - [sym_command_statement] = STATE(2281), - [sym_comclear_statement] = STATE(2281), - [sym_delcommand_statement] = STATE(2281), - [sym_highlight_statement] = STATE(2281), - [sym_syntax_statement] = STATE(2281), - [sym_edit_statement] = STATE(2281), - [sym_enew_statement] = STATE(2281), - [sym_find_statement] = STATE(2281), - [sym_ex_statement] = STATE(2281), - [sym_visual_statement] = STATE(2281), - [sym_view_statement] = STATE(2281), - [aux_sym__statement_repeat1] = STATE(92), + [45] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -59639,13 +59491,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(436), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(436), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(655), [sym__for] = ACTIONS(35), - [sym__endfor] = ACTIONS(657), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -59730,9 +59582,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, + [46] = { + [sym__cmd_separator] = STATE(116), + [aux_sym__separated_statements] = STATE(46), + [sym__statement] = STATE(2617), + [sym_unknown_builtin_statement] = STATE(2617), + [sym_return_statement] = STATE(2617), + [sym_break_statement] = STATE(2617), + [sym_continue_statement] = STATE(2617), + [sym_normal_statement] = STATE(2617), + [sym_setfiletype_statement] = STATE(2617), + [sym_options_statement] = STATE(2617), + [sym_startinsert_statement] = STATE(2617), + [sym_stopinsert_statement] = STATE(2617), + [sym_scriptencoding_statement] = STATE(2617), + [sym_cnext_statement] = STATE(2617), + [sym_cprevious_statement] = STATE(2617), + [sym_runtime_statement] = STATE(2617), + [sym_wincmd_statement] = STATE(2617), + [sym_source_statement] = STATE(2617), + [sym_global_statement] = STATE(2617), + [sym_filetype_statement] = STATE(2617), + [sym_colorscheme_statement] = STATE(2617), + [sym_lua_statement] = STATE(2617), + [sym_ruby_statement] = STATE(2617), + [sym_python_statement] = STATE(2617), + [sym_perl_statement] = STATE(2617), + [sym_for_loop] = STATE(2617), + [sym_while_loop] = STATE(2617), + [sym_if_statement] = STATE(2617), + [sym_try_statement] = STATE(2617), + [sym_throw_statement] = STATE(2617), + [sym_bang_filter_statement] = STATE(2617), + [sym_let_statement] = STATE(2617), + [sym_const_statement] = STATE(2617), + [sym_set_statement] = STATE(2617), + [sym_setlocal_statement] = STATE(2617), + [sym_unlet_statement] = STATE(2617), + [sym_call_statement] = STATE(2617), + [sym_echo_statement] = STATE(2617), + [sym_echon_statement] = STATE(2617), + [sym_echohl_statement] = STATE(2617), + [sym_echomsg_statement] = STATE(2617), + [sym_echoerr_statement] = STATE(2617), + [sym_execute_statement] = STATE(2617), + [sym_silent_statement] = STATE(2617), + [sym_vertical_statement] = STATE(2617), + [sym_topleft_statement] = STATE(2617), + [sym_botright_statement] = STATE(2617), + [sym_aboveleft_statement] = STATE(2617), + [sym_belowright_statement] = STATE(2617), + [sym_user_command] = STATE(2617), + [sym_function_definition] = STATE(2617), + [sym_range_statement] = STATE(2617), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2617), + [sym_map_statement] = STATE(2617), + [sym_sign_statement] = STATE(2617), + [sym_eval_statement] = STATE(2617), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2617), + [sym_augroup_statement] = STATE(2617), + [sym_command_statement] = STATE(2617), + [sym_comclear_statement] = STATE(2617), + [sym_delcommand_statement] = STATE(2617), + [sym_highlight_statement] = STATE(2617), + [sym_syntax_statement] = STATE(2617), + [sym_edit_statement] = STATE(2617), + [sym_enew_statement] = STATE(2617), + [sym_find_statement] = STATE(2617), + [sym_ex_statement] = STATE(2617), + [sym_visual_statement] = STATE(2617), + [sym_view_statement] = STATE(2617), + [aux_sym__statement_repeat1] = STATE(93), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(190), + [sym_mark] = ACTIONS(193), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(202), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_BSLASH_SLASH] = ACTIONS(211), + [anon_sym_BSLASH_QMARK] = ACTIONS(211), + [anon_sym_BSLASH_AMP] = ACTIONS(211), + [sym_integer_literal] = ACTIONS(214), + [sym_register] = ACTIONS(217), + [sym_command_name] = ACTIONS(220), + [sym__newline_or_pipe] = ACTIONS(657), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(657), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(226), + [sym__for] = ACTIONS(229), + [sym__while] = ACTIONS(232), + [sym__endwhile] = ACTIONS(238), + [sym__if] = ACTIONS(235), + [sym__try] = ACTIONS(240), + [sym__cnext] = ACTIONS(243), + [sym__cprevious] = ACTIONS(246), + [sym__cNext] = ACTIONS(246), + [sym__const] = ACTIONS(249), + [sym__normal] = ACTIONS(252), + [sym__return] = ACTIONS(255), + [sym__perl] = ACTIONS(258), + [sym__lua] = ACTIONS(261), + [sym__ruby] = ACTIONS(264), + [sym__python] = ACTIONS(267), + [sym__throw] = ACTIONS(270), + [sym__execute] = ACTIONS(273), + [sym__autocmd] = ACTIONS(276), + [sym__silent] = ACTIONS(279), + [sym__echo] = ACTIONS(282), + [sym__echon] = ACTIONS(285), + [sym__echohl] = ACTIONS(288), + [sym__echomsg] = ACTIONS(291), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(297), + [sym__nmap] = ACTIONS(297), + [sym__vmap] = ACTIONS(297), + [sym__xmap] = ACTIONS(297), + [sym__smap] = ACTIONS(297), + [sym__omap] = ACTIONS(297), + [sym__imap] = ACTIONS(297), + [sym__lmap] = ACTIONS(297), + [sym__cmap] = ACTIONS(297), + [sym__tmap] = ACTIONS(297), + [sym__noremap] = ACTIONS(297), + [sym__nnoremap] = ACTIONS(297), + [sym__vnoremap] = ACTIONS(297), + [sym__xnoremap] = ACTIONS(297), + [sym__snoremap] = ACTIONS(297), + [sym__onoremap] = ACTIONS(297), + [sym__inoremap] = ACTIONS(297), + [sym__lnoremap] = ACTIONS(297), + [sym__cnoremap] = ACTIONS(297), + [sym__tnoremap] = ACTIONS(297), + [sym__augroup] = ACTIONS(300), + [sym__highlight] = ACTIONS(303), + [sym__syntax] = ACTIONS(306), + [sym__set] = ACTIONS(309), + [sym__setlocal] = ACTIONS(312), + [sym__setfiletype] = ACTIONS(315), + [sym__browse] = ACTIONS(318), + [sym__options] = ACTIONS(321), + [sym__startinsert] = ACTIONS(324), + [sym__stopinsert] = ACTIONS(327), + [sym__scriptencoding] = ACTIONS(330), + [sym__source] = ACTIONS(333), + [sym__global] = ACTIONS(336), + [sym__colorscheme] = ACTIONS(339), + [sym__command] = ACTIONS(342), + [sym__comclear] = ACTIONS(345), + [sym__delcommand] = ACTIONS(348), + [sym__runtime] = ACTIONS(351), + [sym__wincmd] = ACTIONS(354), + [sym__sign] = ACTIONS(357), + [sym__filetype] = ACTIONS(360), + [sym__let] = ACTIONS(363), + [sym__unlet] = ACTIONS(366), + [sym__call] = ACTIONS(369), + [sym__break] = ACTIONS(372), + [sym__continue] = ACTIONS(375), + [sym__vertical] = ACTIONS(378), + [sym__leftabove] = ACTIONS(381), + [sym__aboveleft] = ACTIONS(381), + [sym__rightbelow] = ACTIONS(384), + [sym__belowright] = ACTIONS(384), + [sym__topleft] = ACTIONS(387), + [sym__botright] = ACTIONS(390), + [sym__edit] = ACTIONS(393), + [sym__enew] = ACTIONS(396), + [sym__find] = ACTIONS(399), + [sym__ex] = ACTIONS(402), + [sym__visual] = ACTIONS(405), + [sym__view] = ACTIONS(408), + [sym__eval] = ACTIONS(411), + [sym_unknown_command_name] = ACTIONS(414), + }, [47] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), + [sym__cmd_separator] = STATE(113), + [aux_sym__separated_statements] = STATE(29), [sym__statement] = STATE(2351), [sym_unknown_builtin_statement] = STATE(2351), [sym_return_statement] = STATE(2351), @@ -59783,20 +59821,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_user_command] = STATE(2351), [sym_function_definition] = STATE(2351), [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), [sym_register_statement] = STATE(2351), [sym_map_statement] = STATE(2351), [sym_sign_statement] = STATE(2351), [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), [sym_autocmd_statement] = STATE(2351), [sym_augroup_statement] = STATE(2351), [sym_command_statement] = STATE(2351), @@ -59810,7 +59848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ex_statement] = STATE(2351), [sym_visual_statement] = STATE(2351), [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -59825,12 +59863,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(617), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(617), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(659), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -59838,6 +59875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), [sym__cNext] = ACTIONS(45), + [sym__endtry] = ACTIONS(660), [sym__const] = ACTIONS(47), [sym__normal] = ACTIONS(49), [sym__return] = ACTIONS(51), @@ -59917,86 +59955,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [48] = { - [sym__cmd_separator] = STATE(116), - [aux_sym__separated_statements] = STATE(31), - [sym__statement] = STATE(2420), - [sym_unknown_builtin_statement] = STATE(2420), - [sym_return_statement] = STATE(2420), - [sym_break_statement] = STATE(2420), - [sym_continue_statement] = STATE(2420), - [sym_normal_statement] = STATE(2420), - [sym_setfiletype_statement] = STATE(2420), - [sym_options_statement] = STATE(2420), - [sym_startinsert_statement] = STATE(2420), - [sym_stopinsert_statement] = STATE(2420), - [sym_scriptencoding_statement] = STATE(2420), - [sym_cnext_statement] = STATE(2420), - [sym_cprevious_statement] = STATE(2420), - [sym_runtime_statement] = STATE(2420), - [sym_wincmd_statement] = STATE(2420), - [sym_source_statement] = STATE(2420), - [sym_global_statement] = STATE(2420), - [sym_filetype_statement] = STATE(2420), - [sym_colorscheme_statement] = STATE(2420), - [sym_lua_statement] = STATE(2420), - [sym_ruby_statement] = STATE(2420), - [sym_python_statement] = STATE(2420), - [sym_perl_statement] = STATE(2420), - [sym_for_loop] = STATE(2420), - [sym_while_loop] = STATE(2420), - [sym_if_statement] = STATE(2420), - [sym_try_statement] = STATE(2420), - [sym_throw_statement] = STATE(2420), - [sym_bang_filter_statement] = STATE(2420), - [sym_let_statement] = STATE(2420), - [sym_const_statement] = STATE(2420), - [sym_set_statement] = STATE(2420), - [sym_setlocal_statement] = STATE(2420), - [sym_unlet_statement] = STATE(2420), - [sym_call_statement] = STATE(2420), - [sym_echo_statement] = STATE(2420), - [sym_echon_statement] = STATE(2420), - [sym_echohl_statement] = STATE(2420), - [sym_echomsg_statement] = STATE(2420), - [sym_echoerr_statement] = STATE(2420), - [sym_execute_statement] = STATE(2420), - [sym_silent_statement] = STATE(2420), - [sym_vertical_statement] = STATE(2420), - [sym_topleft_statement] = STATE(2420), - [sym_botright_statement] = STATE(2420), - [sym_aboveleft_statement] = STATE(2420), - [sym_belowright_statement] = STATE(2420), - [sym_user_command] = STATE(2420), - [sym_function_definition] = STATE(2420), - [sym_range_statement] = STATE(2420), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2420), - [sym_map_statement] = STATE(2420), - [sym_sign_statement] = STATE(2420), - [sym_eval_statement] = STATE(2420), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2420), - [sym_augroup_statement] = STATE(2420), - [sym_command_statement] = STATE(2420), - [sym_comclear_statement] = STATE(2420), - [sym_delcommand_statement] = STATE(2420), - [sym_highlight_statement] = STATE(2420), - [sym_syntax_statement] = STATE(2420), - [sym_edit_statement] = STATE(2420), - [sym_enew_statement] = STATE(2420), - [sym_find_statement] = STATE(2420), - [sym_ex_statement] = STATE(2420), - [sym_visual_statement] = STATE(2420), - [sym_view_statement] = STATE(2420), - [aux_sym__statement_repeat1] = STATE(92), + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -60011,15 +60049,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(637), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(637), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(662), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__endif] = ACTIONS(661), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), [sym__cprevious] = ACTIONS(45), @@ -60103,87 +60141,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [49] = { - [sym__cmd_separator] = STATE(112), - [aux_sym__separated_statements] = STATE(23), - [sym__statement] = STATE(2391), - [sym_unknown_builtin_statement] = STATE(2391), - [sym_return_statement] = STATE(2391), - [sym_break_statement] = STATE(2391), - [sym_continue_statement] = STATE(2391), - [sym_normal_statement] = STATE(2391), - [sym_setfiletype_statement] = STATE(2391), - [sym_options_statement] = STATE(2391), - [sym_startinsert_statement] = STATE(2391), - [sym_stopinsert_statement] = STATE(2391), - [sym_scriptencoding_statement] = STATE(2391), - [sym_cnext_statement] = STATE(2391), - [sym_cprevious_statement] = STATE(2391), - [sym_runtime_statement] = STATE(2391), - [sym_wincmd_statement] = STATE(2391), - [sym_source_statement] = STATE(2391), - [sym_global_statement] = STATE(2391), - [sym_filetype_statement] = STATE(2391), - [sym_colorscheme_statement] = STATE(2391), - [sym_lua_statement] = STATE(2391), - [sym_ruby_statement] = STATE(2391), - [sym_python_statement] = STATE(2391), - [sym_perl_statement] = STATE(2391), - [sym_for_loop] = STATE(2391), - [sym_while_loop] = STATE(2391), - [sym_if_statement] = STATE(2391), - [sym_try_statement] = STATE(2391), - [sym_throw_statement] = STATE(2391), - [sym_bang_filter_statement] = STATE(2391), - [sym_let_statement] = STATE(2391), - [sym_const_statement] = STATE(2391), - [sym_set_statement] = STATE(2391), - [sym_setlocal_statement] = STATE(2391), - [sym_unlet_statement] = STATE(2391), - [sym_call_statement] = STATE(2391), - [sym_echo_statement] = STATE(2391), - [sym_echon_statement] = STATE(2391), - [sym_echohl_statement] = STATE(2391), - [sym_echomsg_statement] = STATE(2391), - [sym_echoerr_statement] = STATE(2391), - [sym_execute_statement] = STATE(2391), - [sym_silent_statement] = STATE(2391), - [sym_vertical_statement] = STATE(2391), - [sym_topleft_statement] = STATE(2391), - [sym_botright_statement] = STATE(2391), - [sym_aboveleft_statement] = STATE(2391), - [sym_belowright_statement] = STATE(2391), - [sym_user_command] = STATE(2391), - [sym_function_definition] = STATE(2391), - [sym_range_statement] = STATE(2391), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2391), - [sym_map_statement] = STATE(2391), - [sym_sign_statement] = STATE(2391), - [sym_eval_statement] = STATE(2391), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2391), - [sym_augroup_statement] = STATE(2391), - [sym_command_statement] = STATE(2391), - [sym_comclear_statement] = STATE(2391), - [sym_delcommand_statement] = STATE(2391), - [sym_highlight_statement] = STATE(2391), - [sym_syntax_statement] = STATE(2391), - [sym_edit_statement] = STATE(2391), - [sym_enew_statement] = STATE(2391), - [sym_find_statement] = STATE(2391), - [sym_ex_statement] = STATE(2391), - [sym_visual_statement] = STATE(2391), - [sym_view_statement] = STATE(2391), + [sym__statement] = STATE(2448), + [sym_unknown_builtin_statement] = STATE(2448), + [sym_return_statement] = STATE(2448), + [sym_break_statement] = STATE(2448), + [sym_continue_statement] = STATE(2448), + [sym_normal_statement] = STATE(2448), + [sym_setfiletype_statement] = STATE(2448), + [sym_options_statement] = STATE(2448), + [sym_startinsert_statement] = STATE(2448), + [sym_stopinsert_statement] = STATE(2448), + [sym_scriptencoding_statement] = STATE(2448), + [sym_cnext_statement] = STATE(2448), + [sym_cprevious_statement] = STATE(2448), + [sym_runtime_statement] = STATE(2448), + [sym_wincmd_statement] = STATE(2448), + [sym_source_statement] = STATE(2448), + [sym_global_statement] = STATE(2448), + [sym_filetype_statement] = STATE(2448), + [sym_colorscheme_statement] = STATE(2448), + [sym_lua_statement] = STATE(2448), + [sym_ruby_statement] = STATE(2448), + [sym_python_statement] = STATE(2448), + [sym_perl_statement] = STATE(2448), + [sym_for_loop] = STATE(2448), + [sym_while_loop] = STATE(2448), + [sym_if_statement] = STATE(2448), + [sym_try_statement] = STATE(2448), + [sym_throw_statement] = STATE(2448), + [sym_bang_filter_statement] = STATE(2448), + [sym_let_statement] = STATE(2448), + [sym_const_statement] = STATE(2448), + [sym_set_statement] = STATE(2448), + [sym_setlocal_statement] = STATE(2448), + [sym_unlet_statement] = STATE(2448), + [sym_call_statement] = STATE(2448), + [sym_echo_statement] = STATE(2448), + [sym_echon_statement] = STATE(2448), + [sym_echohl_statement] = STATE(2448), + [sym_echomsg_statement] = STATE(2448), + [sym_echoerr_statement] = STATE(2448), + [sym_execute_statement] = STATE(2448), + [sym_silent_statement] = STATE(2448), + [sym_vertical_statement] = STATE(2448), + [sym_topleft_statement] = STATE(2448), + [sym_botright_statement] = STATE(2448), + [sym_aboveleft_statement] = STATE(2448), + [sym_belowright_statement] = STATE(2448), + [sym_user_command] = STATE(2448), + [sym_function_definition] = STATE(2448), + [sym_range_statement] = STATE(2448), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2448), + [sym_map_statement] = STATE(2448), + [sym_sign_statement] = STATE(2448), + [sym_eval_statement] = STATE(2448), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2448), + [sym_augroup_statement] = STATE(2448), + [sym_command_statement] = STATE(2448), + [sym_comclear_statement] = STATE(2448), + [sym_delcommand_statement] = STATE(2448), + [sym_highlight_statement] = STATE(2448), + [sym_syntax_statement] = STATE(2448), + [sym_edit_statement] = STATE(2448), + [sym_enew_statement] = STATE(2448), + [sym_find_statement] = STATE(2448), + [sym_ex_statement] = STATE(2448), + [sym_visual_statement] = STATE(2448), + [sym_view_statement] = STATE(2448), [aux_sym__statement_repeat1] = STATE(92), - [ts_builtin_sym_end] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [anon_sym_BSLASH_PIPE] = ACTIONS(664), + [aux_sym__map_rhs_statement_token2] = ACTIONS(664), + [aux_sym__map_rhs_statement_token3] = ACTIONS(664), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_au_once] = ACTIONS(474), + [sym_au_nested] = ACTIONS(476), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [50] = { + [sym__cmd_separator] = STATE(112), + [aux_sym__separated_statements] = STATE(22), + [sym__statement] = STATE(2350), + [sym_unknown_builtin_statement] = STATE(2350), + [sym_return_statement] = STATE(2350), + [sym_break_statement] = STATE(2350), + [sym_continue_statement] = STATE(2350), + [sym_normal_statement] = STATE(2350), + [sym_setfiletype_statement] = STATE(2350), + [sym_options_statement] = STATE(2350), + [sym_startinsert_statement] = STATE(2350), + [sym_stopinsert_statement] = STATE(2350), + [sym_scriptencoding_statement] = STATE(2350), + [sym_cnext_statement] = STATE(2350), + [sym_cprevious_statement] = STATE(2350), + [sym_runtime_statement] = STATE(2350), + [sym_wincmd_statement] = STATE(2350), + [sym_source_statement] = STATE(2350), + [sym_global_statement] = STATE(2350), + [sym_filetype_statement] = STATE(2350), + [sym_colorscheme_statement] = STATE(2350), + [sym_lua_statement] = STATE(2350), + [sym_ruby_statement] = STATE(2350), + [sym_python_statement] = STATE(2350), + [sym_perl_statement] = STATE(2350), + [sym_for_loop] = STATE(2350), + [sym_while_loop] = STATE(2350), + [sym_if_statement] = STATE(2350), + [sym_try_statement] = STATE(2350), + [sym_throw_statement] = STATE(2350), + [sym_bang_filter_statement] = STATE(2350), + [sym_let_statement] = STATE(2350), + [sym_const_statement] = STATE(2350), + [sym_set_statement] = STATE(2350), + [sym_setlocal_statement] = STATE(2350), + [sym_unlet_statement] = STATE(2350), + [sym_call_statement] = STATE(2350), + [sym_echo_statement] = STATE(2350), + [sym_echon_statement] = STATE(2350), + [sym_echohl_statement] = STATE(2350), + [sym_echomsg_statement] = STATE(2350), + [sym_echoerr_statement] = STATE(2350), + [sym_execute_statement] = STATE(2350), + [sym_silent_statement] = STATE(2350), + [sym_vertical_statement] = STATE(2350), + [sym_topleft_statement] = STATE(2350), + [sym_botright_statement] = STATE(2350), + [sym_aboveleft_statement] = STATE(2350), + [sym_belowright_statement] = STATE(2350), + [sym_user_command] = STATE(2350), + [sym_function_definition] = STATE(2350), + [sym_range_statement] = STATE(2350), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2350), + [sym_map_statement] = STATE(2350), + [sym_sign_statement] = STATE(2350), + [sym_eval_statement] = STATE(2350), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2350), + [sym_augroup_statement] = STATE(2350), + [sym_command_statement] = STATE(2350), + [sym_comclear_statement] = STATE(2350), + [sym_delcommand_statement] = STATE(2350), + [sym_highlight_statement] = STATE(2350), + [sym_syntax_statement] = STATE(2350), + [sym_edit_statement] = STATE(2350), + [sym_enew_statement] = STATE(2350), + [sym_find_statement] = STATE(2350), + [sym_ex_statement] = STATE(2350), + [sym_visual_statement] = STATE(2350), + [sym_view_statement] = STATE(2350), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -60198,12 +60421,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(31), + [sym__newline_or_pipe] = ACTIONS(446), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(31), + [sym_comment] = ACTIONS(446), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), + [sym__endfor] = ACTIONS(666), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -60288,87 +60512,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [50] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(47), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [51] = { + [sym__cmd_separator] = STATE(109), + [aux_sym__separated_statements] = STATE(48), + [sym__statement] = STATE(2313), + [sym_unknown_builtin_statement] = STATE(2313), + [sym_return_statement] = STATE(2313), + [sym_break_statement] = STATE(2313), + [sym_continue_statement] = STATE(2313), + [sym_normal_statement] = STATE(2313), + [sym_setfiletype_statement] = STATE(2313), + [sym_options_statement] = STATE(2313), + [sym_startinsert_statement] = STATE(2313), + [sym_stopinsert_statement] = STATE(2313), + [sym_scriptencoding_statement] = STATE(2313), + [sym_cnext_statement] = STATE(2313), + [sym_cprevious_statement] = STATE(2313), + [sym_runtime_statement] = STATE(2313), + [sym_wincmd_statement] = STATE(2313), + [sym_source_statement] = STATE(2313), + [sym_global_statement] = STATE(2313), + [sym_filetype_statement] = STATE(2313), + [sym_colorscheme_statement] = STATE(2313), + [sym_lua_statement] = STATE(2313), + [sym_ruby_statement] = STATE(2313), + [sym_python_statement] = STATE(2313), + [sym_perl_statement] = STATE(2313), + [sym_for_loop] = STATE(2313), + [sym_while_loop] = STATE(2313), + [sym_if_statement] = STATE(2313), + [sym_try_statement] = STATE(2313), + [sym_throw_statement] = STATE(2313), + [sym_bang_filter_statement] = STATE(2313), + [sym_let_statement] = STATE(2313), + [sym_const_statement] = STATE(2313), + [sym_set_statement] = STATE(2313), + [sym_setlocal_statement] = STATE(2313), + [sym_unlet_statement] = STATE(2313), + [sym_call_statement] = STATE(2313), + [sym_echo_statement] = STATE(2313), + [sym_echon_statement] = STATE(2313), + [sym_echohl_statement] = STATE(2313), + [sym_echomsg_statement] = STATE(2313), + [sym_echoerr_statement] = STATE(2313), + [sym_execute_statement] = STATE(2313), + [sym_silent_statement] = STATE(2313), + [sym_vertical_statement] = STATE(2313), + [sym_topleft_statement] = STATE(2313), + [sym_botright_statement] = STATE(2313), + [sym_aboveleft_statement] = STATE(2313), + [sym_belowright_statement] = STATE(2313), + [sym_user_command] = STATE(2313), + [sym_function_definition] = STATE(2313), + [sym_range_statement] = STATE(2313), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2313), + [sym_map_statement] = STATE(2313), + [sym_sign_statement] = STATE(2313), + [sym_eval_statement] = STATE(2313), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2313), + [sym_augroup_statement] = STATE(2313), + [sym_command_statement] = STATE(2313), + [sym_comclear_statement] = STATE(2313), + [sym_delcommand_statement] = STATE(2313), + [sym_highlight_statement] = STATE(2313), + [sym_syntax_statement] = STATE(2313), + [sym_edit_statement] = STATE(2313), + [sym_enew_statement] = STATE(2313), + [sym_find_statement] = STATE(2313), + [sym_ex_statement] = STATE(2313), + [sym_visual_statement] = STATE(2313), + [sym_view_statement] = STATE(2313), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -60383,12 +60607,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(25), [sym_register] = ACTIONS(27), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(432), + [sym__newline_or_pipe] = ACTIONS(440), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(440), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(665), + [sym__endfunction] = ACTIONS(668), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -60474,87 +60698,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [51] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), + [52] = { + [sym__cmd_separator] = STATE(116), + [aux_sym__separated_statements] = STATE(46), + [sym__statement] = STATE(2617), + [sym_unknown_builtin_statement] = STATE(2617), + [sym_return_statement] = STATE(2617), + [sym_break_statement] = STATE(2617), + [sym_continue_statement] = STATE(2617), + [sym_normal_statement] = STATE(2617), + [sym_setfiletype_statement] = STATE(2617), + [sym_options_statement] = STATE(2617), + [sym_startinsert_statement] = STATE(2617), + [sym_stopinsert_statement] = STATE(2617), + [sym_scriptencoding_statement] = STATE(2617), + [sym_cnext_statement] = STATE(2617), + [sym_cprevious_statement] = STATE(2617), + [sym_runtime_statement] = STATE(2617), + [sym_wincmd_statement] = STATE(2617), + [sym_source_statement] = STATE(2617), + [sym_global_statement] = STATE(2617), + [sym_filetype_statement] = STATE(2617), + [sym_colorscheme_statement] = STATE(2617), + [sym_lua_statement] = STATE(2617), + [sym_ruby_statement] = STATE(2617), + [sym_python_statement] = STATE(2617), + [sym_perl_statement] = STATE(2617), + [sym_for_loop] = STATE(2617), + [sym_while_loop] = STATE(2617), + [sym_if_statement] = STATE(2617), + [sym_try_statement] = STATE(2617), + [sym_throw_statement] = STATE(2617), + [sym_bang_filter_statement] = STATE(2617), + [sym_let_statement] = STATE(2617), + [sym_const_statement] = STATE(2617), + [sym_set_statement] = STATE(2617), + [sym_setlocal_statement] = STATE(2617), + [sym_unlet_statement] = STATE(2617), + [sym_call_statement] = STATE(2617), + [sym_echo_statement] = STATE(2617), + [sym_echon_statement] = STATE(2617), + [sym_echohl_statement] = STATE(2617), + [sym_echomsg_statement] = STATE(2617), + [sym_echoerr_statement] = STATE(2617), + [sym_execute_statement] = STATE(2617), + [sym_silent_statement] = STATE(2617), + [sym_vertical_statement] = STATE(2617), + [sym_topleft_statement] = STATE(2617), + [sym_botright_statement] = STATE(2617), + [sym_aboveleft_statement] = STATE(2617), + [sym_belowright_statement] = STATE(2617), + [sym_user_command] = STATE(2617), + [sym_function_definition] = STATE(2617), + [sym_range_statement] = STATE(2617), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2617), + [sym_map_statement] = STATE(2617), + [sym_sign_statement] = STATE(2617), + [sym_eval_statement] = STATE(2617), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2617), + [sym_augroup_statement] = STATE(2617), + [sym_command_statement] = STATE(2617), + [sym_comclear_statement] = STATE(2617), + [sym_delcommand_statement] = STATE(2617), + [sym_highlight_statement] = STATE(2617), + [sym_syntax_statement] = STATE(2617), + [sym_edit_statement] = STATE(2617), + [sym_enew_statement] = STATE(2617), + [sym_find_statement] = STATE(2617), + [sym_ex_statement] = STATE(2617), + [sym_visual_statement] = STATE(2617), + [sym_view_statement] = STATE(2617), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -60574,9 +60798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(432), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(667), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(670), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__cnext] = ACTIONS(43), @@ -60660,271 +60884,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [52] = { - [sym__cmd_separator] = STATE(107), - [aux_sym__separated_statements] = STATE(52), - [sym__statement] = STATE(2351), - [sym_unknown_builtin_statement] = STATE(2351), - [sym_return_statement] = STATE(2351), - [sym_break_statement] = STATE(2351), - [sym_continue_statement] = STATE(2351), - [sym_normal_statement] = STATE(2351), - [sym_setfiletype_statement] = STATE(2351), - [sym_options_statement] = STATE(2351), - [sym_startinsert_statement] = STATE(2351), - [sym_stopinsert_statement] = STATE(2351), - [sym_scriptencoding_statement] = STATE(2351), - [sym_cnext_statement] = STATE(2351), - [sym_cprevious_statement] = STATE(2351), - [sym_runtime_statement] = STATE(2351), - [sym_wincmd_statement] = STATE(2351), - [sym_source_statement] = STATE(2351), - [sym_global_statement] = STATE(2351), - [sym_filetype_statement] = STATE(2351), - [sym_colorscheme_statement] = STATE(2351), - [sym_lua_statement] = STATE(2351), - [sym_ruby_statement] = STATE(2351), - [sym_python_statement] = STATE(2351), - [sym_perl_statement] = STATE(2351), - [sym_for_loop] = STATE(2351), - [sym_while_loop] = STATE(2351), - [sym_if_statement] = STATE(2351), - [sym_try_statement] = STATE(2351), - [sym_throw_statement] = STATE(2351), - [sym_bang_filter_statement] = STATE(2351), - [sym_let_statement] = STATE(2351), - [sym_const_statement] = STATE(2351), - [sym_set_statement] = STATE(2351), - [sym_setlocal_statement] = STATE(2351), - [sym_unlet_statement] = STATE(2351), - [sym_call_statement] = STATE(2351), - [sym_echo_statement] = STATE(2351), - [sym_echon_statement] = STATE(2351), - [sym_echohl_statement] = STATE(2351), - [sym_echomsg_statement] = STATE(2351), - [sym_echoerr_statement] = STATE(2351), - [sym_execute_statement] = STATE(2351), - [sym_silent_statement] = STATE(2351), - [sym_vertical_statement] = STATE(2351), - [sym_topleft_statement] = STATE(2351), - [sym_botright_statement] = STATE(2351), - [sym_aboveleft_statement] = STATE(2351), - [sym_belowright_statement] = STATE(2351), - [sym_user_command] = STATE(2351), - [sym_function_definition] = STATE(2351), - [sym_range_statement] = STATE(2351), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2351), - [sym_map_statement] = STATE(2351), - [sym_sign_statement] = STATE(2351), - [sym_eval_statement] = STATE(2351), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2351), - [sym_augroup_statement] = STATE(2351), - [sym_command_statement] = STATE(2351), - [sym_comclear_statement] = STATE(2351), - [sym_delcommand_statement] = STATE(2351), - [sym_highlight_statement] = STATE(2351), - [sym_syntax_statement] = STATE(2351), - [sym_edit_statement] = STATE(2351), - [sym_enew_statement] = STATE(2351), - [sym_find_statement] = STATE(2351), - [sym_ex_statement] = STATE(2351), - [sym_visual_statement] = STATE(2351), - [sym_view_statement] = STATE(2351), - [aux_sym__statement_repeat1] = STATE(92), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(198), - [sym_mark] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_DOT2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(216), - [anon_sym_BSLASH_SLASH] = ACTIONS(219), - [anon_sym_BSLASH_QMARK] = ACTIONS(219), - [anon_sym_BSLASH_AMP] = ACTIONS(219), - [sym_integer_literal] = ACTIONS(222), - [sym_register] = ACTIONS(225), - [sym_command_name] = ACTIONS(228), - [sym__newline_or_pipe] = ACTIONS(669), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(669), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(234), - [sym__endfunction] = ACTIONS(249), - [sym__for] = ACTIONS(237), - [sym__while] = ACTIONS(240), - [sym__if] = ACTIONS(243), - [sym__try] = ACTIONS(246), - [sym__cnext] = ACTIONS(251), - [sym__cprevious] = ACTIONS(254), - [sym__cNext] = ACTIONS(254), - [sym__const] = ACTIONS(257), - [sym__normal] = ACTIONS(260), - [sym__return] = ACTIONS(263), - [sym__perl] = ACTIONS(266), - [sym__lua] = ACTIONS(269), - [sym__ruby] = ACTIONS(272), - [sym__python] = ACTIONS(275), - [sym__throw] = ACTIONS(278), - [sym__execute] = ACTIONS(281), - [sym__autocmd] = ACTIONS(284), - [sym__silent] = ACTIONS(287), - [sym__echo] = ACTIONS(290), - [sym__echon] = ACTIONS(293), - [sym__echohl] = ACTIONS(296), - [sym__echomsg] = ACTIONS(299), - [sym__echoerr] = ACTIONS(302), - [sym__map] = ACTIONS(305), - [sym__nmap] = ACTIONS(305), - [sym__vmap] = ACTIONS(305), - [sym__xmap] = ACTIONS(305), - [sym__smap] = ACTIONS(305), - [sym__omap] = ACTIONS(305), - [sym__imap] = ACTIONS(305), - [sym__lmap] = ACTIONS(305), - [sym__cmap] = ACTIONS(305), - [sym__tmap] = ACTIONS(305), - [sym__noremap] = ACTIONS(305), - [sym__nnoremap] = ACTIONS(305), - [sym__vnoremap] = ACTIONS(305), - [sym__xnoremap] = ACTIONS(305), - [sym__snoremap] = ACTIONS(305), - [sym__onoremap] = ACTIONS(305), - [sym__inoremap] = ACTIONS(305), - [sym__lnoremap] = ACTIONS(305), - [sym__cnoremap] = ACTIONS(305), - [sym__tnoremap] = ACTIONS(305), - [sym__augroup] = ACTIONS(308), - [sym__highlight] = ACTIONS(311), - [sym__syntax] = ACTIONS(314), - [sym__set] = ACTIONS(317), - [sym__setlocal] = ACTIONS(320), - [sym__setfiletype] = ACTIONS(323), - [sym__browse] = ACTIONS(326), - [sym__options] = ACTIONS(329), - [sym__startinsert] = ACTIONS(332), - [sym__stopinsert] = ACTIONS(335), - [sym__scriptencoding] = ACTIONS(338), - [sym__source] = ACTIONS(341), - [sym__global] = ACTIONS(344), - [sym__colorscheme] = ACTIONS(347), - [sym__command] = ACTIONS(350), - [sym__comclear] = ACTIONS(353), - [sym__delcommand] = ACTIONS(356), - [sym__runtime] = ACTIONS(359), - [sym__wincmd] = ACTIONS(362), - [sym__sign] = ACTIONS(365), - [sym__filetype] = ACTIONS(368), - [sym__let] = ACTIONS(371), - [sym__unlet] = ACTIONS(374), - [sym__call] = ACTIONS(377), - [sym__break] = ACTIONS(380), - [sym__continue] = ACTIONS(383), - [sym__vertical] = ACTIONS(386), - [sym__leftabove] = ACTIONS(389), - [sym__aboveleft] = ACTIONS(389), - [sym__rightbelow] = ACTIONS(392), - [sym__belowright] = ACTIONS(392), - [sym__topleft] = ACTIONS(395), - [sym__botright] = ACTIONS(398), - [sym__edit] = ACTIONS(401), - [sym__enew] = ACTIONS(404), - [sym__find] = ACTIONS(407), - [sym__ex] = ACTIONS(410), - [sym__visual] = ACTIONS(413), - [sym__view] = ACTIONS(416), - [sym__eval] = ACTIONS(419), - [sym_unknown_command_name] = ACTIONS(422), - }, [53] = { - [sym__statement] = STATE(2691), - [sym_unknown_builtin_statement] = STATE(2691), - [sym_return_statement] = STATE(2691), - [sym_break_statement] = STATE(2691), - [sym_continue_statement] = STATE(2691), - [sym_normal_statement] = STATE(2691), - [sym_setfiletype_statement] = STATE(2691), - [sym_options_statement] = STATE(2691), - [sym_startinsert_statement] = STATE(2691), - [sym_stopinsert_statement] = STATE(2691), - [sym_scriptencoding_statement] = STATE(2691), - [sym_cnext_statement] = STATE(2691), - [sym_cprevious_statement] = STATE(2691), - [sym_runtime_statement] = STATE(2691), - [sym_wincmd_statement] = STATE(2691), - [sym_source_statement] = STATE(2691), - [sym_global_statement] = STATE(2691), - [sym_filetype_statement] = STATE(2691), - [sym_colorscheme_statement] = STATE(2691), - [sym_lua_statement] = STATE(2691), - [sym_ruby_statement] = STATE(2691), - [sym_python_statement] = STATE(2691), - [sym_perl_statement] = STATE(2691), - [sym_for_loop] = STATE(2691), - [sym_while_loop] = STATE(2691), - [sym_if_statement] = STATE(2691), - [sym_try_statement] = STATE(2691), - [sym_throw_statement] = STATE(2691), - [sym_bang_filter_statement] = STATE(2691), - [sym_let_statement] = STATE(2691), - [sym_const_statement] = STATE(2691), - [sym_set_statement] = STATE(2691), - [sym_setlocal_statement] = STATE(2691), - [sym_unlet_statement] = STATE(2691), - [sym_call_statement] = STATE(2691), - [sym_echo_statement] = STATE(2691), - [sym_echon_statement] = STATE(2691), - [sym_echohl_statement] = STATE(2691), - [sym_echomsg_statement] = STATE(2691), - [sym_echoerr_statement] = STATE(2691), - [sym_execute_statement] = STATE(2691), - [sym_silent_statement] = STATE(2691), - [sym_vertical_statement] = STATE(2691), - [sym_topleft_statement] = STATE(2691), - [sym_botright_statement] = STATE(2691), - [sym_aboveleft_statement] = STATE(2691), - [sym_belowright_statement] = STATE(2691), - [sym_user_command] = STATE(2691), - [sym_function_definition] = STATE(2691), - [sym_range_statement] = STATE(2691), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2691), - [sym_map_statement] = STATE(2691), - [sym_sign_statement] = STATE(2691), - [sym_eval_statement] = STATE(2691), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2691), - [sym_augroup_statement] = STATE(2691), - [sym_command_statement] = STATE(2691), - [sym_comclear_statement] = STATE(2691), - [sym_delcommand_statement] = STATE(2691), - [sym_highlight_statement] = STATE(2691), - [sym_syntax_statement] = STATE(2691), - [sym_edit_statement] = STATE(2691), - [sym_enew_statement] = STATE(2691), - [sym_find_statement] = STATE(2691), - [sym_ex_statement] = STATE(2691), - [sym_visual_statement] = STATE(2691), - [sym_view_statement] = STATE(2691), - [aux_sym__statement_repeat1] = STATE(92), + [sym__statement] = STATE(2670), + [sym_unknown_builtin_statement] = STATE(2670), + [sym_return_statement] = STATE(2670), + [sym_break_statement] = STATE(2670), + [sym_continue_statement] = STATE(2670), + [sym_normal_statement] = STATE(2670), + [sym_setfiletype_statement] = STATE(2670), + [sym_options_statement] = STATE(2670), + [sym_startinsert_statement] = STATE(2670), + [sym_stopinsert_statement] = STATE(2670), + [sym_scriptencoding_statement] = STATE(2670), + [sym_cnext_statement] = STATE(2670), + [sym_cprevious_statement] = STATE(2670), + [sym_runtime_statement] = STATE(2670), + [sym_wincmd_statement] = STATE(2670), + [sym_source_statement] = STATE(2670), + [sym_global_statement] = STATE(2670), + [sym_filetype_statement] = STATE(2670), + [sym_colorscheme_statement] = STATE(2670), + [sym_lua_statement] = STATE(2670), + [sym_ruby_statement] = STATE(2670), + [sym_python_statement] = STATE(2670), + [sym_perl_statement] = STATE(2670), + [sym_for_loop] = STATE(2670), + [sym_while_loop] = STATE(2670), + [sym_if_statement] = STATE(2670), + [sym_try_statement] = STATE(2670), + [sym_throw_statement] = STATE(2670), + [sym_bang_filter_statement] = STATE(2670), + [sym_let_statement] = STATE(2670), + [sym_const_statement] = STATE(2670), + [sym_set_statement] = STATE(2670), + [sym_setlocal_statement] = STATE(2670), + [sym_unlet_statement] = STATE(2670), + [sym_call_statement] = STATE(2670), + [sym_echo_statement] = STATE(2670), + [sym_echon_statement] = STATE(2670), + [sym_echohl_statement] = STATE(2670), + [sym_echomsg_statement] = STATE(2670), + [sym_echoerr_statement] = STATE(2670), + [sym_execute_statement] = STATE(2670), + [sym_silent_statement] = STATE(2670), + [sym_vertical_statement] = STATE(2670), + [sym_topleft_statement] = STATE(2670), + [sym_botright_statement] = STATE(2670), + [sym_aboveleft_statement] = STATE(2670), + [sym_belowright_statement] = STATE(2670), + [sym_user_command] = STATE(2670), + [sym_function_definition] = STATE(2670), + [sym_range_statement] = STATE(2670), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2670), + [sym_map_statement] = STATE(2670), + [sym_sign_statement] = STATE(2670), + [sym_eval_statement] = STATE(2670), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2670), + [sym_augroup_statement] = STATE(2670), + [sym_command_statement] = STATE(2670), + [sym_comclear_statement] = STATE(2670), + [sym_delcommand_statement] = STATE(2670), + [sym_highlight_statement] = STATE(2670), + [sym_syntax_statement] = STATE(2670), + [sym_edit_statement] = STATE(2670), + [sym_enew_statement] = STATE(2670), + [sym_find_statement] = STATE(2670), + [sym_ex_statement] = STATE(2670), + [sym_visual_statement] = STATE(2670), + [sym_view_statement] = STATE(2670), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -60941,9 +60979,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_au_once] = ACTIONS(672), [sym_au_nested] = ACTIONS(674), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(617), + [sym__newline_or_pipe] = ACTIONS(664), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(617), + [sym_comment] = ACTIONS(664), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), @@ -61032,84 +61070,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [54] = { - [sym__statement] = STATE(2691), - [sym_unknown_builtin_statement] = STATE(2691), - [sym_return_statement] = STATE(2691), - [sym_break_statement] = STATE(2691), - [sym_continue_statement] = STATE(2691), - [sym_normal_statement] = STATE(2691), - [sym_setfiletype_statement] = STATE(2691), - [sym_options_statement] = STATE(2691), - [sym_startinsert_statement] = STATE(2691), - [sym_stopinsert_statement] = STATE(2691), - [sym_scriptencoding_statement] = STATE(2691), - [sym_cnext_statement] = STATE(2691), - [sym_cprevious_statement] = STATE(2691), - [sym_runtime_statement] = STATE(2691), - [sym_wincmd_statement] = STATE(2691), - [sym_source_statement] = STATE(2691), - [sym_global_statement] = STATE(2691), - [sym_filetype_statement] = STATE(2691), - [sym_colorscheme_statement] = STATE(2691), - [sym_lua_statement] = STATE(2691), - [sym_ruby_statement] = STATE(2691), - [sym_python_statement] = STATE(2691), - [sym_perl_statement] = STATE(2691), - [sym_for_loop] = STATE(2691), - [sym_while_loop] = STATE(2691), - [sym_if_statement] = STATE(2691), - [sym_try_statement] = STATE(2691), - [sym_throw_statement] = STATE(2691), - [sym_bang_filter_statement] = STATE(2691), - [sym_let_statement] = STATE(2691), - [sym_const_statement] = STATE(2691), - [sym_set_statement] = STATE(2691), - [sym_setlocal_statement] = STATE(2691), - [sym_unlet_statement] = STATE(2691), - [sym_call_statement] = STATE(2691), - [sym_echo_statement] = STATE(2691), - [sym_echon_statement] = STATE(2691), - [sym_echohl_statement] = STATE(2691), - [sym_echomsg_statement] = STATE(2691), - [sym_echoerr_statement] = STATE(2691), - [sym_execute_statement] = STATE(2691), - [sym_silent_statement] = STATE(2691), - [sym_vertical_statement] = STATE(2691), - [sym_topleft_statement] = STATE(2691), - [sym_botright_statement] = STATE(2691), - [sym_aboveleft_statement] = STATE(2691), - [sym_belowright_statement] = STATE(2691), - [sym_user_command] = STATE(2691), - [sym_function_definition] = STATE(2691), - [sym_range_statement] = STATE(2691), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2691), - [sym_map_statement] = STATE(2691), - [sym_sign_statement] = STATE(2691), - [sym_eval_statement] = STATE(2691), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2691), - [sym_augroup_statement] = STATE(2691), - [sym_command_statement] = STATE(2691), - [sym_comclear_statement] = STATE(2691), - [sym_delcommand_statement] = STATE(2691), - [sym_highlight_statement] = STATE(2691), - [sym_syntax_statement] = STATE(2691), - [sym_edit_statement] = STATE(2691), - [sym_enew_statement] = STATE(2691), - [sym_find_statement] = STATE(2691), - [sym_ex_statement] = STATE(2691), - [sym_visual_statement] = STATE(2691), - [sym_view_statement] = STATE(2691), - [aux_sym__statement_repeat1] = STATE(92), + [sym__statement] = STATE(2670), + [sym_unknown_builtin_statement] = STATE(2670), + [sym_return_statement] = STATE(2670), + [sym_break_statement] = STATE(2670), + [sym_continue_statement] = STATE(2670), + [sym_normal_statement] = STATE(2670), + [sym_setfiletype_statement] = STATE(2670), + [sym_options_statement] = STATE(2670), + [sym_startinsert_statement] = STATE(2670), + [sym_stopinsert_statement] = STATE(2670), + [sym_scriptencoding_statement] = STATE(2670), + [sym_cnext_statement] = STATE(2670), + [sym_cprevious_statement] = STATE(2670), + [sym_runtime_statement] = STATE(2670), + [sym_wincmd_statement] = STATE(2670), + [sym_source_statement] = STATE(2670), + [sym_global_statement] = STATE(2670), + [sym_filetype_statement] = STATE(2670), + [sym_colorscheme_statement] = STATE(2670), + [sym_lua_statement] = STATE(2670), + [sym_ruby_statement] = STATE(2670), + [sym_python_statement] = STATE(2670), + [sym_perl_statement] = STATE(2670), + [sym_for_loop] = STATE(2670), + [sym_while_loop] = STATE(2670), + [sym_if_statement] = STATE(2670), + [sym_try_statement] = STATE(2670), + [sym_throw_statement] = STATE(2670), + [sym_bang_filter_statement] = STATE(2670), + [sym_let_statement] = STATE(2670), + [sym_const_statement] = STATE(2670), + [sym_set_statement] = STATE(2670), + [sym_setlocal_statement] = STATE(2670), + [sym_unlet_statement] = STATE(2670), + [sym_call_statement] = STATE(2670), + [sym_echo_statement] = STATE(2670), + [sym_echon_statement] = STATE(2670), + [sym_echohl_statement] = STATE(2670), + [sym_echomsg_statement] = STATE(2670), + [sym_echoerr_statement] = STATE(2670), + [sym_execute_statement] = STATE(2670), + [sym_silent_statement] = STATE(2670), + [sym_vertical_statement] = STATE(2670), + [sym_topleft_statement] = STATE(2670), + [sym_botright_statement] = STATE(2670), + [sym_aboveleft_statement] = STATE(2670), + [sym_belowright_statement] = STATE(2670), + [sym_user_command] = STATE(2670), + [sym_function_definition] = STATE(2670), + [sym_range_statement] = STATE(2670), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2670), + [sym_map_statement] = STATE(2670), + [sym_sign_statement] = STATE(2670), + [sym_eval_statement] = STATE(2670), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2670), + [sym_augroup_statement] = STATE(2670), + [sym_command_statement] = STATE(2670), + [sym_comclear_statement] = STATE(2670), + [sym_delcommand_statement] = STATE(2670), + [sym_highlight_statement] = STATE(2670), + [sym_syntax_statement] = STATE(2670), + [sym_edit_statement] = STATE(2670), + [sym_enew_statement] = STATE(2670), + [sym_find_statement] = STATE(2670), + [sym_ex_statement] = STATE(2670), + [sym_visual_statement] = STATE(2670), + [sym_view_statement] = STATE(2670), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -61126,9 +61164,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_au_once] = ACTIONS(672), [sym_au_nested] = ACTIONS(674), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(464), + [sym__newline_or_pipe] = ACTIONS(468), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(464), + [sym_comment] = ACTIONS(468), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), @@ -61217,84 +61255,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [55] = { - [sym__statement] = STATE(2691), - [sym_unknown_builtin_statement] = STATE(2691), - [sym_return_statement] = STATE(2691), - [sym_break_statement] = STATE(2691), - [sym_continue_statement] = STATE(2691), - [sym_normal_statement] = STATE(2691), - [sym_setfiletype_statement] = STATE(2691), - [sym_options_statement] = STATE(2691), - [sym_startinsert_statement] = STATE(2691), - [sym_stopinsert_statement] = STATE(2691), - [sym_scriptencoding_statement] = STATE(2691), - [sym_cnext_statement] = STATE(2691), - [sym_cprevious_statement] = STATE(2691), - [sym_runtime_statement] = STATE(2691), - [sym_wincmd_statement] = STATE(2691), - [sym_source_statement] = STATE(2691), - [sym_global_statement] = STATE(2691), - [sym_filetype_statement] = STATE(2691), - [sym_colorscheme_statement] = STATE(2691), - [sym_lua_statement] = STATE(2691), - [sym_ruby_statement] = STATE(2691), - [sym_python_statement] = STATE(2691), - [sym_perl_statement] = STATE(2691), - [sym_for_loop] = STATE(2691), - [sym_while_loop] = STATE(2691), - [sym_if_statement] = STATE(2691), - [sym_try_statement] = STATE(2691), - [sym_throw_statement] = STATE(2691), - [sym_bang_filter_statement] = STATE(2691), - [sym_let_statement] = STATE(2691), - [sym_const_statement] = STATE(2691), - [sym_set_statement] = STATE(2691), - [sym_setlocal_statement] = STATE(2691), - [sym_unlet_statement] = STATE(2691), - [sym_call_statement] = STATE(2691), - [sym_echo_statement] = STATE(2691), - [sym_echon_statement] = STATE(2691), - [sym_echohl_statement] = STATE(2691), - [sym_echomsg_statement] = STATE(2691), - [sym_echoerr_statement] = STATE(2691), - [sym_execute_statement] = STATE(2691), - [sym_silent_statement] = STATE(2691), - [sym_vertical_statement] = STATE(2691), - [sym_topleft_statement] = STATE(2691), - [sym_botright_statement] = STATE(2691), - [sym_aboveleft_statement] = STATE(2691), - [sym_belowright_statement] = STATE(2691), - [sym_user_command] = STATE(2691), - [sym_function_definition] = STATE(2691), - [sym_range_statement] = STATE(2691), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2691), - [sym_map_statement] = STATE(2691), - [sym_sign_statement] = STATE(2691), - [sym_eval_statement] = STATE(2691), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2691), - [sym_augroup_statement] = STATE(2691), - [sym_command_statement] = STATE(2691), - [sym_comclear_statement] = STATE(2691), - [sym_delcommand_statement] = STATE(2691), - [sym_highlight_statement] = STATE(2691), - [sym_syntax_statement] = STATE(2691), - [sym_edit_statement] = STATE(2691), - [sym_enew_statement] = STATE(2691), - [sym_find_statement] = STATE(2691), - [sym_ex_statement] = STATE(2691), - [sym_visual_statement] = STATE(2691), - [sym_view_statement] = STATE(2691), - [aux_sym__statement_repeat1] = STATE(92), + [sym__statement] = STATE(2670), + [sym_unknown_builtin_statement] = STATE(2670), + [sym_return_statement] = STATE(2670), + [sym_break_statement] = STATE(2670), + [sym_continue_statement] = STATE(2670), + [sym_normal_statement] = STATE(2670), + [sym_setfiletype_statement] = STATE(2670), + [sym_options_statement] = STATE(2670), + [sym_startinsert_statement] = STATE(2670), + [sym_stopinsert_statement] = STATE(2670), + [sym_scriptencoding_statement] = STATE(2670), + [sym_cnext_statement] = STATE(2670), + [sym_cprevious_statement] = STATE(2670), + [sym_runtime_statement] = STATE(2670), + [sym_wincmd_statement] = STATE(2670), + [sym_source_statement] = STATE(2670), + [sym_global_statement] = STATE(2670), + [sym_filetype_statement] = STATE(2670), + [sym_colorscheme_statement] = STATE(2670), + [sym_lua_statement] = STATE(2670), + [sym_ruby_statement] = STATE(2670), + [sym_python_statement] = STATE(2670), + [sym_perl_statement] = STATE(2670), + [sym_for_loop] = STATE(2670), + [sym_while_loop] = STATE(2670), + [sym_if_statement] = STATE(2670), + [sym_try_statement] = STATE(2670), + [sym_throw_statement] = STATE(2670), + [sym_bang_filter_statement] = STATE(2670), + [sym_let_statement] = STATE(2670), + [sym_const_statement] = STATE(2670), + [sym_set_statement] = STATE(2670), + [sym_setlocal_statement] = STATE(2670), + [sym_unlet_statement] = STATE(2670), + [sym_call_statement] = STATE(2670), + [sym_echo_statement] = STATE(2670), + [sym_echon_statement] = STATE(2670), + [sym_echohl_statement] = STATE(2670), + [sym_echomsg_statement] = STATE(2670), + [sym_echoerr_statement] = STATE(2670), + [sym_execute_statement] = STATE(2670), + [sym_silent_statement] = STATE(2670), + [sym_vertical_statement] = STATE(2670), + [sym_topleft_statement] = STATE(2670), + [sym_botright_statement] = STATE(2670), + [sym_aboveleft_statement] = STATE(2670), + [sym_belowright_statement] = STATE(2670), + [sym_user_command] = STATE(2670), + [sym_function_definition] = STATE(2670), + [sym_range_statement] = STATE(2670), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2670), + [sym_map_statement] = STATE(2670), + [sym_sign_statement] = STATE(2670), + [sym_eval_statement] = STATE(2670), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2670), + [sym_augroup_statement] = STATE(2670), + [sym_command_statement] = STATE(2670), + [sym_comclear_statement] = STATE(2670), + [sym_delcommand_statement] = STATE(2670), + [sym_highlight_statement] = STATE(2670), + [sym_syntax_statement] = STATE(2670), + [sym_edit_statement] = STATE(2670), + [sym_enew_statement] = STATE(2670), + [sym_find_statement] = STATE(2670), + [sym_ex_statement] = STATE(2670), + [sym_visual_statement] = STATE(2670), + [sym_view_statement] = STATE(2670), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -61311,9 +61349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_au_once] = ACTIONS(672), [sym_au_nested] = ACTIONS(674), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(651), + [sym__newline_or_pipe] = ACTIONS(630), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(651), + [sym_comment] = ACTIONS(630), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), @@ -61402,84 +61440,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [56] = { - [sym__statement] = STATE(2691), - [sym_unknown_builtin_statement] = STATE(2691), - [sym_return_statement] = STATE(2691), - [sym_break_statement] = STATE(2691), - [sym_continue_statement] = STATE(2691), - [sym_normal_statement] = STATE(2691), - [sym_setfiletype_statement] = STATE(2691), - [sym_options_statement] = STATE(2691), - [sym_startinsert_statement] = STATE(2691), - [sym_stopinsert_statement] = STATE(2691), - [sym_scriptencoding_statement] = STATE(2691), - [sym_cnext_statement] = STATE(2691), - [sym_cprevious_statement] = STATE(2691), - [sym_runtime_statement] = STATE(2691), - [sym_wincmd_statement] = STATE(2691), - [sym_source_statement] = STATE(2691), - [sym_global_statement] = STATE(2691), - [sym_filetype_statement] = STATE(2691), - [sym_colorscheme_statement] = STATE(2691), - [sym_lua_statement] = STATE(2691), - [sym_ruby_statement] = STATE(2691), - [sym_python_statement] = STATE(2691), - [sym_perl_statement] = STATE(2691), - [sym_for_loop] = STATE(2691), - [sym_while_loop] = STATE(2691), - [sym_if_statement] = STATE(2691), - [sym_try_statement] = STATE(2691), - [sym_throw_statement] = STATE(2691), - [sym_bang_filter_statement] = STATE(2691), - [sym_let_statement] = STATE(2691), - [sym_const_statement] = STATE(2691), - [sym_set_statement] = STATE(2691), - [sym_setlocal_statement] = STATE(2691), - [sym_unlet_statement] = STATE(2691), - [sym_call_statement] = STATE(2691), - [sym_echo_statement] = STATE(2691), - [sym_echon_statement] = STATE(2691), - [sym_echohl_statement] = STATE(2691), - [sym_echomsg_statement] = STATE(2691), - [sym_echoerr_statement] = STATE(2691), - [sym_execute_statement] = STATE(2691), - [sym_silent_statement] = STATE(2691), - [sym_vertical_statement] = STATE(2691), - [sym_topleft_statement] = STATE(2691), - [sym_botright_statement] = STATE(2691), - [sym_aboveleft_statement] = STATE(2691), - [sym_belowright_statement] = STATE(2691), - [sym_user_command] = STATE(2691), - [sym_function_definition] = STATE(2691), - [sym_range_statement] = STATE(2691), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2691), - [sym_map_statement] = STATE(2691), - [sym_sign_statement] = STATE(2691), - [sym_eval_statement] = STATE(2691), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2691), - [sym_augroup_statement] = STATE(2691), - [sym_command_statement] = STATE(2691), - [sym_comclear_statement] = STATE(2691), - [sym_delcommand_statement] = STATE(2691), - [sym_highlight_statement] = STATE(2691), - [sym_syntax_statement] = STATE(2691), - [sym_edit_statement] = STATE(2691), - [sym_enew_statement] = STATE(2691), - [sym_find_statement] = STATE(2691), - [sym_ex_statement] = STATE(2691), - [sym_visual_statement] = STATE(2691), - [sym_view_statement] = STATE(2691), - [aux_sym__statement_repeat1] = STATE(92), + [sym__statement] = STATE(2670), + [sym_unknown_builtin_statement] = STATE(2670), + [sym_return_statement] = STATE(2670), + [sym_break_statement] = STATE(2670), + [sym_continue_statement] = STATE(2670), + [sym_normal_statement] = STATE(2670), + [sym_setfiletype_statement] = STATE(2670), + [sym_options_statement] = STATE(2670), + [sym_startinsert_statement] = STATE(2670), + [sym_stopinsert_statement] = STATE(2670), + [sym_scriptencoding_statement] = STATE(2670), + [sym_cnext_statement] = STATE(2670), + [sym_cprevious_statement] = STATE(2670), + [sym_runtime_statement] = STATE(2670), + [sym_wincmd_statement] = STATE(2670), + [sym_source_statement] = STATE(2670), + [sym_global_statement] = STATE(2670), + [sym_filetype_statement] = STATE(2670), + [sym_colorscheme_statement] = STATE(2670), + [sym_lua_statement] = STATE(2670), + [sym_ruby_statement] = STATE(2670), + [sym_python_statement] = STATE(2670), + [sym_perl_statement] = STATE(2670), + [sym_for_loop] = STATE(2670), + [sym_while_loop] = STATE(2670), + [sym_if_statement] = STATE(2670), + [sym_try_statement] = STATE(2670), + [sym_throw_statement] = STATE(2670), + [sym_bang_filter_statement] = STATE(2670), + [sym_let_statement] = STATE(2670), + [sym_const_statement] = STATE(2670), + [sym_set_statement] = STATE(2670), + [sym_setlocal_statement] = STATE(2670), + [sym_unlet_statement] = STATE(2670), + [sym_call_statement] = STATE(2670), + [sym_echo_statement] = STATE(2670), + [sym_echon_statement] = STATE(2670), + [sym_echohl_statement] = STATE(2670), + [sym_echomsg_statement] = STATE(2670), + [sym_echoerr_statement] = STATE(2670), + [sym_execute_statement] = STATE(2670), + [sym_silent_statement] = STATE(2670), + [sym_vertical_statement] = STATE(2670), + [sym_topleft_statement] = STATE(2670), + [sym_botright_statement] = STATE(2670), + [sym_aboveleft_statement] = STATE(2670), + [sym_belowright_statement] = STATE(2670), + [sym_user_command] = STATE(2670), + [sym_function_definition] = STATE(2670), + [sym_range_statement] = STATE(2670), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2670), + [sym_map_statement] = STATE(2670), + [sym_sign_statement] = STATE(2670), + [sym_eval_statement] = STATE(2670), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2670), + [sym_augroup_statement] = STATE(2670), + [sym_command_statement] = STATE(2670), + [sym_comclear_statement] = STATE(2670), + [sym_delcommand_statement] = STATE(2670), + [sym_highlight_statement] = STATE(2670), + [sym_syntax_statement] = STATE(2670), + [sym_edit_statement] = STATE(2670), + [sym_enew_statement] = STATE(2670), + [sym_find_statement] = STATE(2670), + [sym_ex_statement] = STATE(2670), + [sym_visual_statement] = STATE(2670), + [sym_view_statement] = STATE(2670), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -61496,9 +61534,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_au_once] = ACTIONS(672), [sym_au_nested] = ACTIONS(674), [sym_command_name] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(647), + [sym__newline_or_pipe] = ACTIONS(612), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(647), + [sym_comment] = ACTIONS(612), [sym_line_continuation_comment] = ACTIONS(3), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), @@ -61587,268 +61625,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [57] = { - [sym__statement] = STATE(2586), - [sym_unknown_builtin_statement] = STATE(2586), - [sym_return_statement] = STATE(2586), - [sym_break_statement] = STATE(2586), - [sym_continue_statement] = STATE(2586), - [sym_normal_statement] = STATE(2586), - [sym_setfiletype_statement] = STATE(2586), - [sym_options_statement] = STATE(2586), - [sym_startinsert_statement] = STATE(2586), - [sym_stopinsert_statement] = STATE(2586), - [sym_scriptencoding_statement] = STATE(2586), - [sym_cnext_statement] = STATE(2586), - [sym_cprevious_statement] = STATE(2586), - [sym_runtime_statement] = STATE(2586), - [sym_wincmd_statement] = STATE(2586), - [sym_source_statement] = STATE(2586), - [sym_global_statement] = STATE(2586), - [sym_filetype_statement] = STATE(2586), - [sym_colorscheme_statement] = STATE(2586), - [sym_lua_statement] = STATE(2586), - [sym_ruby_statement] = STATE(2586), - [sym_python_statement] = STATE(2586), - [sym_perl_statement] = STATE(2586), - [sym_for_loop] = STATE(2586), - [sym_while_loop] = STATE(2586), - [sym_if_statement] = STATE(2586), - [sym_try_statement] = STATE(2586), - [sym_throw_statement] = STATE(2586), - [sym_bang_filter_statement] = STATE(2586), - [sym_let_statement] = STATE(2586), - [sym_const_statement] = STATE(2586), - [sym_set_statement] = STATE(2586), - [sym_setlocal_statement] = STATE(2586), - [sym_unlet_statement] = STATE(2586), - [sym_call_statement] = STATE(2586), - [sym_echo_statement] = STATE(2586), - [sym_echon_statement] = STATE(2586), - [sym_echohl_statement] = STATE(2586), - [sym_echomsg_statement] = STATE(2586), - [sym_echoerr_statement] = STATE(2586), - [sym_execute_statement] = STATE(2586), - [sym_silent_statement] = STATE(2586), - [sym_vertical_statement] = STATE(2586), - [sym_topleft_statement] = STATE(2586), - [sym_botright_statement] = STATE(2586), - [sym_aboveleft_statement] = STATE(2586), - [sym_belowright_statement] = STATE(2586), - [sym_user_command] = STATE(2586), - [sym_function_definition] = STATE(2586), - [sym_bang] = STATE(83), - [sym_range_statement] = STATE(2586), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2586), - [sym_map_statement] = STATE(2586), - [sym_sign_statement] = STATE(2586), - [sym_eval_statement] = STATE(2586), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2586), - [sym_augroup_statement] = STATE(2586), - [sym_command_statement] = STATE(2586), - [sym_comclear_statement] = STATE(2586), - [sym_delcommand_statement] = STATE(2586), - [sym_highlight_statement] = STATE(2586), - [sym_syntax_statement] = STATE(2586), - [sym_edit_statement] = STATE(2586), - [sym_enew_statement] = STATE(2586), - [sym_find_statement] = STATE(2586), - [sym_ex_statement] = STATE(2586), - [sym_visual_statement] = STATE(2586), - [sym_view_statement] = STATE(2586), + [sym__statement] = STATE(2758), + [sym_unknown_builtin_statement] = STATE(2758), + [sym_return_statement] = STATE(2758), + [sym_break_statement] = STATE(2758), + [sym_continue_statement] = STATE(2758), + [sym_normal_statement] = STATE(2758), + [sym_setfiletype_statement] = STATE(2758), + [sym_options_statement] = STATE(2758), + [sym_startinsert_statement] = STATE(2758), + [sym_stopinsert_statement] = STATE(2758), + [sym_scriptencoding_statement] = STATE(2758), + [sym_cnext_statement] = STATE(2758), + [sym_cprevious_statement] = STATE(2758), + [sym_runtime_statement] = STATE(2758), + [sym_wincmd_statement] = STATE(2758), + [sym_source_statement] = STATE(2758), + [sym_global_statement] = STATE(2758), + [sym_filetype_statement] = STATE(2758), + [sym_colorscheme_statement] = STATE(2758), + [sym_lua_statement] = STATE(2758), + [sym_ruby_statement] = STATE(2758), + [sym_python_statement] = STATE(2758), + [sym_perl_statement] = STATE(2758), + [sym_for_loop] = STATE(2758), + [sym_while_loop] = STATE(2758), + [sym_if_statement] = STATE(2758), + [sym_try_statement] = STATE(2758), + [sym_throw_statement] = STATE(2758), + [sym_bang_filter_statement] = STATE(2758), + [sym_let_statement] = STATE(2758), + [sym_const_statement] = STATE(2758), + [sym_set_statement] = STATE(2758), + [sym_setlocal_statement] = STATE(2758), + [sym_unlet_statement] = STATE(2758), + [sym_call_statement] = STATE(2758), + [sym_echo_statement] = STATE(2758), + [sym_echon_statement] = STATE(2758), + [sym_echohl_statement] = STATE(2758), + [sym_echomsg_statement] = STATE(2758), + [sym_echoerr_statement] = STATE(2758), + [sym_execute_statement] = STATE(2758), + [sym_silent_statement] = STATE(2758), + [sym_vertical_statement] = STATE(2758), + [sym_topleft_statement] = STATE(2758), + [sym_botright_statement] = STATE(2758), + [sym_aboveleft_statement] = STATE(2758), + [sym_belowright_statement] = STATE(2758), + [sym_user_command] = STATE(2758), + [sym_function_definition] = STATE(2758), + [sym_bang] = STATE(65), + [sym_range_statement] = STATE(2758), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2758), + [sym_map_statement] = STATE(2758), + [sym_sign_statement] = STATE(2758), + [sym_eval_statement] = STATE(2758), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2758), + [sym_augroup_statement] = STATE(2758), + [sym_command_statement] = STATE(2758), + [sym_comclear_statement] = STATE(2758), + [sym_delcommand_statement] = STATE(2758), + [sym_highlight_statement] = STATE(2758), + [sym_syntax_statement] = STATE(2758), + [sym_edit_statement] = STATE(2758), + [sym_enew_statement] = STATE(2758), + [sym_find_statement] = STATE(2758), + [sym_ex_statement] = STATE(2758), + [sym_visual_statement] = STATE(2758), + [sym_view_statement] = STATE(2758), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [58] = { - [sym__statement] = STATE(2741), - [sym_unknown_builtin_statement] = STATE(2741), - [sym_return_statement] = STATE(2741), - [sym_break_statement] = STATE(2741), - [sym_continue_statement] = STATE(2741), - [sym_normal_statement] = STATE(2741), - [sym_setfiletype_statement] = STATE(2741), - [sym_options_statement] = STATE(2741), - [sym_startinsert_statement] = STATE(2741), - [sym_stopinsert_statement] = STATE(2741), - [sym_scriptencoding_statement] = STATE(2741), - [sym_cnext_statement] = STATE(2741), - [sym_cprevious_statement] = STATE(2741), - [sym_runtime_statement] = STATE(2741), - [sym_wincmd_statement] = STATE(2741), - [sym_source_statement] = STATE(2741), - [sym_global_statement] = STATE(2741), - [sym_filetype_statement] = STATE(2741), - [sym_colorscheme_statement] = STATE(2741), - [sym_lua_statement] = STATE(2741), - [sym_ruby_statement] = STATE(2741), - [sym_python_statement] = STATE(2741), - [sym_perl_statement] = STATE(2741), - [sym_for_loop] = STATE(2741), - [sym_while_loop] = STATE(2741), - [sym_if_statement] = STATE(2741), - [sym_try_statement] = STATE(2741), - [sym_throw_statement] = STATE(2741), - [sym_bang_filter_statement] = STATE(2741), - [sym_let_statement] = STATE(2741), - [sym_const_statement] = STATE(2741), - [sym_set_statement] = STATE(2741), - [sym_setlocal_statement] = STATE(2741), - [sym_unlet_statement] = STATE(2741), - [sym_call_statement] = STATE(2741), - [sym_echo_statement] = STATE(2741), - [sym_echon_statement] = STATE(2741), - [sym_echohl_statement] = STATE(2741), - [sym_echomsg_statement] = STATE(2741), - [sym_echoerr_statement] = STATE(2741), - [sym_execute_statement] = STATE(2741), - [sym_silent_statement] = STATE(2741), - [sym_vertical_statement] = STATE(2741), - [sym_topleft_statement] = STATE(2741), - [sym_botright_statement] = STATE(2741), - [sym_aboveleft_statement] = STATE(2741), - [sym_belowright_statement] = STATE(2741), - [sym_user_command] = STATE(2741), - [sym_function_definition] = STATE(2741), - [sym_bang] = STATE(85), - [sym_range_statement] = STATE(2741), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2741), - [sym_map_statement] = STATE(2741), - [sym_sign_statement] = STATE(2741), - [sym_eval_statement] = STATE(2741), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2741), - [sym_augroup_statement] = STATE(2741), - [sym_command_statement] = STATE(2741), - [sym_comclear_statement] = STATE(2741), - [sym_delcommand_statement] = STATE(2741), - [sym_highlight_statement] = STATE(2741), - [sym_syntax_statement] = STATE(2741), - [sym_edit_statement] = STATE(2741), - [sym_enew_statement] = STATE(2741), - [sym_find_statement] = STATE(2741), - [sym_ex_statement] = STATE(2741), - [sym_visual_statement] = STATE(2741), - [sym_view_statement] = STATE(2741), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(676), [anon_sym_QMARK] = ACTIONS(9), @@ -61952,85 +61807,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [59] = { - [sym__statement] = STATE(2783), - [sym_unknown_builtin_statement] = STATE(2783), - [sym_return_statement] = STATE(2783), - [sym_break_statement] = STATE(2783), - [sym_continue_statement] = STATE(2783), - [sym_normal_statement] = STATE(2783), - [sym_setfiletype_statement] = STATE(2783), - [sym_options_statement] = STATE(2783), - [sym_startinsert_statement] = STATE(2783), - [sym_stopinsert_statement] = STATE(2783), - [sym_scriptencoding_statement] = STATE(2783), - [sym_cnext_statement] = STATE(2783), - [sym_cprevious_statement] = STATE(2783), - [sym_runtime_statement] = STATE(2783), - [sym_wincmd_statement] = STATE(2783), - [sym_source_statement] = STATE(2783), - [sym_global_statement] = STATE(2783), - [sym_filetype_statement] = STATE(2783), - [sym_colorscheme_statement] = STATE(2783), - [sym_lua_statement] = STATE(2783), - [sym_ruby_statement] = STATE(2783), - [sym_python_statement] = STATE(2783), - [sym_perl_statement] = STATE(2783), - [sym_for_loop] = STATE(2783), - [sym_while_loop] = STATE(2783), - [sym_if_statement] = STATE(2783), - [sym_try_statement] = STATE(2783), - [sym_throw_statement] = STATE(2783), - [sym_bang_filter_statement] = STATE(2783), - [sym_let_statement] = STATE(2783), - [sym_const_statement] = STATE(2783), - [sym_set_statement] = STATE(2783), - [sym_setlocal_statement] = STATE(2783), - [sym_unlet_statement] = STATE(2783), - [sym_call_statement] = STATE(2783), - [sym_echo_statement] = STATE(2783), - [sym_echon_statement] = STATE(2783), - [sym_echohl_statement] = STATE(2783), - [sym_echomsg_statement] = STATE(2783), - [sym_echoerr_statement] = STATE(2783), - [sym_execute_statement] = STATE(2783), - [sym_silent_statement] = STATE(2783), - [sym_vertical_statement] = STATE(2783), - [sym_topleft_statement] = STATE(2783), - [sym_botright_statement] = STATE(2783), - [sym_aboveleft_statement] = STATE(2783), - [sym_belowright_statement] = STATE(2783), - [sym_user_command] = STATE(2783), - [sym_function_definition] = STATE(2783), - [sym_range_statement] = STATE(2783), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2783), - [sym_map_statement] = STATE(2783), - [sym_sign_statement] = STATE(2783), - [sym_eval_statement] = STATE(2783), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2783), - [sym_augroup_statement] = STATE(2783), - [sym_command_statement] = STATE(2783), - [sym_comclear_statement] = STATE(2783), - [sym_delcommand_statement] = STATE(2783), - [sym_highlight_statement] = STATE(2783), - [sym_syntax_statement] = STATE(2783), - [sym_edit_statement] = STATE(2783), - [sym_enew_statement] = STATE(2783), - [sym_find_statement] = STATE(2783), - [sym_ex_statement] = STATE(2783), - [sym_visual_statement] = STATE(2783), - [sym_view_statement] = STATE(2783), + [58] = { + [sym__statement] = STATE(2485), + [sym_unknown_builtin_statement] = STATE(2485), + [sym_return_statement] = STATE(2485), + [sym_break_statement] = STATE(2485), + [sym_continue_statement] = STATE(2485), + [sym_normal_statement] = STATE(2485), + [sym_setfiletype_statement] = STATE(2485), + [sym_options_statement] = STATE(2485), + [sym_startinsert_statement] = STATE(2485), + [sym_stopinsert_statement] = STATE(2485), + [sym_scriptencoding_statement] = STATE(2485), + [sym_cnext_statement] = STATE(2485), + [sym_cprevious_statement] = STATE(2485), + [sym_runtime_statement] = STATE(2485), + [sym_wincmd_statement] = STATE(2485), + [sym_source_statement] = STATE(2485), + [sym_global_statement] = STATE(2485), + [sym_filetype_statement] = STATE(2485), + [sym_colorscheme_statement] = STATE(2485), + [sym_lua_statement] = STATE(2485), + [sym_ruby_statement] = STATE(2485), + [sym_python_statement] = STATE(2485), + [sym_perl_statement] = STATE(2485), + [sym_for_loop] = STATE(2485), + [sym_while_loop] = STATE(2485), + [sym_if_statement] = STATE(2485), + [sym_try_statement] = STATE(2485), + [sym_throw_statement] = STATE(2485), + [sym_bang_filter_statement] = STATE(2485), + [sym_let_statement] = STATE(2485), + [sym_const_statement] = STATE(2485), + [sym_set_statement] = STATE(2485), + [sym_setlocal_statement] = STATE(2485), + [sym_unlet_statement] = STATE(2485), + [sym_call_statement] = STATE(2485), + [sym_echo_statement] = STATE(2485), + [sym_echon_statement] = STATE(2485), + [sym_echohl_statement] = STATE(2485), + [sym_echomsg_statement] = STATE(2485), + [sym_echoerr_statement] = STATE(2485), + [sym_execute_statement] = STATE(2485), + [sym_silent_statement] = STATE(2485), + [sym_vertical_statement] = STATE(2485), + [sym_topleft_statement] = STATE(2485), + [sym_botright_statement] = STATE(2485), + [sym_aboveleft_statement] = STATE(2485), + [sym_belowright_statement] = STATE(2485), + [sym_user_command] = STATE(2485), + [sym_function_definition] = STATE(2485), + [sym_bang] = STATE(70), + [sym_range_statement] = STATE(2485), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2485), + [sym_map_statement] = STATE(2485), + [sym_sign_statement] = STATE(2485), + [sym_eval_statement] = STATE(2485), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2485), + [sym_augroup_statement] = STATE(2485), + [sym_command_statement] = STATE(2485), + [sym_comclear_statement] = STATE(2485), + [sym_delcommand_statement] = STATE(2485), + [sym_highlight_statement] = STATE(2485), + [sym_syntax_statement] = STATE(2485), + [sym_edit_statement] = STATE(2485), + [sym_enew_statement] = STATE(2485), + [sym_find_statement] = STATE(2485), + [sym_ex_statement] = STATE(2485), + [sym_visual_statement] = STATE(2485), + [sym_view_statement] = STATE(2485), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(676), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [59] = { + [sym__statement] = STATE(2825), + [sym_unknown_builtin_statement] = STATE(2825), + [sym_return_statement] = STATE(2825), + [sym_break_statement] = STATE(2825), + [sym_continue_statement] = STATE(2825), + [sym_normal_statement] = STATE(2825), + [sym_setfiletype_statement] = STATE(2825), + [sym_options_statement] = STATE(2825), + [sym_startinsert_statement] = STATE(2825), + [sym_stopinsert_statement] = STATE(2825), + [sym_scriptencoding_statement] = STATE(2825), + [sym_cnext_statement] = STATE(2825), + [sym_cprevious_statement] = STATE(2825), + [sym_runtime_statement] = STATE(2825), + [sym_wincmd_statement] = STATE(2825), + [sym_source_statement] = STATE(2825), + [sym_global_statement] = STATE(2825), + [sym_filetype_statement] = STATE(2825), + [sym_colorscheme_statement] = STATE(2825), + [sym_lua_statement] = STATE(2825), + [sym_ruby_statement] = STATE(2825), + [sym_python_statement] = STATE(2825), + [sym_perl_statement] = STATE(2825), + [sym_for_loop] = STATE(2825), + [sym_while_loop] = STATE(2825), + [sym_if_statement] = STATE(2825), + [sym_try_statement] = STATE(2825), + [sym_throw_statement] = STATE(2825), + [sym_bang_filter_statement] = STATE(2825), + [sym_let_statement] = STATE(2825), + [sym_const_statement] = STATE(2825), + [sym_set_statement] = STATE(2825), + [sym_setlocal_statement] = STATE(2825), + [sym_unlet_statement] = STATE(2825), + [sym_call_statement] = STATE(2825), + [sym_echo_statement] = STATE(2825), + [sym_echon_statement] = STATE(2825), + [sym_echohl_statement] = STATE(2825), + [sym_echomsg_statement] = STATE(2825), + [sym_echoerr_statement] = STATE(2825), + [sym_execute_statement] = STATE(2825), + [sym_silent_statement] = STATE(2825), + [sym_vertical_statement] = STATE(2825), + [sym_topleft_statement] = STATE(2825), + [sym_botright_statement] = STATE(2825), + [sym_aboveleft_statement] = STATE(2825), + [sym_belowright_statement] = STATE(2825), + [sym_user_command] = STATE(2825), + [sym_function_definition] = STATE(2825), + [sym_range_statement] = STATE(2825), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2825), + [sym_map_statement] = STATE(2825), + [sym_sign_statement] = STATE(2825), + [sym_eval_statement] = STATE(2825), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2825), + [sym_augroup_statement] = STATE(2825), + [sym_command_statement] = STATE(2825), + [sym_comclear_statement] = STATE(2825), + [sym_delcommand_statement] = STATE(2825), + [sym_highlight_statement] = STATE(2825), + [sym_syntax_statement] = STATE(2825), + [sym_edit_statement] = STATE(2825), + [sym_enew_statement] = STATE(2825), + [sym_find_statement] = STATE(2825), + [sym_ex_statement] = STATE(2825), + [sym_visual_statement] = STATE(2825), + [sym_view_statement] = STATE(2825), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -62135,266 +62173,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [60] = { - [sym__statement] = STATE(2519), - [sym_unknown_builtin_statement] = STATE(2519), - [sym_return_statement] = STATE(2519), - [sym_break_statement] = STATE(2519), - [sym_continue_statement] = STATE(2519), - [sym_normal_statement] = STATE(2519), - [sym_setfiletype_statement] = STATE(2519), - [sym_options_statement] = STATE(2519), - [sym_startinsert_statement] = STATE(2519), - [sym_stopinsert_statement] = STATE(2519), - [sym_scriptencoding_statement] = STATE(2519), - [sym_cnext_statement] = STATE(2519), - [sym_cprevious_statement] = STATE(2519), - [sym_runtime_statement] = STATE(2519), - [sym_wincmd_statement] = STATE(2519), - [sym_source_statement] = STATE(2519), - [sym_global_statement] = STATE(2519), - [sym_filetype_statement] = STATE(2519), - [sym_colorscheme_statement] = STATE(2519), - [sym_lua_statement] = STATE(2519), - [sym_ruby_statement] = STATE(2519), - [sym_python_statement] = STATE(2519), - [sym_perl_statement] = STATE(2519), - [sym_for_loop] = STATE(2519), - [sym_while_loop] = STATE(2519), - [sym_if_statement] = STATE(2519), - [sym_try_statement] = STATE(2519), - [sym_throw_statement] = STATE(2519), - [sym_bang_filter_statement] = STATE(2519), - [sym_let_statement] = STATE(2519), - [sym_const_statement] = STATE(2519), - [sym_set_statement] = STATE(2519), - [sym_setlocal_statement] = STATE(2519), - [sym_unlet_statement] = STATE(2519), - [sym_call_statement] = STATE(2519), - [sym_echo_statement] = STATE(2519), - [sym_echon_statement] = STATE(2519), - [sym_echohl_statement] = STATE(2519), - [sym_echomsg_statement] = STATE(2519), - [sym_echoerr_statement] = STATE(2519), - [sym_execute_statement] = STATE(2519), - [sym_silent_statement] = STATE(2519), - [sym_vertical_statement] = STATE(2519), - [sym_topleft_statement] = STATE(2519), - [sym_botright_statement] = STATE(2519), - [sym_aboveleft_statement] = STATE(2519), - [sym_belowright_statement] = STATE(2519), - [sym_user_command] = STATE(2519), - [sym_function_definition] = STATE(2519), - [sym_range_statement] = STATE(2519), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2519), - [sym_map_statement] = STATE(2519), - [sym_sign_statement] = STATE(2519), - [sym_eval_statement] = STATE(2519), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2519), - [sym_augroup_statement] = STATE(2519), - [sym_command_statement] = STATE(2519), - [sym_comclear_statement] = STATE(2519), - [sym_delcommand_statement] = STATE(2519), - [sym_highlight_statement] = STATE(2519), - [sym_syntax_statement] = STATE(2519), - [sym_edit_statement] = STATE(2519), - [sym_enew_statement] = STATE(2519), - [sym_find_statement] = STATE(2519), - [sym_ex_statement] = STATE(2519), - [sym_visual_statement] = STATE(2519), - [sym_view_statement] = STATE(2519), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), + [sym__statement] = STATE(2388), + [sym_unknown_builtin_statement] = STATE(2388), + [sym_return_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_normal_statement] = STATE(2388), + [sym_setfiletype_statement] = STATE(2388), + [sym_options_statement] = STATE(2388), + [sym_startinsert_statement] = STATE(2388), + [sym_stopinsert_statement] = STATE(2388), + [sym_scriptencoding_statement] = STATE(2388), + [sym_cnext_statement] = STATE(2388), + [sym_cprevious_statement] = STATE(2388), + [sym_runtime_statement] = STATE(2388), + [sym_wincmd_statement] = STATE(2388), + [sym_source_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_filetype_statement] = STATE(2388), + [sym_colorscheme_statement] = STATE(2388), + [sym_lua_statement] = STATE(2388), + [sym_ruby_statement] = STATE(2388), + [sym_python_statement] = STATE(2388), + [sym_perl_statement] = STATE(2388), + [sym_for_loop] = STATE(2388), + [sym_while_loop] = STATE(2388), + [sym_if_statement] = STATE(2388), + [sym_try_statement] = STATE(2388), + [sym_throw_statement] = STATE(2388), + [sym_bang_filter_statement] = STATE(2388), + [sym_let_statement] = STATE(2388), + [sym_const_statement] = STATE(2388), + [sym_set_statement] = STATE(2388), + [sym_setlocal_statement] = STATE(2388), + [sym_unlet_statement] = STATE(2388), + [sym_call_statement] = STATE(2388), + [sym_echo_statement] = STATE(2388), + [sym_echon_statement] = STATE(2388), + [sym_echohl_statement] = STATE(2388), + [sym_echomsg_statement] = STATE(2388), + [sym_echoerr_statement] = STATE(2388), + [sym_execute_statement] = STATE(2388), + [sym_silent_statement] = STATE(2388), + [sym_vertical_statement] = STATE(2388), + [sym_topleft_statement] = STATE(2388), + [sym_botright_statement] = STATE(2388), + [sym_aboveleft_statement] = STATE(2388), + [sym_belowright_statement] = STATE(2388), + [sym_user_command] = STATE(2388), + [sym_function_definition] = STATE(2388), + [sym_range_statement] = STATE(2388), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2388), + [sym_map_statement] = STATE(2388), + [sym_sign_statement] = STATE(2388), + [sym_eval_statement] = STATE(2388), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2388), + [sym_augroup_statement] = STATE(2388), + [sym_command_statement] = STATE(2388), + [sym_comclear_statement] = STATE(2388), + [sym_delcommand_statement] = STATE(2388), + [sym_highlight_statement] = STATE(2388), + [sym_syntax_statement] = STATE(2388), + [sym_edit_statement] = STATE(2388), + [sym_enew_statement] = STATE(2388), + [sym_find_statement] = STATE(2388), + [sym_ex_statement] = STATE(2388), + [sym_visual_statement] = STATE(2388), + [sym_view_statement] = STATE(2388), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), [sym_au_nested] = ACTIONS(680), - [sym_command_name] = ACTIONS(474), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, [61] = { - [sym__statement] = STATE(2707), - [sym_unknown_builtin_statement] = STATE(2707), - [sym_return_statement] = STATE(2707), - [sym_break_statement] = STATE(2707), - [sym_continue_statement] = STATE(2707), - [sym_normal_statement] = STATE(2707), - [sym_setfiletype_statement] = STATE(2707), - [sym_options_statement] = STATE(2707), - [sym_startinsert_statement] = STATE(2707), - [sym_stopinsert_statement] = STATE(2707), - [sym_scriptencoding_statement] = STATE(2707), - [sym_cnext_statement] = STATE(2707), - [sym_cprevious_statement] = STATE(2707), - [sym_runtime_statement] = STATE(2707), - [sym_wincmd_statement] = STATE(2707), - [sym_source_statement] = STATE(2707), - [sym_global_statement] = STATE(2707), - [sym_filetype_statement] = STATE(2707), - [sym_colorscheme_statement] = STATE(2707), - [sym_lua_statement] = STATE(2707), - [sym_ruby_statement] = STATE(2707), - [sym_python_statement] = STATE(2707), - [sym_perl_statement] = STATE(2707), - [sym_for_loop] = STATE(2707), - [sym_while_loop] = STATE(2707), - [sym_if_statement] = STATE(2707), - [sym_try_statement] = STATE(2707), - [sym_throw_statement] = STATE(2707), - [sym_bang_filter_statement] = STATE(2707), - [sym_let_statement] = STATE(2707), - [sym_const_statement] = STATE(2707), - [sym_set_statement] = STATE(2707), - [sym_setlocal_statement] = STATE(2707), - [sym_unlet_statement] = STATE(2707), - [sym_call_statement] = STATE(2707), - [sym_echo_statement] = STATE(2707), - [sym_echon_statement] = STATE(2707), - [sym_echohl_statement] = STATE(2707), - [sym_echomsg_statement] = STATE(2707), - [sym_echoerr_statement] = STATE(2707), - [sym_execute_statement] = STATE(2707), - [sym_silent_statement] = STATE(2707), - [sym_vertical_statement] = STATE(2707), - [sym_topleft_statement] = STATE(2707), - [sym_botright_statement] = STATE(2707), - [sym_aboveleft_statement] = STATE(2707), - [sym_belowright_statement] = STATE(2707), - [sym_user_command] = STATE(2707), - [sym_function_definition] = STATE(2707), - [sym_range_statement] = STATE(2707), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2707), - [sym_map_statement] = STATE(2707), - [sym_sign_statement] = STATE(2707), - [sym_eval_statement] = STATE(2707), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2707), - [sym_augroup_statement] = STATE(2707), - [sym_command_statement] = STATE(2707), - [sym_comclear_statement] = STATE(2707), - [sym_delcommand_statement] = STATE(2707), - [sym_highlight_statement] = STATE(2707), - [sym_syntax_statement] = STATE(2707), - [sym_edit_statement] = STATE(2707), - [sym_enew_statement] = STATE(2707), - [sym_find_statement] = STATE(2707), - [sym_ex_statement] = STATE(2707), - [sym_visual_statement] = STATE(2707), - [sym_view_statement] = STATE(2707), - [aux_sym__statement_repeat1] = STATE(92), + [sym__statement] = STATE(2694), + [sym_unknown_builtin_statement] = STATE(2694), + [sym_return_statement] = STATE(2694), + [sym_break_statement] = STATE(2694), + [sym_continue_statement] = STATE(2694), + [sym_normal_statement] = STATE(2694), + [sym_setfiletype_statement] = STATE(2694), + [sym_options_statement] = STATE(2694), + [sym_startinsert_statement] = STATE(2694), + [sym_stopinsert_statement] = STATE(2694), + [sym_scriptencoding_statement] = STATE(2694), + [sym_cnext_statement] = STATE(2694), + [sym_cprevious_statement] = STATE(2694), + [sym_runtime_statement] = STATE(2694), + [sym_wincmd_statement] = STATE(2694), + [sym_source_statement] = STATE(2694), + [sym_global_statement] = STATE(2694), + [sym_filetype_statement] = STATE(2694), + [sym_colorscheme_statement] = STATE(2694), + [sym_lua_statement] = STATE(2694), + [sym_ruby_statement] = STATE(2694), + [sym_python_statement] = STATE(2694), + [sym_perl_statement] = STATE(2694), + [sym_for_loop] = STATE(2694), + [sym_while_loop] = STATE(2694), + [sym_if_statement] = STATE(2694), + [sym_try_statement] = STATE(2694), + [sym_throw_statement] = STATE(2694), + [sym_bang_filter_statement] = STATE(2694), + [sym_let_statement] = STATE(2694), + [sym_const_statement] = STATE(2694), + [sym_set_statement] = STATE(2694), + [sym_setlocal_statement] = STATE(2694), + [sym_unlet_statement] = STATE(2694), + [sym_call_statement] = STATE(2694), + [sym_echo_statement] = STATE(2694), + [sym_echon_statement] = STATE(2694), + [sym_echohl_statement] = STATE(2694), + [sym_echomsg_statement] = STATE(2694), + [sym_echoerr_statement] = STATE(2694), + [sym_execute_statement] = STATE(2694), + [sym_silent_statement] = STATE(2694), + [sym_vertical_statement] = STATE(2694), + [sym_topleft_statement] = STATE(2694), + [sym_botright_statement] = STATE(2694), + [sym_aboveleft_statement] = STATE(2694), + [sym_belowright_statement] = STATE(2694), + [sym_user_command] = STATE(2694), + [sym_function_definition] = STATE(2694), + [sym_range_statement] = STATE(2694), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2694), + [sym_map_statement] = STATE(2694), + [sym_sign_statement] = STATE(2694), + [sym_eval_statement] = STATE(2694), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2694), + [sym_augroup_statement] = STATE(2694), + [sym_command_statement] = STATE(2694), + [sym_comclear_statement] = STATE(2694), + [sym_delcommand_statement] = STATE(2694), + [sym_highlight_statement] = STATE(2694), + [sym_syntax_statement] = STATE(2694), + [sym_edit_statement] = STATE(2694), + [sym_enew_statement] = STATE(2694), + [sym_find_statement] = STATE(2694), + [sym_ex_statement] = STATE(2694), + [sym_visual_statement] = STATE(2694), + [sym_view_statement] = STATE(2694), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -62498,84 +62536,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [62] = { - [sym__statement] = STATE(2677), - [sym_unknown_builtin_statement] = STATE(2677), - [sym_return_statement] = STATE(2677), - [sym_break_statement] = STATE(2677), - [sym_continue_statement] = STATE(2677), - [sym_normal_statement] = STATE(2677), - [sym_setfiletype_statement] = STATE(2677), - [sym_options_statement] = STATE(2677), - [sym_startinsert_statement] = STATE(2677), - [sym_stopinsert_statement] = STATE(2677), - [sym_scriptencoding_statement] = STATE(2677), - [sym_cnext_statement] = STATE(2677), - [sym_cprevious_statement] = STATE(2677), - [sym_runtime_statement] = STATE(2677), - [sym_wincmd_statement] = STATE(2677), - [sym_source_statement] = STATE(2677), - [sym_global_statement] = STATE(2677), - [sym_filetype_statement] = STATE(2677), - [sym_colorscheme_statement] = STATE(2677), - [sym_lua_statement] = STATE(2677), - [sym_ruby_statement] = STATE(2677), - [sym_python_statement] = STATE(2677), - [sym_perl_statement] = STATE(2677), - [sym_for_loop] = STATE(2677), - [sym_while_loop] = STATE(2677), - [sym_if_statement] = STATE(2677), - [sym_try_statement] = STATE(2677), - [sym_throw_statement] = STATE(2677), - [sym_bang_filter_statement] = STATE(2677), - [sym_let_statement] = STATE(2677), - [sym_const_statement] = STATE(2677), - [sym_set_statement] = STATE(2677), - [sym_setlocal_statement] = STATE(2677), - [sym_unlet_statement] = STATE(2677), - [sym_call_statement] = STATE(2677), - [sym_echo_statement] = STATE(2677), - [sym_echon_statement] = STATE(2677), - [sym_echohl_statement] = STATE(2677), - [sym_echomsg_statement] = STATE(2677), - [sym_echoerr_statement] = STATE(2677), - [sym_execute_statement] = STATE(2677), - [sym_silent_statement] = STATE(2677), - [sym_vertical_statement] = STATE(2677), - [sym_topleft_statement] = STATE(2677), - [sym_botright_statement] = STATE(2677), - [sym_aboveleft_statement] = STATE(2677), - [sym_belowright_statement] = STATE(2677), - [sym_user_command] = STATE(2677), - [sym_function_definition] = STATE(2677), - [sym_range_statement] = STATE(2677), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2677), - [sym_map_statement] = STATE(2677), - [sym_sign_statement] = STATE(2677), - [sym_eval_statement] = STATE(2677), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2677), - [sym_augroup_statement] = STATE(2677), - [sym_command_statement] = STATE(2677), - [sym_comclear_statement] = STATE(2677), - [sym_delcommand_statement] = STATE(2677), - [sym_highlight_statement] = STATE(2677), - [sym_syntax_statement] = STATE(2677), - [sym_edit_statement] = STATE(2677), - [sym_enew_statement] = STATE(2677), - [sym_find_statement] = STATE(2677), - [sym_ex_statement] = STATE(2677), - [sym_visual_statement] = STATE(2677), - [sym_view_statement] = STATE(2677), + [sym__statement] = STATE(2320), + [sym_unknown_builtin_statement] = STATE(2320), + [sym_return_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_normal_statement] = STATE(2320), + [sym_setfiletype_statement] = STATE(2320), + [sym_options_statement] = STATE(2320), + [sym_startinsert_statement] = STATE(2320), + [sym_stopinsert_statement] = STATE(2320), + [sym_scriptencoding_statement] = STATE(2320), + [sym_cnext_statement] = STATE(2320), + [sym_cprevious_statement] = STATE(2320), + [sym_runtime_statement] = STATE(2320), + [sym_wincmd_statement] = STATE(2320), + [sym_source_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_filetype_statement] = STATE(2320), + [sym_colorscheme_statement] = STATE(2320), + [sym_lua_statement] = STATE(2320), + [sym_ruby_statement] = STATE(2320), + [sym_python_statement] = STATE(2320), + [sym_perl_statement] = STATE(2320), + [sym_for_loop] = STATE(2320), + [sym_while_loop] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_try_statement] = STATE(2320), + [sym_throw_statement] = STATE(2320), + [sym_bang_filter_statement] = STATE(2320), + [sym_let_statement] = STATE(2320), + [sym_const_statement] = STATE(2320), + [sym_set_statement] = STATE(2320), + [sym_setlocal_statement] = STATE(2320), + [sym_unlet_statement] = STATE(2320), + [sym_call_statement] = STATE(2320), + [sym_echo_statement] = STATE(2320), + [sym_echon_statement] = STATE(2320), + [sym_echohl_statement] = STATE(2320), + [sym_echomsg_statement] = STATE(2320), + [sym_echoerr_statement] = STATE(2320), + [sym_execute_statement] = STATE(2320), + [sym_silent_statement] = STATE(2320), + [sym_vertical_statement] = STATE(2320), + [sym_topleft_statement] = STATE(2320), + [sym_botright_statement] = STATE(2320), + [sym_aboveleft_statement] = STATE(2320), + [sym_belowright_statement] = STATE(2320), + [sym_user_command] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_range_statement] = STATE(2320), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2320), + [sym_map_statement] = STATE(2320), + [sym_sign_statement] = STATE(2320), + [sym_eval_statement] = STATE(2320), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2320), + [sym_augroup_statement] = STATE(2320), + [sym_command_statement] = STATE(2320), + [sym_comclear_statement] = STATE(2320), + [sym_delcommand_statement] = STATE(2320), + [sym_highlight_statement] = STATE(2320), + [sym_syntax_statement] = STATE(2320), + [sym_edit_statement] = STATE(2320), + [sym_enew_statement] = STATE(2320), + [sym_find_statement] = STATE(2320), + [sym_ex_statement] = STATE(2320), + [sym_visual_statement] = STATE(2320), + [sym_view_statement] = STATE(2320), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [63] = { + [sym__statement] = STATE(2815), + [sym_unknown_builtin_statement] = STATE(2815), + [sym_return_statement] = STATE(2815), + [sym_break_statement] = STATE(2815), + [sym_continue_statement] = STATE(2815), + [sym_normal_statement] = STATE(2815), + [sym_setfiletype_statement] = STATE(2815), + [sym_options_statement] = STATE(2815), + [sym_startinsert_statement] = STATE(2815), + [sym_stopinsert_statement] = STATE(2815), + [sym_scriptencoding_statement] = STATE(2815), + [sym_cnext_statement] = STATE(2815), + [sym_cprevious_statement] = STATE(2815), + [sym_runtime_statement] = STATE(2815), + [sym_wincmd_statement] = STATE(2815), + [sym_source_statement] = STATE(2815), + [sym_global_statement] = STATE(2815), + [sym_filetype_statement] = STATE(2815), + [sym_colorscheme_statement] = STATE(2815), + [sym_lua_statement] = STATE(2815), + [sym_ruby_statement] = STATE(2815), + [sym_python_statement] = STATE(2815), + [sym_perl_statement] = STATE(2815), + [sym_for_loop] = STATE(2815), + [sym_while_loop] = STATE(2815), + [sym_if_statement] = STATE(2815), + [sym_try_statement] = STATE(2815), + [sym_throw_statement] = STATE(2815), + [sym_bang_filter_statement] = STATE(2815), + [sym_let_statement] = STATE(2815), + [sym_const_statement] = STATE(2815), + [sym_set_statement] = STATE(2815), + [sym_setlocal_statement] = STATE(2815), + [sym_unlet_statement] = STATE(2815), + [sym_call_statement] = STATE(2815), + [sym_echo_statement] = STATE(2815), + [sym_echon_statement] = STATE(2815), + [sym_echohl_statement] = STATE(2815), + [sym_echomsg_statement] = STATE(2815), + [sym_echoerr_statement] = STATE(2815), + [sym_execute_statement] = STATE(2815), + [sym_silent_statement] = STATE(2815), + [sym_vertical_statement] = STATE(2815), + [sym_topleft_statement] = STATE(2815), + [sym_botright_statement] = STATE(2815), + [sym_aboveleft_statement] = STATE(2815), + [sym_belowright_statement] = STATE(2815), + [sym_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [sym_eval_statement] = STATE(2815), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2815), + [sym_augroup_statement] = STATE(2815), + [sym_command_statement] = STATE(2815), + [sym_comclear_statement] = STATE(2815), + [sym_delcommand_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_edit_statement] = STATE(2815), + [sym_enew_statement] = STATE(2815), + [sym_find_statement] = STATE(2815), + [sym_ex_statement] = STATE(2815), + [sym_visual_statement] = STATE(2815), + [sym_view_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -62678,266 +62897,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [63] = { - [sym__statement] = STATE(2149), - [sym_unknown_builtin_statement] = STATE(2149), - [sym_return_statement] = STATE(2149), - [sym_break_statement] = STATE(2149), - [sym_continue_statement] = STATE(2149), - [sym_normal_statement] = STATE(2149), - [sym_setfiletype_statement] = STATE(2149), - [sym_options_statement] = STATE(2149), - [sym_startinsert_statement] = STATE(2149), - [sym_stopinsert_statement] = STATE(2149), - [sym_scriptencoding_statement] = STATE(2149), - [sym_cnext_statement] = STATE(2149), - [sym_cprevious_statement] = STATE(2149), - [sym_runtime_statement] = STATE(2149), - [sym_wincmd_statement] = STATE(2149), - [sym_source_statement] = STATE(2149), - [sym_global_statement] = STATE(2149), - [sym_filetype_statement] = STATE(2149), - [sym_colorscheme_statement] = STATE(2149), - [sym_lua_statement] = STATE(2149), - [sym_ruby_statement] = STATE(2149), - [sym_python_statement] = STATE(2149), - [sym_perl_statement] = STATE(2149), - [sym_for_loop] = STATE(2149), - [sym_while_loop] = STATE(2149), - [sym_if_statement] = STATE(2149), - [sym_try_statement] = STATE(2149), - [sym_throw_statement] = STATE(2149), - [sym_bang_filter_statement] = STATE(2149), - [sym_let_statement] = STATE(2149), - [sym_const_statement] = STATE(2149), - [sym_set_statement] = STATE(2149), - [sym_setlocal_statement] = STATE(2149), - [sym_unlet_statement] = STATE(2149), - [sym_call_statement] = STATE(2149), - [sym_echo_statement] = STATE(2149), - [sym_echon_statement] = STATE(2149), - [sym_echohl_statement] = STATE(2149), - [sym_echomsg_statement] = STATE(2149), - [sym_echoerr_statement] = STATE(2149), - [sym_execute_statement] = STATE(2149), - [sym_silent_statement] = STATE(2149), - [sym_vertical_statement] = STATE(2149), - [sym_topleft_statement] = STATE(2149), - [sym_botright_statement] = STATE(2149), - [sym_aboveleft_statement] = STATE(2149), - [sym_belowright_statement] = STATE(2149), - [sym_user_command] = STATE(2149), - [sym_function_definition] = STATE(2149), - [sym_range_statement] = STATE(2149), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2149), - [sym_map_statement] = STATE(2149), - [sym_sign_statement] = STATE(2149), - [sym_eval_statement] = STATE(2149), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2149), - [sym_augroup_statement] = STATE(2149), - [sym_command_statement] = STATE(2149), - [sym_comclear_statement] = STATE(2149), - [sym_delcommand_statement] = STATE(2149), - [sym_highlight_statement] = STATE(2149), - [sym_syntax_statement] = STATE(2149), - [sym_edit_statement] = STATE(2149), - [sym_enew_statement] = STATE(2149), - [sym_find_statement] = STATE(2149), - [sym_ex_statement] = STATE(2149), - [sym_visual_statement] = STATE(2149), - [sym_view_statement] = STATE(2149), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, [64] = { - [sym__statement] = STATE(2733), - [sym_unknown_builtin_statement] = STATE(2733), - [sym_return_statement] = STATE(2733), - [sym_break_statement] = STATE(2733), - [sym_continue_statement] = STATE(2733), - [sym_normal_statement] = STATE(2733), - [sym_setfiletype_statement] = STATE(2733), - [sym_options_statement] = STATE(2733), - [sym_startinsert_statement] = STATE(2733), - [sym_stopinsert_statement] = STATE(2733), - [sym_scriptencoding_statement] = STATE(2733), - [sym_cnext_statement] = STATE(2733), - [sym_cprevious_statement] = STATE(2733), - [sym_runtime_statement] = STATE(2733), - [sym_wincmd_statement] = STATE(2733), - [sym_source_statement] = STATE(2733), - [sym_global_statement] = STATE(2733), - [sym_filetype_statement] = STATE(2733), - [sym_colorscheme_statement] = STATE(2733), - [sym_lua_statement] = STATE(2733), - [sym_ruby_statement] = STATE(2733), - [sym_python_statement] = STATE(2733), - [sym_perl_statement] = STATE(2733), - [sym_for_loop] = STATE(2733), - [sym_while_loop] = STATE(2733), - [sym_if_statement] = STATE(2733), - [sym_try_statement] = STATE(2733), - [sym_throw_statement] = STATE(2733), - [sym_bang_filter_statement] = STATE(2733), - [sym_let_statement] = STATE(2733), - [sym_const_statement] = STATE(2733), - [sym_set_statement] = STATE(2733), - [sym_setlocal_statement] = STATE(2733), - [sym_unlet_statement] = STATE(2733), - [sym_call_statement] = STATE(2733), - [sym_echo_statement] = STATE(2733), - [sym_echon_statement] = STATE(2733), - [sym_echohl_statement] = STATE(2733), - [sym_echomsg_statement] = STATE(2733), - [sym_echoerr_statement] = STATE(2733), - [sym_execute_statement] = STATE(2733), - [sym_silent_statement] = STATE(2733), - [sym_vertical_statement] = STATE(2733), - [sym_topleft_statement] = STATE(2733), - [sym_botright_statement] = STATE(2733), - [sym_aboveleft_statement] = STATE(2733), - [sym_belowright_statement] = STATE(2733), - [sym_user_command] = STATE(2733), - [sym_function_definition] = STATE(2733), - [sym_range_statement] = STATE(2733), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2733), - [sym_map_statement] = STATE(2733), - [sym_sign_statement] = STATE(2733), - [sym_eval_statement] = STATE(2733), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2733), - [sym_augroup_statement] = STATE(2733), - [sym_command_statement] = STATE(2733), - [sym_comclear_statement] = STATE(2733), - [sym_delcommand_statement] = STATE(2733), - [sym_highlight_statement] = STATE(2733), - [sym_syntax_statement] = STATE(2733), - [sym_edit_statement] = STATE(2733), - [sym_enew_statement] = STATE(2733), - [sym_find_statement] = STATE(2733), - [sym_ex_statement] = STATE(2733), - [sym_visual_statement] = STATE(2733), - [sym_view_statement] = STATE(2733), - [aux_sym__statement_repeat1] = STATE(92), + [sym__statement] = STATE(2727), + [sym_unknown_builtin_statement] = STATE(2727), + [sym_return_statement] = STATE(2727), + [sym_break_statement] = STATE(2727), + [sym_continue_statement] = STATE(2727), + [sym_normal_statement] = STATE(2727), + [sym_setfiletype_statement] = STATE(2727), + [sym_options_statement] = STATE(2727), + [sym_startinsert_statement] = STATE(2727), + [sym_stopinsert_statement] = STATE(2727), + [sym_scriptencoding_statement] = STATE(2727), + [sym_cnext_statement] = STATE(2727), + [sym_cprevious_statement] = STATE(2727), + [sym_runtime_statement] = STATE(2727), + [sym_wincmd_statement] = STATE(2727), + [sym_source_statement] = STATE(2727), + [sym_global_statement] = STATE(2727), + [sym_filetype_statement] = STATE(2727), + [sym_colorscheme_statement] = STATE(2727), + [sym_lua_statement] = STATE(2727), + [sym_ruby_statement] = STATE(2727), + [sym_python_statement] = STATE(2727), + [sym_perl_statement] = STATE(2727), + [sym_for_loop] = STATE(2727), + [sym_while_loop] = STATE(2727), + [sym_if_statement] = STATE(2727), + [sym_try_statement] = STATE(2727), + [sym_throw_statement] = STATE(2727), + [sym_bang_filter_statement] = STATE(2727), + [sym_let_statement] = STATE(2727), + [sym_const_statement] = STATE(2727), + [sym_set_statement] = STATE(2727), + [sym_setlocal_statement] = STATE(2727), + [sym_unlet_statement] = STATE(2727), + [sym_call_statement] = STATE(2727), + [sym_echo_statement] = STATE(2727), + [sym_echon_statement] = STATE(2727), + [sym_echohl_statement] = STATE(2727), + [sym_echomsg_statement] = STATE(2727), + [sym_echoerr_statement] = STATE(2727), + [sym_execute_statement] = STATE(2727), + [sym_silent_statement] = STATE(2727), + [sym_vertical_statement] = STATE(2727), + [sym_topleft_statement] = STATE(2727), + [sym_botright_statement] = STATE(2727), + [sym_aboveleft_statement] = STATE(2727), + [sym_belowright_statement] = STATE(2727), + [sym_user_command] = STATE(2727), + [sym_function_definition] = STATE(2727), + [sym_range_statement] = STATE(2727), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2727), + [sym_map_statement] = STATE(2727), + [sym_sign_statement] = STATE(2727), + [sym_eval_statement] = STATE(2727), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2727), + [sym_augroup_statement] = STATE(2727), + [sym_command_statement] = STATE(2727), + [sym_comclear_statement] = STATE(2727), + [sym_delcommand_statement] = STATE(2727), + [sym_highlight_statement] = STATE(2727), + [sym_syntax_statement] = STATE(2727), + [sym_edit_statement] = STATE(2727), + [sym_enew_statement] = STATE(2727), + [sym_find_statement] = STATE(2727), + [sym_ex_statement] = STATE(2727), + [sym_visual_statement] = STATE(2727), + [sym_view_statement] = STATE(2727), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -63041,265 +63079,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [65] = { - [sym__statement] = STATE(2444), - [sym_unknown_builtin_statement] = STATE(2444), - [sym_return_statement] = STATE(2444), - [sym_break_statement] = STATE(2444), - [sym_continue_statement] = STATE(2444), - [sym_normal_statement] = STATE(2444), - [sym_setfiletype_statement] = STATE(2444), - [sym_options_statement] = STATE(2444), - [sym_startinsert_statement] = STATE(2444), - [sym_stopinsert_statement] = STATE(2444), - [sym_scriptencoding_statement] = STATE(2444), - [sym_cnext_statement] = STATE(2444), - [sym_cprevious_statement] = STATE(2444), - [sym_runtime_statement] = STATE(2444), - [sym_wincmd_statement] = STATE(2444), - [sym_source_statement] = STATE(2444), - [sym_global_statement] = STATE(2444), - [sym_filetype_statement] = STATE(2444), - [sym_colorscheme_statement] = STATE(2444), - [sym_lua_statement] = STATE(2444), - [sym_ruby_statement] = STATE(2444), - [sym_python_statement] = STATE(2444), - [sym_perl_statement] = STATE(2444), - [sym_for_loop] = STATE(2444), - [sym_while_loop] = STATE(2444), - [sym_if_statement] = STATE(2444), - [sym_try_statement] = STATE(2444), - [sym_throw_statement] = STATE(2444), - [sym_bang_filter_statement] = STATE(2444), - [sym_let_statement] = STATE(2444), - [sym_const_statement] = STATE(2444), - [sym_set_statement] = STATE(2444), - [sym_setlocal_statement] = STATE(2444), - [sym_unlet_statement] = STATE(2444), - [sym_call_statement] = STATE(2444), - [sym_echo_statement] = STATE(2444), - [sym_echon_statement] = STATE(2444), - [sym_echohl_statement] = STATE(2444), - [sym_echomsg_statement] = STATE(2444), - [sym_echoerr_statement] = STATE(2444), - [sym_execute_statement] = STATE(2444), - [sym_silent_statement] = STATE(2444), - [sym_vertical_statement] = STATE(2444), - [sym_topleft_statement] = STATE(2444), - [sym_botright_statement] = STATE(2444), - [sym_aboveleft_statement] = STATE(2444), - [sym_belowright_statement] = STATE(2444), - [sym_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), - [sym_eval_statement] = STATE(2444), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2444), - [sym_augroup_statement] = STATE(2444), - [sym_command_statement] = STATE(2444), - [sym_comclear_statement] = STATE(2444), - [sym_delcommand_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_edit_statement] = STATE(2444), - [sym_enew_statement] = STATE(2444), - [sym_find_statement] = STATE(2444), - [sym_ex_statement] = STATE(2444), - [sym_visual_statement] = STATE(2444), - [sym_view_statement] = STATE(2444), + [sym__statement] = STATE(2833), + [sym_unknown_builtin_statement] = STATE(2833), + [sym_return_statement] = STATE(2833), + [sym_break_statement] = STATE(2833), + [sym_continue_statement] = STATE(2833), + [sym_normal_statement] = STATE(2833), + [sym_setfiletype_statement] = STATE(2833), + [sym_options_statement] = STATE(2833), + [sym_startinsert_statement] = STATE(2833), + [sym_stopinsert_statement] = STATE(2833), + [sym_scriptencoding_statement] = STATE(2833), + [sym_cnext_statement] = STATE(2833), + [sym_cprevious_statement] = STATE(2833), + [sym_runtime_statement] = STATE(2833), + [sym_wincmd_statement] = STATE(2833), + [sym_source_statement] = STATE(2833), + [sym_global_statement] = STATE(2833), + [sym_filetype_statement] = STATE(2833), + [sym_colorscheme_statement] = STATE(2833), + [sym_lua_statement] = STATE(2833), + [sym_ruby_statement] = STATE(2833), + [sym_python_statement] = STATE(2833), + [sym_perl_statement] = STATE(2833), + [sym_for_loop] = STATE(2833), + [sym_while_loop] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_try_statement] = STATE(2833), + [sym_throw_statement] = STATE(2833), + [sym_bang_filter_statement] = STATE(2833), + [sym_let_statement] = STATE(2833), + [sym_const_statement] = STATE(2833), + [sym_set_statement] = STATE(2833), + [sym_setlocal_statement] = STATE(2833), + [sym_unlet_statement] = STATE(2833), + [sym_call_statement] = STATE(2833), + [sym_echo_statement] = STATE(2833), + [sym_echon_statement] = STATE(2833), + [sym_echohl_statement] = STATE(2833), + [sym_echomsg_statement] = STATE(2833), + [sym_echoerr_statement] = STATE(2833), + [sym_execute_statement] = STATE(2833), + [sym_silent_statement] = STATE(2833), + [sym_vertical_statement] = STATE(2833), + [sym_topleft_statement] = STATE(2833), + [sym_botright_statement] = STATE(2833), + [sym_aboveleft_statement] = STATE(2833), + [sym_belowright_statement] = STATE(2833), + [sym_user_command] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_range_statement] = STATE(2833), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2833), + [sym_map_statement] = STATE(2833), + [sym_sign_statement] = STATE(2833), + [sym_eval_statement] = STATE(2833), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2833), + [sym_augroup_statement] = STATE(2833), + [sym_command_statement] = STATE(2833), + [sym_comclear_statement] = STATE(2833), + [sym_delcommand_statement] = STATE(2833), + [sym_highlight_statement] = STATE(2833), + [sym_syntax_statement] = STATE(2833), + [sym_edit_statement] = STATE(2833), + [sym_enew_statement] = STATE(2833), + [sym_find_statement] = STATE(2833), + [sym_ex_statement] = STATE(2833), + [sym_visual_statement] = STATE(2833), + [sym_view_statement] = STATE(2833), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [66] = { - [sym__statement] = STATE(2735), - [sym_unknown_builtin_statement] = STATE(2735), - [sym_return_statement] = STATE(2735), - [sym_break_statement] = STATE(2735), - [sym_continue_statement] = STATE(2735), - [sym_normal_statement] = STATE(2735), - [sym_setfiletype_statement] = STATE(2735), - [sym_options_statement] = STATE(2735), - [sym_startinsert_statement] = STATE(2735), - [sym_stopinsert_statement] = STATE(2735), - [sym_scriptencoding_statement] = STATE(2735), - [sym_cnext_statement] = STATE(2735), - [sym_cprevious_statement] = STATE(2735), - [sym_runtime_statement] = STATE(2735), - [sym_wincmd_statement] = STATE(2735), - [sym_source_statement] = STATE(2735), - [sym_global_statement] = STATE(2735), - [sym_filetype_statement] = STATE(2735), - [sym_colorscheme_statement] = STATE(2735), - [sym_lua_statement] = STATE(2735), - [sym_ruby_statement] = STATE(2735), - [sym_python_statement] = STATE(2735), - [sym_perl_statement] = STATE(2735), - [sym_for_loop] = STATE(2735), - [sym_while_loop] = STATE(2735), - [sym_if_statement] = STATE(2735), - [sym_try_statement] = STATE(2735), - [sym_throw_statement] = STATE(2735), - [sym_bang_filter_statement] = STATE(2735), - [sym_let_statement] = STATE(2735), - [sym_const_statement] = STATE(2735), - [sym_set_statement] = STATE(2735), - [sym_setlocal_statement] = STATE(2735), - [sym_unlet_statement] = STATE(2735), - [sym_call_statement] = STATE(2735), - [sym_echo_statement] = STATE(2735), - [sym_echon_statement] = STATE(2735), - [sym_echohl_statement] = STATE(2735), - [sym_echomsg_statement] = STATE(2735), - [sym_echoerr_statement] = STATE(2735), - [sym_execute_statement] = STATE(2735), - [sym_silent_statement] = STATE(2735), - [sym_vertical_statement] = STATE(2735), - [sym_topleft_statement] = STATE(2735), - [sym_botright_statement] = STATE(2735), - [sym_aboveleft_statement] = STATE(2735), - [sym_belowright_statement] = STATE(2735), - [sym_user_command] = STATE(2735), - [sym_function_definition] = STATE(2735), - [sym_range_statement] = STATE(2735), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2735), - [sym_map_statement] = STATE(2735), - [sym_sign_statement] = STATE(2735), - [sym_eval_statement] = STATE(2735), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2735), - [sym_augroup_statement] = STATE(2735), - [sym_command_statement] = STATE(2735), - [sym_comclear_statement] = STATE(2735), - [sym_delcommand_statement] = STATE(2735), - [sym_highlight_statement] = STATE(2735), - [sym_syntax_statement] = STATE(2735), - [sym_edit_statement] = STATE(2735), - [sym_enew_statement] = STATE(2735), - [sym_find_statement] = STATE(2735), - [sym_ex_statement] = STATE(2735), - [sym_visual_statement] = STATE(2735), - [sym_view_statement] = STATE(2735), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -63402,447 +63259,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [67] = { - [sym__statement] = STATE(2443), - [sym_unknown_builtin_statement] = STATE(2443), - [sym_return_statement] = STATE(2443), - [sym_break_statement] = STATE(2443), - [sym_continue_statement] = STATE(2443), - [sym_normal_statement] = STATE(2443), - [sym_setfiletype_statement] = STATE(2443), - [sym_options_statement] = STATE(2443), - [sym_startinsert_statement] = STATE(2443), - [sym_stopinsert_statement] = STATE(2443), - [sym_scriptencoding_statement] = STATE(2443), - [sym_cnext_statement] = STATE(2443), - [sym_cprevious_statement] = STATE(2443), - [sym_runtime_statement] = STATE(2443), - [sym_wincmd_statement] = STATE(2443), - [sym_source_statement] = STATE(2443), - [sym_global_statement] = STATE(2443), - [sym_filetype_statement] = STATE(2443), - [sym_colorscheme_statement] = STATE(2443), - [sym_lua_statement] = STATE(2443), - [sym_ruby_statement] = STATE(2443), - [sym_python_statement] = STATE(2443), - [sym_perl_statement] = STATE(2443), - [sym_for_loop] = STATE(2443), - [sym_while_loop] = STATE(2443), - [sym_if_statement] = STATE(2443), - [sym_try_statement] = STATE(2443), - [sym_throw_statement] = STATE(2443), - [sym_bang_filter_statement] = STATE(2443), - [sym_let_statement] = STATE(2443), - [sym_const_statement] = STATE(2443), - [sym_set_statement] = STATE(2443), - [sym_setlocal_statement] = STATE(2443), - [sym_unlet_statement] = STATE(2443), - [sym_call_statement] = STATE(2443), - [sym_echo_statement] = STATE(2443), - [sym_echon_statement] = STATE(2443), - [sym_echohl_statement] = STATE(2443), - [sym_echomsg_statement] = STATE(2443), - [sym_echoerr_statement] = STATE(2443), - [sym_execute_statement] = STATE(2443), - [sym_silent_statement] = STATE(2443), - [sym_vertical_statement] = STATE(2443), - [sym_topleft_statement] = STATE(2443), - [sym_botright_statement] = STATE(2443), - [sym_aboveleft_statement] = STATE(2443), - [sym_belowright_statement] = STATE(2443), - [sym_user_command] = STATE(2443), - [sym_function_definition] = STATE(2443), - [sym_range_statement] = STATE(2443), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2443), - [sym_map_statement] = STATE(2443), - [sym_sign_statement] = STATE(2443), - [sym_eval_statement] = STATE(2443), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2443), - [sym_augroup_statement] = STATE(2443), - [sym_command_statement] = STATE(2443), - [sym_comclear_statement] = STATE(2443), - [sym_delcommand_statement] = STATE(2443), - [sym_highlight_statement] = STATE(2443), - [sym_syntax_statement] = STATE(2443), - [sym_edit_statement] = STATE(2443), - [sym_enew_statement] = STATE(2443), - [sym_find_statement] = STATE(2443), - [sym_ex_statement] = STATE(2443), - [sym_visual_statement] = STATE(2443), - [sym_view_statement] = STATE(2443), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [68] = { - [sym__statement] = STATE(2442), - [sym_unknown_builtin_statement] = STATE(2442), - [sym_return_statement] = STATE(2442), - [sym_break_statement] = STATE(2442), - [sym_continue_statement] = STATE(2442), - [sym_normal_statement] = STATE(2442), - [sym_setfiletype_statement] = STATE(2442), - [sym_options_statement] = STATE(2442), - [sym_startinsert_statement] = STATE(2442), - [sym_stopinsert_statement] = STATE(2442), - [sym_scriptencoding_statement] = STATE(2442), - [sym_cnext_statement] = STATE(2442), - [sym_cprevious_statement] = STATE(2442), - [sym_runtime_statement] = STATE(2442), - [sym_wincmd_statement] = STATE(2442), - [sym_source_statement] = STATE(2442), - [sym_global_statement] = STATE(2442), - [sym_filetype_statement] = STATE(2442), - [sym_colorscheme_statement] = STATE(2442), - [sym_lua_statement] = STATE(2442), - [sym_ruby_statement] = STATE(2442), - [sym_python_statement] = STATE(2442), - [sym_perl_statement] = STATE(2442), - [sym_for_loop] = STATE(2442), - [sym_while_loop] = STATE(2442), - [sym_if_statement] = STATE(2442), - [sym_try_statement] = STATE(2442), - [sym_throw_statement] = STATE(2442), - [sym_bang_filter_statement] = STATE(2442), - [sym_let_statement] = STATE(2442), - [sym_const_statement] = STATE(2442), - [sym_set_statement] = STATE(2442), - [sym_setlocal_statement] = STATE(2442), - [sym_unlet_statement] = STATE(2442), - [sym_call_statement] = STATE(2442), - [sym_echo_statement] = STATE(2442), - [sym_echon_statement] = STATE(2442), - [sym_echohl_statement] = STATE(2442), - [sym_echomsg_statement] = STATE(2442), - [sym_echoerr_statement] = STATE(2442), - [sym_execute_statement] = STATE(2442), - [sym_silent_statement] = STATE(2442), - [sym_vertical_statement] = STATE(2442), - [sym_topleft_statement] = STATE(2442), - [sym_botright_statement] = STATE(2442), - [sym_aboveleft_statement] = STATE(2442), - [sym_belowright_statement] = STATE(2442), - [sym_user_command] = STATE(2442), - [sym_function_definition] = STATE(2442), - [sym_range_statement] = STATE(2442), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2442), - [sym_map_statement] = STATE(2442), - [sym_sign_statement] = STATE(2442), - [sym_eval_statement] = STATE(2442), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2442), - [sym_augroup_statement] = STATE(2442), - [sym_command_statement] = STATE(2442), - [sym_comclear_statement] = STATE(2442), - [sym_delcommand_statement] = STATE(2442), - [sym_highlight_statement] = STATE(2442), - [sym_syntax_statement] = STATE(2442), - [sym_edit_statement] = STATE(2442), - [sym_enew_statement] = STATE(2442), - [sym_find_statement] = STATE(2442), - [sym_ex_statement] = STATE(2442), - [sym_visual_statement] = STATE(2442), - [sym_view_statement] = STATE(2442), + [66] = { + [sym__statement] = STATE(2667), + [sym_unknown_builtin_statement] = STATE(2667), + [sym_return_statement] = STATE(2667), + [sym_break_statement] = STATE(2667), + [sym_continue_statement] = STATE(2667), + [sym_normal_statement] = STATE(2667), + [sym_setfiletype_statement] = STATE(2667), + [sym_options_statement] = STATE(2667), + [sym_startinsert_statement] = STATE(2667), + [sym_stopinsert_statement] = STATE(2667), + [sym_scriptencoding_statement] = STATE(2667), + [sym_cnext_statement] = STATE(2667), + [sym_cprevious_statement] = STATE(2667), + [sym_runtime_statement] = STATE(2667), + [sym_wincmd_statement] = STATE(2667), + [sym_source_statement] = STATE(2667), + [sym_global_statement] = STATE(2667), + [sym_filetype_statement] = STATE(2667), + [sym_colorscheme_statement] = STATE(2667), + [sym_lua_statement] = STATE(2667), + [sym_ruby_statement] = STATE(2667), + [sym_python_statement] = STATE(2667), + [sym_perl_statement] = STATE(2667), + [sym_for_loop] = STATE(2667), + [sym_while_loop] = STATE(2667), + [sym_if_statement] = STATE(2667), + [sym_try_statement] = STATE(2667), + [sym_throw_statement] = STATE(2667), + [sym_bang_filter_statement] = STATE(2667), + [sym_let_statement] = STATE(2667), + [sym_const_statement] = STATE(2667), + [sym_set_statement] = STATE(2667), + [sym_setlocal_statement] = STATE(2667), + [sym_unlet_statement] = STATE(2667), + [sym_call_statement] = STATE(2667), + [sym_echo_statement] = STATE(2667), + [sym_echon_statement] = STATE(2667), + [sym_echohl_statement] = STATE(2667), + [sym_echomsg_statement] = STATE(2667), + [sym_echoerr_statement] = STATE(2667), + [sym_execute_statement] = STATE(2667), + [sym_silent_statement] = STATE(2667), + [sym_vertical_statement] = STATE(2667), + [sym_topleft_statement] = STATE(2667), + [sym_botright_statement] = STATE(2667), + [sym_aboveleft_statement] = STATE(2667), + [sym_belowright_statement] = STATE(2667), + [sym_user_command] = STATE(2667), + [sym_function_definition] = STATE(2667), + [sym_range_statement] = STATE(2667), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2667), + [sym_map_statement] = STATE(2667), + [sym_sign_statement] = STATE(2667), + [sym_eval_statement] = STATE(2667), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2667), + [sym_augroup_statement] = STATE(2667), + [sym_command_statement] = STATE(2667), + [sym_comclear_statement] = STATE(2667), + [sym_delcommand_statement] = STATE(2667), + [sym_highlight_statement] = STATE(2667), + [sym_syntax_statement] = STATE(2667), + [sym_edit_statement] = STATE(2667), + [sym_enew_statement] = STATE(2667), + [sym_find_statement] = STATE(2667), + [sym_ex_statement] = STATE(2667), + [sym_visual_statement] = STATE(2667), + [sym_view_statement] = STATE(2667), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [69] = { - [sym__statement] = STATE(2711), - [sym_unknown_builtin_statement] = STATE(2711), - [sym_return_statement] = STATE(2711), - [sym_break_statement] = STATE(2711), - [sym_continue_statement] = STATE(2711), - [sym_normal_statement] = STATE(2711), - [sym_setfiletype_statement] = STATE(2711), - [sym_options_statement] = STATE(2711), - [sym_startinsert_statement] = STATE(2711), - [sym_stopinsert_statement] = STATE(2711), - [sym_scriptencoding_statement] = STATE(2711), - [sym_cnext_statement] = STATE(2711), - [sym_cprevious_statement] = STATE(2711), - [sym_runtime_statement] = STATE(2711), - [sym_wincmd_statement] = STATE(2711), - [sym_source_statement] = STATE(2711), - [sym_global_statement] = STATE(2711), - [sym_filetype_statement] = STATE(2711), - [sym_colorscheme_statement] = STATE(2711), - [sym_lua_statement] = STATE(2711), - [sym_ruby_statement] = STATE(2711), - [sym_python_statement] = STATE(2711), - [sym_perl_statement] = STATE(2711), - [sym_for_loop] = STATE(2711), - [sym_while_loop] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_try_statement] = STATE(2711), - [sym_throw_statement] = STATE(2711), - [sym_bang_filter_statement] = STATE(2711), - [sym_let_statement] = STATE(2711), - [sym_const_statement] = STATE(2711), - [sym_set_statement] = STATE(2711), - [sym_setlocal_statement] = STATE(2711), - [sym_unlet_statement] = STATE(2711), - [sym_call_statement] = STATE(2711), - [sym_echo_statement] = STATE(2711), - [sym_echon_statement] = STATE(2711), - [sym_echohl_statement] = STATE(2711), - [sym_echomsg_statement] = STATE(2711), - [sym_echoerr_statement] = STATE(2711), - [sym_execute_statement] = STATE(2711), - [sym_silent_statement] = STATE(2711), - [sym_vertical_statement] = STATE(2711), - [sym_topleft_statement] = STATE(2711), - [sym_botright_statement] = STATE(2711), - [sym_aboveleft_statement] = STATE(2711), - [sym_belowright_statement] = STATE(2711), - [sym_user_command] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_range_statement] = STATE(2711), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2711), - [sym_map_statement] = STATE(2711), - [sym_sign_statement] = STATE(2711), - [sym_eval_statement] = STATE(2711), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2711), - [sym_augroup_statement] = STATE(2711), - [sym_command_statement] = STATE(2711), - [sym_comclear_statement] = STATE(2711), - [sym_delcommand_statement] = STATE(2711), - [sym_highlight_statement] = STATE(2711), - [sym_syntax_statement] = STATE(2711), - [sym_edit_statement] = STATE(2711), - [sym_enew_statement] = STATE(2711), - [sym_find_statement] = STATE(2711), - [sym_ex_statement] = STATE(2711), - [sym_visual_statement] = STATE(2711), - [sym_view_statement] = STATE(2711), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -63945,85 +63440,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [70] = { - [sym__statement] = STATE(2717), - [sym_unknown_builtin_statement] = STATE(2717), - [sym_return_statement] = STATE(2717), - [sym_break_statement] = STATE(2717), - [sym_continue_statement] = STATE(2717), - [sym_normal_statement] = STATE(2717), - [sym_setfiletype_statement] = STATE(2717), - [sym_options_statement] = STATE(2717), - [sym_startinsert_statement] = STATE(2717), - [sym_stopinsert_statement] = STATE(2717), - [sym_scriptencoding_statement] = STATE(2717), - [sym_cnext_statement] = STATE(2717), - [sym_cprevious_statement] = STATE(2717), - [sym_runtime_statement] = STATE(2717), - [sym_wincmd_statement] = STATE(2717), - [sym_source_statement] = STATE(2717), - [sym_global_statement] = STATE(2717), - [sym_filetype_statement] = STATE(2717), - [sym_colorscheme_statement] = STATE(2717), - [sym_lua_statement] = STATE(2717), - [sym_ruby_statement] = STATE(2717), - [sym_python_statement] = STATE(2717), - [sym_perl_statement] = STATE(2717), - [sym_for_loop] = STATE(2717), - [sym_while_loop] = STATE(2717), - [sym_if_statement] = STATE(2717), - [sym_try_statement] = STATE(2717), - [sym_throw_statement] = STATE(2717), - [sym_bang_filter_statement] = STATE(2717), - [sym_let_statement] = STATE(2717), - [sym_const_statement] = STATE(2717), - [sym_set_statement] = STATE(2717), - [sym_setlocal_statement] = STATE(2717), - [sym_unlet_statement] = STATE(2717), - [sym_call_statement] = STATE(2717), - [sym_echo_statement] = STATE(2717), - [sym_echon_statement] = STATE(2717), - [sym_echohl_statement] = STATE(2717), - [sym_echomsg_statement] = STATE(2717), - [sym_echoerr_statement] = STATE(2717), - [sym_execute_statement] = STATE(2717), - [sym_silent_statement] = STATE(2717), - [sym_vertical_statement] = STATE(2717), - [sym_topleft_statement] = STATE(2717), - [sym_botright_statement] = STATE(2717), - [sym_aboveleft_statement] = STATE(2717), - [sym_belowright_statement] = STATE(2717), - [sym_user_command] = STATE(2717), - [sym_function_definition] = STATE(2717), - [sym_range_statement] = STATE(2717), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2717), - [sym_map_statement] = STATE(2717), - [sym_sign_statement] = STATE(2717), - [sym_eval_statement] = STATE(2717), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2717), - [sym_augroup_statement] = STATE(2717), - [sym_command_statement] = STATE(2717), - [sym_comclear_statement] = STATE(2717), - [sym_delcommand_statement] = STATE(2717), - [sym_highlight_statement] = STATE(2717), - [sym_syntax_statement] = STATE(2717), - [sym_edit_statement] = STATE(2717), - [sym_enew_statement] = STATE(2717), - [sym_find_statement] = STATE(2717), - [sym_ex_statement] = STATE(2717), - [sym_visual_statement] = STATE(2717), - [sym_view_statement] = STATE(2717), + [67] = { + [sym__statement] = STATE(2246), + [sym_unknown_builtin_statement] = STATE(2246), + [sym_return_statement] = STATE(2246), + [sym_break_statement] = STATE(2246), + [sym_continue_statement] = STATE(2246), + [sym_normal_statement] = STATE(2246), + [sym_setfiletype_statement] = STATE(2246), + [sym_options_statement] = STATE(2246), + [sym_startinsert_statement] = STATE(2246), + [sym_stopinsert_statement] = STATE(2246), + [sym_scriptencoding_statement] = STATE(2246), + [sym_cnext_statement] = STATE(2246), + [sym_cprevious_statement] = STATE(2246), + [sym_runtime_statement] = STATE(2246), + [sym_wincmd_statement] = STATE(2246), + [sym_source_statement] = STATE(2246), + [sym_global_statement] = STATE(2246), + [sym_filetype_statement] = STATE(2246), + [sym_colorscheme_statement] = STATE(2246), + [sym_lua_statement] = STATE(2246), + [sym_ruby_statement] = STATE(2246), + [sym_python_statement] = STATE(2246), + [sym_perl_statement] = STATE(2246), + [sym_for_loop] = STATE(2246), + [sym_while_loop] = STATE(2246), + [sym_if_statement] = STATE(2246), + [sym_try_statement] = STATE(2246), + [sym_throw_statement] = STATE(2246), + [sym_bang_filter_statement] = STATE(2246), + [sym_let_statement] = STATE(2246), + [sym_const_statement] = STATE(2246), + [sym_set_statement] = STATE(2246), + [sym_setlocal_statement] = STATE(2246), + [sym_unlet_statement] = STATE(2246), + [sym_call_statement] = STATE(2246), + [sym_echo_statement] = STATE(2246), + [sym_echon_statement] = STATE(2246), + [sym_echohl_statement] = STATE(2246), + [sym_echomsg_statement] = STATE(2246), + [sym_echoerr_statement] = STATE(2246), + [sym_execute_statement] = STATE(2246), + [sym_silent_statement] = STATE(2246), + [sym_vertical_statement] = STATE(2246), + [sym_topleft_statement] = STATE(2246), + [sym_botright_statement] = STATE(2246), + [sym_aboveleft_statement] = STATE(2246), + [sym_belowright_statement] = STATE(2246), + [sym_user_command] = STATE(2246), + [sym_function_definition] = STATE(2246), + [sym_range_statement] = STATE(2246), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2246), + [sym_map_statement] = STATE(2246), + [sym_sign_statement] = STATE(2246), + [sym_eval_statement] = STATE(2246), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2246), + [sym_augroup_statement] = STATE(2246), + [sym_command_statement] = STATE(2246), + [sym_comclear_statement] = STATE(2246), + [sym_delcommand_statement] = STATE(2246), + [sym_highlight_statement] = STATE(2246), + [sym_syntax_statement] = STATE(2246), + [sym_edit_statement] = STATE(2246), + [sym_enew_statement] = STATE(2246), + [sym_find_statement] = STATE(2246), + [sym_ex_statement] = STATE(2246), + [sym_visual_statement] = STATE(2246), + [sym_view_statement] = STATE(2246), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [68] = { + [sym__statement] = STATE(2288), + [sym_unknown_builtin_statement] = STATE(2288), + [sym_return_statement] = STATE(2288), + [sym_break_statement] = STATE(2288), + [sym_continue_statement] = STATE(2288), + [sym_normal_statement] = STATE(2288), + [sym_setfiletype_statement] = STATE(2288), + [sym_options_statement] = STATE(2288), + [sym_startinsert_statement] = STATE(2288), + [sym_stopinsert_statement] = STATE(2288), + [sym_scriptencoding_statement] = STATE(2288), + [sym_cnext_statement] = STATE(2288), + [sym_cprevious_statement] = STATE(2288), + [sym_runtime_statement] = STATE(2288), + [sym_wincmd_statement] = STATE(2288), + [sym_source_statement] = STATE(2288), + [sym_global_statement] = STATE(2288), + [sym_filetype_statement] = STATE(2288), + [sym_colorscheme_statement] = STATE(2288), + [sym_lua_statement] = STATE(2288), + [sym_ruby_statement] = STATE(2288), + [sym_python_statement] = STATE(2288), + [sym_perl_statement] = STATE(2288), + [sym_for_loop] = STATE(2288), + [sym_while_loop] = STATE(2288), + [sym_if_statement] = STATE(2288), + [sym_try_statement] = STATE(2288), + [sym_throw_statement] = STATE(2288), + [sym_bang_filter_statement] = STATE(2288), + [sym_let_statement] = STATE(2288), + [sym_const_statement] = STATE(2288), + [sym_set_statement] = STATE(2288), + [sym_setlocal_statement] = STATE(2288), + [sym_unlet_statement] = STATE(2288), + [sym_call_statement] = STATE(2288), + [sym_echo_statement] = STATE(2288), + [sym_echon_statement] = STATE(2288), + [sym_echohl_statement] = STATE(2288), + [sym_echomsg_statement] = STATE(2288), + [sym_echoerr_statement] = STATE(2288), + [sym_execute_statement] = STATE(2288), + [sym_silent_statement] = STATE(2288), + [sym_vertical_statement] = STATE(2288), + [sym_topleft_statement] = STATE(2288), + [sym_botright_statement] = STATE(2288), + [sym_aboveleft_statement] = STATE(2288), + [sym_belowright_statement] = STATE(2288), + [sym_user_command] = STATE(2288), + [sym_function_definition] = STATE(2288), + [sym_range_statement] = STATE(2288), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2288), + [sym_map_statement] = STATE(2288), + [sym_sign_statement] = STATE(2288), + [sym_eval_statement] = STATE(2288), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2288), + [sym_augroup_statement] = STATE(2288), + [sym_command_statement] = STATE(2288), + [sym_comclear_statement] = STATE(2288), + [sym_delcommand_statement] = STATE(2288), + [sym_highlight_statement] = STATE(2288), + [sym_syntax_statement] = STATE(2288), + [sym_edit_statement] = STATE(2288), + [sym_enew_statement] = STATE(2288), + [sym_find_statement] = STATE(2288), + [sym_ex_statement] = STATE(2288), + [sym_visual_statement] = STATE(2288), + [sym_view_statement] = STATE(2288), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [69] = { + [sym__statement] = STATE(2710), + [sym_unknown_builtin_statement] = STATE(2710), + [sym_return_statement] = STATE(2710), + [sym_break_statement] = STATE(2710), + [sym_continue_statement] = STATE(2710), + [sym_normal_statement] = STATE(2710), + [sym_setfiletype_statement] = STATE(2710), + [sym_options_statement] = STATE(2710), + [sym_startinsert_statement] = STATE(2710), + [sym_stopinsert_statement] = STATE(2710), + [sym_scriptencoding_statement] = STATE(2710), + [sym_cnext_statement] = STATE(2710), + [sym_cprevious_statement] = STATE(2710), + [sym_runtime_statement] = STATE(2710), + [sym_wincmd_statement] = STATE(2710), + [sym_source_statement] = STATE(2710), + [sym_global_statement] = STATE(2710), + [sym_filetype_statement] = STATE(2710), + [sym_colorscheme_statement] = STATE(2710), + [sym_lua_statement] = STATE(2710), + [sym_ruby_statement] = STATE(2710), + [sym_python_statement] = STATE(2710), + [sym_perl_statement] = STATE(2710), + [sym_for_loop] = STATE(2710), + [sym_while_loop] = STATE(2710), + [sym_if_statement] = STATE(2710), + [sym_try_statement] = STATE(2710), + [sym_throw_statement] = STATE(2710), + [sym_bang_filter_statement] = STATE(2710), + [sym_let_statement] = STATE(2710), + [sym_const_statement] = STATE(2710), + [sym_set_statement] = STATE(2710), + [sym_setlocal_statement] = STATE(2710), + [sym_unlet_statement] = STATE(2710), + [sym_call_statement] = STATE(2710), + [sym_echo_statement] = STATE(2710), + [sym_echon_statement] = STATE(2710), + [sym_echohl_statement] = STATE(2710), + [sym_echomsg_statement] = STATE(2710), + [sym_echoerr_statement] = STATE(2710), + [sym_execute_statement] = STATE(2710), + [sym_silent_statement] = STATE(2710), + [sym_vertical_statement] = STATE(2710), + [sym_topleft_statement] = STATE(2710), + [sym_botright_statement] = STATE(2710), + [sym_aboveleft_statement] = STATE(2710), + [sym_belowright_statement] = STATE(2710), + [sym_user_command] = STATE(2710), + [sym_function_definition] = STATE(2710), + [sym_range_statement] = STATE(2710), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2710), + [sym_map_statement] = STATE(2710), + [sym_sign_statement] = STATE(2710), + [sym_eval_statement] = STATE(2710), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2710), + [sym_augroup_statement] = STATE(2710), + [sym_command_statement] = STATE(2710), + [sym_comclear_statement] = STATE(2710), + [sym_delcommand_statement] = STATE(2710), + [sym_highlight_statement] = STATE(2710), + [sym_syntax_statement] = STATE(2710), + [sym_edit_statement] = STATE(2710), + [sym_enew_statement] = STATE(2710), + [sym_find_statement] = STATE(2710), + [sym_ex_statement] = STATE(2710), + [sym_visual_statement] = STATE(2710), + [sym_view_statement] = STATE(2710), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -64126,85 +63983,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [71] = { - [sym__statement] = STATE(2716), - [sym_unknown_builtin_statement] = STATE(2716), - [sym_return_statement] = STATE(2716), - [sym_break_statement] = STATE(2716), - [sym_continue_statement] = STATE(2716), - [sym_normal_statement] = STATE(2716), - [sym_setfiletype_statement] = STATE(2716), - [sym_options_statement] = STATE(2716), - [sym_startinsert_statement] = STATE(2716), - [sym_stopinsert_statement] = STATE(2716), - [sym_scriptencoding_statement] = STATE(2716), - [sym_cnext_statement] = STATE(2716), - [sym_cprevious_statement] = STATE(2716), - [sym_runtime_statement] = STATE(2716), - [sym_wincmd_statement] = STATE(2716), - [sym_source_statement] = STATE(2716), - [sym_global_statement] = STATE(2716), - [sym_filetype_statement] = STATE(2716), - [sym_colorscheme_statement] = STATE(2716), - [sym_lua_statement] = STATE(2716), - [sym_ruby_statement] = STATE(2716), - [sym_python_statement] = STATE(2716), - [sym_perl_statement] = STATE(2716), - [sym_for_loop] = STATE(2716), - [sym_while_loop] = STATE(2716), - [sym_if_statement] = STATE(2716), - [sym_try_statement] = STATE(2716), - [sym_throw_statement] = STATE(2716), - [sym_bang_filter_statement] = STATE(2716), - [sym_let_statement] = STATE(2716), - [sym_const_statement] = STATE(2716), - [sym_set_statement] = STATE(2716), - [sym_setlocal_statement] = STATE(2716), - [sym_unlet_statement] = STATE(2716), - [sym_call_statement] = STATE(2716), - [sym_echo_statement] = STATE(2716), - [sym_echon_statement] = STATE(2716), - [sym_echohl_statement] = STATE(2716), - [sym_echomsg_statement] = STATE(2716), - [sym_echoerr_statement] = STATE(2716), - [sym_execute_statement] = STATE(2716), - [sym_silent_statement] = STATE(2716), - [sym_vertical_statement] = STATE(2716), - [sym_topleft_statement] = STATE(2716), - [sym_botright_statement] = STATE(2716), - [sym_aboveleft_statement] = STATE(2716), - [sym_belowright_statement] = STATE(2716), - [sym_user_command] = STATE(2716), - [sym_function_definition] = STATE(2716), - [sym_range_statement] = STATE(2716), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2716), - [sym_map_statement] = STATE(2716), - [sym_sign_statement] = STATE(2716), - [sym_eval_statement] = STATE(2716), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2716), - [sym_augroup_statement] = STATE(2716), - [sym_command_statement] = STATE(2716), - [sym_comclear_statement] = STATE(2716), - [sym_delcommand_statement] = STATE(2716), - [sym_highlight_statement] = STATE(2716), - [sym_syntax_statement] = STATE(2716), - [sym_edit_statement] = STATE(2716), - [sym_enew_statement] = STATE(2716), - [sym_find_statement] = STATE(2716), - [sym_ex_statement] = STATE(2716), - [sym_visual_statement] = STATE(2716), - [sym_view_statement] = STATE(2716), + [70] = { + [sym__statement] = STATE(2557), + [sym_unknown_builtin_statement] = STATE(2557), + [sym_return_statement] = STATE(2557), + [sym_break_statement] = STATE(2557), + [sym_continue_statement] = STATE(2557), + [sym_normal_statement] = STATE(2557), + [sym_setfiletype_statement] = STATE(2557), + [sym_options_statement] = STATE(2557), + [sym_startinsert_statement] = STATE(2557), + [sym_stopinsert_statement] = STATE(2557), + [sym_scriptencoding_statement] = STATE(2557), + [sym_cnext_statement] = STATE(2557), + [sym_cprevious_statement] = STATE(2557), + [sym_runtime_statement] = STATE(2557), + [sym_wincmd_statement] = STATE(2557), + [sym_source_statement] = STATE(2557), + [sym_global_statement] = STATE(2557), + [sym_filetype_statement] = STATE(2557), + [sym_colorscheme_statement] = STATE(2557), + [sym_lua_statement] = STATE(2557), + [sym_ruby_statement] = STATE(2557), + [sym_python_statement] = STATE(2557), + [sym_perl_statement] = STATE(2557), + [sym_for_loop] = STATE(2557), + [sym_while_loop] = STATE(2557), + [sym_if_statement] = STATE(2557), + [sym_try_statement] = STATE(2557), + [sym_throw_statement] = STATE(2557), + [sym_bang_filter_statement] = STATE(2557), + [sym_let_statement] = STATE(2557), + [sym_const_statement] = STATE(2557), + [sym_set_statement] = STATE(2557), + [sym_setlocal_statement] = STATE(2557), + [sym_unlet_statement] = STATE(2557), + [sym_call_statement] = STATE(2557), + [sym_echo_statement] = STATE(2557), + [sym_echon_statement] = STATE(2557), + [sym_echohl_statement] = STATE(2557), + [sym_echomsg_statement] = STATE(2557), + [sym_echoerr_statement] = STATE(2557), + [sym_execute_statement] = STATE(2557), + [sym_silent_statement] = STATE(2557), + [sym_vertical_statement] = STATE(2557), + [sym_topleft_statement] = STATE(2557), + [sym_botright_statement] = STATE(2557), + [sym_aboveleft_statement] = STATE(2557), + [sym_belowright_statement] = STATE(2557), + [sym_user_command] = STATE(2557), + [sym_function_definition] = STATE(2557), + [sym_range_statement] = STATE(2557), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2557), + [sym_map_statement] = STATE(2557), + [sym_sign_statement] = STATE(2557), + [sym_eval_statement] = STATE(2557), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2557), + [sym_augroup_statement] = STATE(2557), + [sym_command_statement] = STATE(2557), + [sym_comclear_statement] = STATE(2557), + [sym_delcommand_statement] = STATE(2557), + [sym_highlight_statement] = STATE(2557), + [sym_syntax_statement] = STATE(2557), + [sym_edit_statement] = STATE(2557), + [sym_enew_statement] = STATE(2557), + [sym_find_statement] = STATE(2557), + [sym_ex_statement] = STATE(2557), + [sym_visual_statement] = STATE(2557), + [sym_view_statement] = STATE(2557), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [71] = { + [sym__statement] = STATE(2695), + [sym_unknown_builtin_statement] = STATE(2695), + [sym_return_statement] = STATE(2695), + [sym_break_statement] = STATE(2695), + [sym_continue_statement] = STATE(2695), + [sym_normal_statement] = STATE(2695), + [sym_setfiletype_statement] = STATE(2695), + [sym_options_statement] = STATE(2695), + [sym_startinsert_statement] = STATE(2695), + [sym_stopinsert_statement] = STATE(2695), + [sym_scriptencoding_statement] = STATE(2695), + [sym_cnext_statement] = STATE(2695), + [sym_cprevious_statement] = STATE(2695), + [sym_runtime_statement] = STATE(2695), + [sym_wincmd_statement] = STATE(2695), + [sym_source_statement] = STATE(2695), + [sym_global_statement] = STATE(2695), + [sym_filetype_statement] = STATE(2695), + [sym_colorscheme_statement] = STATE(2695), + [sym_lua_statement] = STATE(2695), + [sym_ruby_statement] = STATE(2695), + [sym_python_statement] = STATE(2695), + [sym_perl_statement] = STATE(2695), + [sym_for_loop] = STATE(2695), + [sym_while_loop] = STATE(2695), + [sym_if_statement] = STATE(2695), + [sym_try_statement] = STATE(2695), + [sym_throw_statement] = STATE(2695), + [sym_bang_filter_statement] = STATE(2695), + [sym_let_statement] = STATE(2695), + [sym_const_statement] = STATE(2695), + [sym_set_statement] = STATE(2695), + [sym_setlocal_statement] = STATE(2695), + [sym_unlet_statement] = STATE(2695), + [sym_call_statement] = STATE(2695), + [sym_echo_statement] = STATE(2695), + [sym_echon_statement] = STATE(2695), + [sym_echohl_statement] = STATE(2695), + [sym_echomsg_statement] = STATE(2695), + [sym_echoerr_statement] = STATE(2695), + [sym_execute_statement] = STATE(2695), + [sym_silent_statement] = STATE(2695), + [sym_vertical_statement] = STATE(2695), + [sym_topleft_statement] = STATE(2695), + [sym_botright_statement] = STATE(2695), + [sym_aboveleft_statement] = STATE(2695), + [sym_belowright_statement] = STATE(2695), + [sym_user_command] = STATE(2695), + [sym_function_definition] = STATE(2695), + [sym_range_statement] = STATE(2695), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2695), + [sym_map_statement] = STATE(2695), + [sym_sign_statement] = STATE(2695), + [sym_eval_statement] = STATE(2695), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2695), + [sym_augroup_statement] = STATE(2695), + [sym_command_statement] = STATE(2695), + [sym_comclear_statement] = STATE(2695), + [sym_delcommand_statement] = STATE(2695), + [sym_highlight_statement] = STATE(2695), + [sym_syntax_statement] = STATE(2695), + [sym_edit_statement] = STATE(2695), + [sym_enew_statement] = STATE(2695), + [sym_find_statement] = STATE(2695), + [sym_ex_statement] = STATE(2695), + [sym_visual_statement] = STATE(2695), + [sym_view_statement] = STATE(2695), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -64308,84 +64346,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(157), }, [72] = { - [sym__statement] = STATE(2706), - [sym_unknown_builtin_statement] = STATE(2706), - [sym_return_statement] = STATE(2706), - [sym_break_statement] = STATE(2706), - [sym_continue_statement] = STATE(2706), - [sym_normal_statement] = STATE(2706), - [sym_setfiletype_statement] = STATE(2706), - [sym_options_statement] = STATE(2706), - [sym_startinsert_statement] = STATE(2706), - [sym_stopinsert_statement] = STATE(2706), - [sym_scriptencoding_statement] = STATE(2706), - [sym_cnext_statement] = STATE(2706), - [sym_cprevious_statement] = STATE(2706), - [sym_runtime_statement] = STATE(2706), - [sym_wincmd_statement] = STATE(2706), - [sym_source_statement] = STATE(2706), - [sym_global_statement] = STATE(2706), - [sym_filetype_statement] = STATE(2706), - [sym_colorscheme_statement] = STATE(2706), - [sym_lua_statement] = STATE(2706), - [sym_ruby_statement] = STATE(2706), - [sym_python_statement] = STATE(2706), - [sym_perl_statement] = STATE(2706), - [sym_for_loop] = STATE(2706), - [sym_while_loop] = STATE(2706), - [sym_if_statement] = STATE(2706), - [sym_try_statement] = STATE(2706), - [sym_throw_statement] = STATE(2706), - [sym_bang_filter_statement] = STATE(2706), - [sym_let_statement] = STATE(2706), - [sym_const_statement] = STATE(2706), - [sym_set_statement] = STATE(2706), - [sym_setlocal_statement] = STATE(2706), - [sym_unlet_statement] = STATE(2706), - [sym_call_statement] = STATE(2706), - [sym_echo_statement] = STATE(2706), - [sym_echon_statement] = STATE(2706), - [sym_echohl_statement] = STATE(2706), - [sym_echomsg_statement] = STATE(2706), - [sym_echoerr_statement] = STATE(2706), - [sym_execute_statement] = STATE(2706), - [sym_silent_statement] = STATE(2706), - [sym_vertical_statement] = STATE(2706), - [sym_topleft_statement] = STATE(2706), - [sym_botright_statement] = STATE(2706), - [sym_aboveleft_statement] = STATE(2706), - [sym_belowright_statement] = STATE(2706), - [sym_user_command] = STATE(2706), - [sym_function_definition] = STATE(2706), - [sym_range_statement] = STATE(2706), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2706), - [sym_map_statement] = STATE(2706), - [sym_sign_statement] = STATE(2706), - [sym_eval_statement] = STATE(2706), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2706), - [sym_augroup_statement] = STATE(2706), - [sym_command_statement] = STATE(2706), - [sym_comclear_statement] = STATE(2706), - [sym_delcommand_statement] = STATE(2706), - [sym_highlight_statement] = STATE(2706), - [sym_syntax_statement] = STATE(2706), - [sym_edit_statement] = STATE(2706), - [sym_enew_statement] = STATE(2706), - [sym_find_statement] = STATE(2706), - [sym_ex_statement] = STATE(2706), - [sym_visual_statement] = STATE(2706), - [sym_view_statement] = STATE(2706), + [sym__statement] = STATE(2329), + [sym_unknown_builtin_statement] = STATE(2329), + [sym_return_statement] = STATE(2329), + [sym_break_statement] = STATE(2329), + [sym_continue_statement] = STATE(2329), + [sym_normal_statement] = STATE(2329), + [sym_setfiletype_statement] = STATE(2329), + [sym_options_statement] = STATE(2329), + [sym_startinsert_statement] = STATE(2329), + [sym_stopinsert_statement] = STATE(2329), + [sym_scriptencoding_statement] = STATE(2329), + [sym_cnext_statement] = STATE(2329), + [sym_cprevious_statement] = STATE(2329), + [sym_runtime_statement] = STATE(2329), + [sym_wincmd_statement] = STATE(2329), + [sym_source_statement] = STATE(2329), + [sym_global_statement] = STATE(2329), + [sym_filetype_statement] = STATE(2329), + [sym_colorscheme_statement] = STATE(2329), + [sym_lua_statement] = STATE(2329), + [sym_ruby_statement] = STATE(2329), + [sym_python_statement] = STATE(2329), + [sym_perl_statement] = STATE(2329), + [sym_for_loop] = STATE(2329), + [sym_while_loop] = STATE(2329), + [sym_if_statement] = STATE(2329), + [sym_try_statement] = STATE(2329), + [sym_throw_statement] = STATE(2329), + [sym_bang_filter_statement] = STATE(2329), + [sym_let_statement] = STATE(2329), + [sym_const_statement] = STATE(2329), + [sym_set_statement] = STATE(2329), + [sym_setlocal_statement] = STATE(2329), + [sym_unlet_statement] = STATE(2329), + [sym_call_statement] = STATE(2329), + [sym_echo_statement] = STATE(2329), + [sym_echon_statement] = STATE(2329), + [sym_echohl_statement] = STATE(2329), + [sym_echomsg_statement] = STATE(2329), + [sym_echoerr_statement] = STATE(2329), + [sym_execute_statement] = STATE(2329), + [sym_silent_statement] = STATE(2329), + [sym_vertical_statement] = STATE(2329), + [sym_topleft_statement] = STATE(2329), + [sym_botright_statement] = STATE(2329), + [sym_aboveleft_statement] = STATE(2329), + [sym_belowright_statement] = STATE(2329), + [sym_user_command] = STATE(2329), + [sym_function_definition] = STATE(2329), + [sym_range_statement] = STATE(2329), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2329), + [sym_map_statement] = STATE(2329), + [sym_sign_statement] = STATE(2329), + [sym_eval_statement] = STATE(2329), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2329), + [sym_augroup_statement] = STATE(2329), + [sym_command_statement] = STATE(2329), + [sym_comclear_statement] = STATE(2329), + [sym_delcommand_statement] = STATE(2329), + [sym_highlight_statement] = STATE(2329), + [sym_syntax_statement] = STATE(2329), + [sym_edit_statement] = STATE(2329), + [sym_enew_statement] = STATE(2329), + [sym_find_statement] = STATE(2329), + [sym_ex_statement] = STATE(2329), + [sym_visual_statement] = STATE(2329), + [sym_view_statement] = STATE(2329), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [73] = { + [sym__statement] = STATE(2717), + [sym_unknown_builtin_statement] = STATE(2717), + [sym_return_statement] = STATE(2717), + [sym_break_statement] = STATE(2717), + [sym_continue_statement] = STATE(2717), + [sym_normal_statement] = STATE(2717), + [sym_setfiletype_statement] = STATE(2717), + [sym_options_statement] = STATE(2717), + [sym_startinsert_statement] = STATE(2717), + [sym_stopinsert_statement] = STATE(2717), + [sym_scriptencoding_statement] = STATE(2717), + [sym_cnext_statement] = STATE(2717), + [sym_cprevious_statement] = STATE(2717), + [sym_runtime_statement] = STATE(2717), + [sym_wincmd_statement] = STATE(2717), + [sym_source_statement] = STATE(2717), + [sym_global_statement] = STATE(2717), + [sym_filetype_statement] = STATE(2717), + [sym_colorscheme_statement] = STATE(2717), + [sym_lua_statement] = STATE(2717), + [sym_ruby_statement] = STATE(2717), + [sym_python_statement] = STATE(2717), + [sym_perl_statement] = STATE(2717), + [sym_for_loop] = STATE(2717), + [sym_while_loop] = STATE(2717), + [sym_if_statement] = STATE(2717), + [sym_try_statement] = STATE(2717), + [sym_throw_statement] = STATE(2717), + [sym_bang_filter_statement] = STATE(2717), + [sym_let_statement] = STATE(2717), + [sym_const_statement] = STATE(2717), + [sym_set_statement] = STATE(2717), + [sym_setlocal_statement] = STATE(2717), + [sym_unlet_statement] = STATE(2717), + [sym_call_statement] = STATE(2717), + [sym_echo_statement] = STATE(2717), + [sym_echon_statement] = STATE(2717), + [sym_echohl_statement] = STATE(2717), + [sym_echomsg_statement] = STATE(2717), + [sym_echoerr_statement] = STATE(2717), + [sym_execute_statement] = STATE(2717), + [sym_silent_statement] = STATE(2717), + [sym_vertical_statement] = STATE(2717), + [sym_topleft_statement] = STATE(2717), + [sym_botright_statement] = STATE(2717), + [sym_aboveleft_statement] = STATE(2717), + [sym_belowright_statement] = STATE(2717), + [sym_user_command] = STATE(2717), + [sym_function_definition] = STATE(2717), + [sym_range_statement] = STATE(2717), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2717), + [sym_map_statement] = STATE(2717), + [sym_sign_statement] = STATE(2717), + [sym_eval_statement] = STATE(2717), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2717), + [sym_augroup_statement] = STATE(2717), + [sym_command_statement] = STATE(2717), + [sym_comclear_statement] = STATE(2717), + [sym_delcommand_statement] = STATE(2717), + [sym_highlight_statement] = STATE(2717), + [sym_syntax_statement] = STATE(2717), + [sym_edit_statement] = STATE(2717), + [sym_enew_statement] = STATE(2717), + [sym_find_statement] = STATE(2717), + [sym_ex_statement] = STATE(2717), + [sym_visual_statement] = STATE(2717), + [sym_view_statement] = STATE(2717), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -64488,85 +64707,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [73] = { - [sym__statement] = STATE(2705), - [sym_unknown_builtin_statement] = STATE(2705), - [sym_return_statement] = STATE(2705), - [sym_break_statement] = STATE(2705), - [sym_continue_statement] = STATE(2705), - [sym_normal_statement] = STATE(2705), - [sym_setfiletype_statement] = STATE(2705), - [sym_options_statement] = STATE(2705), - [sym_startinsert_statement] = STATE(2705), - [sym_stopinsert_statement] = STATE(2705), - [sym_scriptencoding_statement] = STATE(2705), - [sym_cnext_statement] = STATE(2705), - [sym_cprevious_statement] = STATE(2705), - [sym_runtime_statement] = STATE(2705), - [sym_wincmd_statement] = STATE(2705), - [sym_source_statement] = STATE(2705), - [sym_global_statement] = STATE(2705), - [sym_filetype_statement] = STATE(2705), - [sym_colorscheme_statement] = STATE(2705), - [sym_lua_statement] = STATE(2705), - [sym_ruby_statement] = STATE(2705), - [sym_python_statement] = STATE(2705), - [sym_perl_statement] = STATE(2705), - [sym_for_loop] = STATE(2705), - [sym_while_loop] = STATE(2705), - [sym_if_statement] = STATE(2705), - [sym_try_statement] = STATE(2705), - [sym_throw_statement] = STATE(2705), - [sym_bang_filter_statement] = STATE(2705), - [sym_let_statement] = STATE(2705), - [sym_const_statement] = STATE(2705), - [sym_set_statement] = STATE(2705), - [sym_setlocal_statement] = STATE(2705), - [sym_unlet_statement] = STATE(2705), - [sym_call_statement] = STATE(2705), - [sym_echo_statement] = STATE(2705), - [sym_echon_statement] = STATE(2705), - [sym_echohl_statement] = STATE(2705), - [sym_echomsg_statement] = STATE(2705), - [sym_echoerr_statement] = STATE(2705), - [sym_execute_statement] = STATE(2705), - [sym_silent_statement] = STATE(2705), - [sym_vertical_statement] = STATE(2705), - [sym_topleft_statement] = STATE(2705), - [sym_botright_statement] = STATE(2705), - [sym_aboveleft_statement] = STATE(2705), - [sym_belowright_statement] = STATE(2705), - [sym_user_command] = STATE(2705), - [sym_function_definition] = STATE(2705), - [sym_range_statement] = STATE(2705), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2705), - [sym_map_statement] = STATE(2705), - [sym_sign_statement] = STATE(2705), - [sym_eval_statement] = STATE(2705), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2705), - [sym_augroup_statement] = STATE(2705), - [sym_command_statement] = STATE(2705), - [sym_comclear_statement] = STATE(2705), - [sym_delcommand_statement] = STATE(2705), - [sym_highlight_statement] = STATE(2705), - [sym_syntax_statement] = STATE(2705), - [sym_edit_statement] = STATE(2705), - [sym_enew_statement] = STATE(2705), - [sym_find_statement] = STATE(2705), - [sym_ex_statement] = STATE(2705), - [sym_visual_statement] = STATE(2705), - [sym_view_statement] = STATE(2705), - [aux_sym__statement_repeat1] = STATE(92), + [74] = { + [sym__statement] = STATE(2726), + [sym_unknown_builtin_statement] = STATE(2726), + [sym_return_statement] = STATE(2726), + [sym_break_statement] = STATE(2726), + [sym_continue_statement] = STATE(2726), + [sym_normal_statement] = STATE(2726), + [sym_setfiletype_statement] = STATE(2726), + [sym_options_statement] = STATE(2726), + [sym_startinsert_statement] = STATE(2726), + [sym_stopinsert_statement] = STATE(2726), + [sym_scriptencoding_statement] = STATE(2726), + [sym_cnext_statement] = STATE(2726), + [sym_cprevious_statement] = STATE(2726), + [sym_runtime_statement] = STATE(2726), + [sym_wincmd_statement] = STATE(2726), + [sym_source_statement] = STATE(2726), + [sym_global_statement] = STATE(2726), + [sym_filetype_statement] = STATE(2726), + [sym_colorscheme_statement] = STATE(2726), + [sym_lua_statement] = STATE(2726), + [sym_ruby_statement] = STATE(2726), + [sym_python_statement] = STATE(2726), + [sym_perl_statement] = STATE(2726), + [sym_for_loop] = STATE(2726), + [sym_while_loop] = STATE(2726), + [sym_if_statement] = STATE(2726), + [sym_try_statement] = STATE(2726), + [sym_throw_statement] = STATE(2726), + [sym_bang_filter_statement] = STATE(2726), + [sym_let_statement] = STATE(2726), + [sym_const_statement] = STATE(2726), + [sym_set_statement] = STATE(2726), + [sym_setlocal_statement] = STATE(2726), + [sym_unlet_statement] = STATE(2726), + [sym_call_statement] = STATE(2726), + [sym_echo_statement] = STATE(2726), + [sym_echon_statement] = STATE(2726), + [sym_echohl_statement] = STATE(2726), + [sym_echomsg_statement] = STATE(2726), + [sym_echoerr_statement] = STATE(2726), + [sym_execute_statement] = STATE(2726), + [sym_silent_statement] = STATE(2726), + [sym_vertical_statement] = STATE(2726), + [sym_topleft_statement] = STATE(2726), + [sym_botright_statement] = STATE(2726), + [sym_aboveleft_statement] = STATE(2726), + [sym_belowright_statement] = STATE(2726), + [sym_user_command] = STATE(2726), + [sym_function_definition] = STATE(2726), + [sym_range_statement] = STATE(2726), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2726), + [sym_map_statement] = STATE(2726), + [sym_sign_statement] = STATE(2726), + [sym_eval_statement] = STATE(2726), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2726), + [sym_augroup_statement] = STATE(2726), + [sym_command_statement] = STATE(2726), + [sym_comclear_statement] = STATE(2726), + [sym_delcommand_statement] = STATE(2726), + [sym_highlight_statement] = STATE(2726), + [sym_syntax_statement] = STATE(2726), + [sym_edit_statement] = STATE(2726), + [sym_enew_statement] = STATE(2726), + [sym_find_statement] = STATE(2726), + [sym_ex_statement] = STATE(2726), + [sym_visual_statement] = STATE(2726), + [sym_view_statement] = STATE(2726), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -64669,628 +64888,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [74] = { - [sym__statement] = STATE(2440), - [sym_unknown_builtin_statement] = STATE(2440), - [sym_return_statement] = STATE(2440), - [sym_break_statement] = STATE(2440), - [sym_continue_statement] = STATE(2440), - [sym_normal_statement] = STATE(2440), - [sym_setfiletype_statement] = STATE(2440), - [sym_options_statement] = STATE(2440), - [sym_startinsert_statement] = STATE(2440), - [sym_stopinsert_statement] = STATE(2440), - [sym_scriptencoding_statement] = STATE(2440), - [sym_cnext_statement] = STATE(2440), - [sym_cprevious_statement] = STATE(2440), - [sym_runtime_statement] = STATE(2440), - [sym_wincmd_statement] = STATE(2440), - [sym_source_statement] = STATE(2440), - [sym_global_statement] = STATE(2440), - [sym_filetype_statement] = STATE(2440), - [sym_colorscheme_statement] = STATE(2440), - [sym_lua_statement] = STATE(2440), - [sym_ruby_statement] = STATE(2440), - [sym_python_statement] = STATE(2440), - [sym_perl_statement] = STATE(2440), - [sym_for_loop] = STATE(2440), - [sym_while_loop] = STATE(2440), - [sym_if_statement] = STATE(2440), - [sym_try_statement] = STATE(2440), - [sym_throw_statement] = STATE(2440), - [sym_bang_filter_statement] = STATE(2440), - [sym_let_statement] = STATE(2440), - [sym_const_statement] = STATE(2440), - [sym_set_statement] = STATE(2440), - [sym_setlocal_statement] = STATE(2440), - [sym_unlet_statement] = STATE(2440), - [sym_call_statement] = STATE(2440), - [sym_echo_statement] = STATE(2440), - [sym_echon_statement] = STATE(2440), - [sym_echohl_statement] = STATE(2440), - [sym_echomsg_statement] = STATE(2440), - [sym_echoerr_statement] = STATE(2440), - [sym_execute_statement] = STATE(2440), - [sym_silent_statement] = STATE(2440), - [sym_vertical_statement] = STATE(2440), - [sym_topleft_statement] = STATE(2440), - [sym_botright_statement] = STATE(2440), - [sym_aboveleft_statement] = STATE(2440), - [sym_belowright_statement] = STATE(2440), - [sym_user_command] = STATE(2440), - [sym_function_definition] = STATE(2440), - [sym_range_statement] = STATE(2440), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2440), - [sym_map_statement] = STATE(2440), - [sym_sign_statement] = STATE(2440), - [sym_eval_statement] = STATE(2440), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2440), - [sym_augroup_statement] = STATE(2440), - [sym_command_statement] = STATE(2440), - [sym_comclear_statement] = STATE(2440), - [sym_delcommand_statement] = STATE(2440), - [sym_highlight_statement] = STATE(2440), - [sym_syntax_statement] = STATE(2440), - [sym_edit_statement] = STATE(2440), - [sym_enew_statement] = STATE(2440), - [sym_find_statement] = STATE(2440), - [sym_ex_statement] = STATE(2440), - [sym_visual_statement] = STATE(2440), - [sym_view_statement] = STATE(2440), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, [75] = { - [sym__statement] = STATE(2531), - [sym_unknown_builtin_statement] = STATE(2531), - [sym_return_statement] = STATE(2531), - [sym_break_statement] = STATE(2531), - [sym_continue_statement] = STATE(2531), - [sym_normal_statement] = STATE(2531), - [sym_setfiletype_statement] = STATE(2531), - [sym_options_statement] = STATE(2531), - [sym_startinsert_statement] = STATE(2531), - [sym_stopinsert_statement] = STATE(2531), - [sym_scriptencoding_statement] = STATE(2531), - [sym_cnext_statement] = STATE(2531), - [sym_cprevious_statement] = STATE(2531), - [sym_runtime_statement] = STATE(2531), - [sym_wincmd_statement] = STATE(2531), - [sym_source_statement] = STATE(2531), - [sym_global_statement] = STATE(2531), - [sym_filetype_statement] = STATE(2531), - [sym_colorscheme_statement] = STATE(2531), - [sym_lua_statement] = STATE(2531), - [sym_ruby_statement] = STATE(2531), - [sym_python_statement] = STATE(2531), - [sym_perl_statement] = STATE(2531), - [sym_for_loop] = STATE(2531), - [sym_while_loop] = STATE(2531), - [sym_if_statement] = STATE(2531), - [sym_try_statement] = STATE(2531), - [sym_throw_statement] = STATE(2531), - [sym_bang_filter_statement] = STATE(2531), - [sym_let_statement] = STATE(2531), - [sym_const_statement] = STATE(2531), - [sym_set_statement] = STATE(2531), - [sym_setlocal_statement] = STATE(2531), - [sym_unlet_statement] = STATE(2531), - [sym_call_statement] = STATE(2531), - [sym_echo_statement] = STATE(2531), - [sym_echon_statement] = STATE(2531), - [sym_echohl_statement] = STATE(2531), - [sym_echomsg_statement] = STATE(2531), - [sym_echoerr_statement] = STATE(2531), - [sym_execute_statement] = STATE(2531), - [sym_silent_statement] = STATE(2531), - [sym_vertical_statement] = STATE(2531), - [sym_topleft_statement] = STATE(2531), - [sym_botright_statement] = STATE(2531), - [sym_aboveleft_statement] = STATE(2531), - [sym_belowright_statement] = STATE(2531), - [sym_user_command] = STATE(2531), - [sym_function_definition] = STATE(2531), - [sym_range_statement] = STATE(2531), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2531), - [sym_map_statement] = STATE(2531), - [sym_sign_statement] = STATE(2531), - [sym_eval_statement] = STATE(2531), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2531), - [sym_augroup_statement] = STATE(2531), - [sym_command_statement] = STATE(2531), - [sym_comclear_statement] = STATE(2531), - [sym_delcommand_statement] = STATE(2531), - [sym_highlight_statement] = STATE(2531), - [sym_syntax_statement] = STATE(2531), - [sym_edit_statement] = STATE(2531), - [sym_enew_statement] = STATE(2531), - [sym_find_statement] = STATE(2531), - [sym_ex_statement] = STATE(2531), - [sym_visual_statement] = STATE(2531), - [sym_view_statement] = STATE(2531), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [76] = { - [sym__statement] = STATE(2439), - [sym_unknown_builtin_statement] = STATE(2439), - [sym_return_statement] = STATE(2439), - [sym_break_statement] = STATE(2439), - [sym_continue_statement] = STATE(2439), - [sym_normal_statement] = STATE(2439), - [sym_setfiletype_statement] = STATE(2439), - [sym_options_statement] = STATE(2439), - [sym_startinsert_statement] = STATE(2439), - [sym_stopinsert_statement] = STATE(2439), - [sym_scriptencoding_statement] = STATE(2439), - [sym_cnext_statement] = STATE(2439), - [sym_cprevious_statement] = STATE(2439), - [sym_runtime_statement] = STATE(2439), - [sym_wincmd_statement] = STATE(2439), - [sym_source_statement] = STATE(2439), - [sym_global_statement] = STATE(2439), - [sym_filetype_statement] = STATE(2439), - [sym_colorscheme_statement] = STATE(2439), - [sym_lua_statement] = STATE(2439), - [sym_ruby_statement] = STATE(2439), - [sym_python_statement] = STATE(2439), - [sym_perl_statement] = STATE(2439), - [sym_for_loop] = STATE(2439), - [sym_while_loop] = STATE(2439), - [sym_if_statement] = STATE(2439), - [sym_try_statement] = STATE(2439), - [sym_throw_statement] = STATE(2439), - [sym_bang_filter_statement] = STATE(2439), - [sym_let_statement] = STATE(2439), - [sym_const_statement] = STATE(2439), - [sym_set_statement] = STATE(2439), - [sym_setlocal_statement] = STATE(2439), - [sym_unlet_statement] = STATE(2439), - [sym_call_statement] = STATE(2439), - [sym_echo_statement] = STATE(2439), - [sym_echon_statement] = STATE(2439), - [sym_echohl_statement] = STATE(2439), - [sym_echomsg_statement] = STATE(2439), - [sym_echoerr_statement] = STATE(2439), - [sym_execute_statement] = STATE(2439), - [sym_silent_statement] = STATE(2439), - [sym_vertical_statement] = STATE(2439), - [sym_topleft_statement] = STATE(2439), - [sym_botright_statement] = STATE(2439), - [sym_aboveleft_statement] = STATE(2439), - [sym_belowright_statement] = STATE(2439), - [sym_user_command] = STATE(2439), - [sym_function_definition] = STATE(2439), - [sym_range_statement] = STATE(2439), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2439), - [sym_map_statement] = STATE(2439), - [sym_sign_statement] = STATE(2439), - [sym_eval_statement] = STATE(2439), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2439), - [sym_augroup_statement] = STATE(2439), - [sym_command_statement] = STATE(2439), - [sym_comclear_statement] = STATE(2439), - [sym_delcommand_statement] = STATE(2439), - [sym_highlight_statement] = STATE(2439), - [sym_syntax_statement] = STATE(2439), - [sym_edit_statement] = STATE(2439), - [sym_enew_statement] = STATE(2439), - [sym_find_statement] = STATE(2439), - [sym_ex_statement] = STATE(2439), - [sym_visual_statement] = STATE(2439), - [sym_view_statement] = STATE(2439), + [sym__statement] = STATE(2825), + [sym_unknown_builtin_statement] = STATE(2825), + [sym_return_statement] = STATE(2825), + [sym_break_statement] = STATE(2825), + [sym_continue_statement] = STATE(2825), + [sym_normal_statement] = STATE(2825), + [sym_setfiletype_statement] = STATE(2825), + [sym_options_statement] = STATE(2825), + [sym_startinsert_statement] = STATE(2825), + [sym_stopinsert_statement] = STATE(2825), + [sym_scriptencoding_statement] = STATE(2825), + [sym_cnext_statement] = STATE(2825), + [sym_cprevious_statement] = STATE(2825), + [sym_runtime_statement] = STATE(2825), + [sym_wincmd_statement] = STATE(2825), + [sym_source_statement] = STATE(2825), + [sym_global_statement] = STATE(2825), + [sym_filetype_statement] = STATE(2825), + [sym_colorscheme_statement] = STATE(2825), + [sym_lua_statement] = STATE(2825), + [sym_ruby_statement] = STATE(2825), + [sym_python_statement] = STATE(2825), + [sym_perl_statement] = STATE(2825), + [sym_for_loop] = STATE(2825), + [sym_while_loop] = STATE(2825), + [sym_if_statement] = STATE(2825), + [sym_try_statement] = STATE(2825), + [sym_throw_statement] = STATE(2825), + [sym_bang_filter_statement] = STATE(2825), + [sym_let_statement] = STATE(2825), + [sym_const_statement] = STATE(2825), + [sym_set_statement] = STATE(2825), + [sym_setlocal_statement] = STATE(2825), + [sym_unlet_statement] = STATE(2825), + [sym_call_statement] = STATE(2825), + [sym_echo_statement] = STATE(2825), + [sym_echon_statement] = STATE(2825), + [sym_echohl_statement] = STATE(2825), + [sym_echomsg_statement] = STATE(2825), + [sym_echoerr_statement] = STATE(2825), + [sym_execute_statement] = STATE(2825), + [sym_silent_statement] = STATE(2825), + [sym_vertical_statement] = STATE(2825), + [sym_topleft_statement] = STATE(2825), + [sym_botright_statement] = STATE(2825), + [sym_aboveleft_statement] = STATE(2825), + [sym_belowright_statement] = STATE(2825), + [sym_user_command] = STATE(2825), + [sym_function_definition] = STATE(2825), + [sym_range_statement] = STATE(2825), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2825), + [sym_map_statement] = STATE(2825), + [sym_sign_statement] = STATE(2825), + [sym_eval_statement] = STATE(2825), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2825), + [sym_augroup_statement] = STATE(2825), + [sym_command_statement] = STATE(2825), + [sym_comclear_statement] = STATE(2825), + [sym_delcommand_statement] = STATE(2825), + [sym_highlight_statement] = STATE(2825), + [sym_syntax_statement] = STATE(2825), + [sym_edit_statement] = STATE(2825), + [sym_enew_statement] = STATE(2825), + [sym_find_statement] = STATE(2825), + [sym_ex_statement] = STATE(2825), + [sym_visual_statement] = STATE(2825), + [sym_view_statement] = STATE(2825), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [77] = { - [sym__statement] = STATE(2652), - [sym_unknown_builtin_statement] = STATE(2652), - [sym_return_statement] = STATE(2652), - [sym_break_statement] = STATE(2652), - [sym_continue_statement] = STATE(2652), - [sym_normal_statement] = STATE(2652), - [sym_setfiletype_statement] = STATE(2652), - [sym_options_statement] = STATE(2652), - [sym_startinsert_statement] = STATE(2652), - [sym_stopinsert_statement] = STATE(2652), - [sym_scriptencoding_statement] = STATE(2652), - [sym_cnext_statement] = STATE(2652), - [sym_cprevious_statement] = STATE(2652), - [sym_runtime_statement] = STATE(2652), - [sym_wincmd_statement] = STATE(2652), - [sym_source_statement] = STATE(2652), - [sym_global_statement] = STATE(2652), - [sym_filetype_statement] = STATE(2652), - [sym_colorscheme_statement] = STATE(2652), - [sym_lua_statement] = STATE(2652), - [sym_ruby_statement] = STATE(2652), - [sym_python_statement] = STATE(2652), - [sym_perl_statement] = STATE(2652), - [sym_for_loop] = STATE(2652), - [sym_while_loop] = STATE(2652), - [sym_if_statement] = STATE(2652), - [sym_try_statement] = STATE(2652), - [sym_throw_statement] = STATE(2652), - [sym_bang_filter_statement] = STATE(2652), - [sym_let_statement] = STATE(2652), - [sym_const_statement] = STATE(2652), - [sym_set_statement] = STATE(2652), - [sym_setlocal_statement] = STATE(2652), - [sym_unlet_statement] = STATE(2652), - [sym_call_statement] = STATE(2652), - [sym_echo_statement] = STATE(2652), - [sym_echon_statement] = STATE(2652), - [sym_echohl_statement] = STATE(2652), - [sym_echomsg_statement] = STATE(2652), - [sym_echoerr_statement] = STATE(2652), - [sym_execute_statement] = STATE(2652), - [sym_silent_statement] = STATE(2652), - [sym_vertical_statement] = STATE(2652), - [sym_topleft_statement] = STATE(2652), - [sym_botright_statement] = STATE(2652), - [sym_aboveleft_statement] = STATE(2652), - [sym_belowright_statement] = STATE(2652), - [sym_user_command] = STATE(2652), - [sym_function_definition] = STATE(2652), - [sym_range_statement] = STATE(2652), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2652), - [sym_map_statement] = STATE(2652), - [sym_sign_statement] = STATE(2652), - [sym_eval_statement] = STATE(2652), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2652), - [sym_augroup_statement] = STATE(2652), - [sym_command_statement] = STATE(2652), - [sym_comclear_statement] = STATE(2652), - [sym_delcommand_statement] = STATE(2652), - [sym_highlight_statement] = STATE(2652), - [sym_syntax_statement] = STATE(2652), - [sym_edit_statement] = STATE(2652), - [sym_enew_statement] = STATE(2652), - [sym_find_statement] = STATE(2652), - [sym_ex_statement] = STATE(2652), - [sym_visual_statement] = STATE(2652), - [sym_view_statement] = STATE(2652), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -65393,266 +65069,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [78] = { - [sym__statement] = STATE(2171), - [sym_unknown_builtin_statement] = STATE(2171), - [sym_return_statement] = STATE(2171), - [sym_break_statement] = STATE(2171), - [sym_continue_statement] = STATE(2171), - [sym_normal_statement] = STATE(2171), - [sym_setfiletype_statement] = STATE(2171), - [sym_options_statement] = STATE(2171), - [sym_startinsert_statement] = STATE(2171), - [sym_stopinsert_statement] = STATE(2171), - [sym_scriptencoding_statement] = STATE(2171), - [sym_cnext_statement] = STATE(2171), - [sym_cprevious_statement] = STATE(2171), - [sym_runtime_statement] = STATE(2171), - [sym_wincmd_statement] = STATE(2171), - [sym_source_statement] = STATE(2171), - [sym_global_statement] = STATE(2171), - [sym_filetype_statement] = STATE(2171), - [sym_colorscheme_statement] = STATE(2171), - [sym_lua_statement] = STATE(2171), - [sym_ruby_statement] = STATE(2171), - [sym_python_statement] = STATE(2171), - [sym_perl_statement] = STATE(2171), - [sym_for_loop] = STATE(2171), - [sym_while_loop] = STATE(2171), - [sym_if_statement] = STATE(2171), - [sym_try_statement] = STATE(2171), - [sym_throw_statement] = STATE(2171), - [sym_bang_filter_statement] = STATE(2171), - [sym_let_statement] = STATE(2171), - [sym_const_statement] = STATE(2171), - [sym_set_statement] = STATE(2171), - [sym_setlocal_statement] = STATE(2171), - [sym_unlet_statement] = STATE(2171), - [sym_call_statement] = STATE(2171), - [sym_echo_statement] = STATE(2171), - [sym_echon_statement] = STATE(2171), - [sym_echohl_statement] = STATE(2171), - [sym_echomsg_statement] = STATE(2171), - [sym_echoerr_statement] = STATE(2171), - [sym_execute_statement] = STATE(2171), - [sym_silent_statement] = STATE(2171), - [sym_vertical_statement] = STATE(2171), - [sym_topleft_statement] = STATE(2171), - [sym_botright_statement] = STATE(2171), - [sym_aboveleft_statement] = STATE(2171), - [sym_belowright_statement] = STATE(2171), - [sym_user_command] = STATE(2171), - [sym_function_definition] = STATE(2171), - [sym_range_statement] = STATE(2171), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2171), - [sym_map_statement] = STATE(2171), - [sym_sign_statement] = STATE(2171), - [sym_eval_statement] = STATE(2171), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2171), - [sym_augroup_statement] = STATE(2171), - [sym_command_statement] = STATE(2171), - [sym_comclear_statement] = STATE(2171), - [sym_delcommand_statement] = STATE(2171), - [sym_highlight_statement] = STATE(2171), - [sym_syntax_statement] = STATE(2171), - [sym_edit_statement] = STATE(2171), - [sym_enew_statement] = STATE(2171), - [sym_find_statement] = STATE(2171), - [sym_ex_statement] = STATE(2171), - [sym_visual_statement] = STATE(2171), - [sym_view_statement] = STATE(2171), + [76] = { + [sym__statement] = STATE(2673), + [sym_unknown_builtin_statement] = STATE(2673), + [sym_return_statement] = STATE(2673), + [sym_break_statement] = STATE(2673), + [sym_continue_statement] = STATE(2673), + [sym_normal_statement] = STATE(2673), + [sym_setfiletype_statement] = STATE(2673), + [sym_options_statement] = STATE(2673), + [sym_startinsert_statement] = STATE(2673), + [sym_stopinsert_statement] = STATE(2673), + [sym_scriptencoding_statement] = STATE(2673), + [sym_cnext_statement] = STATE(2673), + [sym_cprevious_statement] = STATE(2673), + [sym_runtime_statement] = STATE(2673), + [sym_wincmd_statement] = STATE(2673), + [sym_source_statement] = STATE(2673), + [sym_global_statement] = STATE(2673), + [sym_filetype_statement] = STATE(2673), + [sym_colorscheme_statement] = STATE(2673), + [sym_lua_statement] = STATE(2673), + [sym_ruby_statement] = STATE(2673), + [sym_python_statement] = STATE(2673), + [sym_perl_statement] = STATE(2673), + [sym_for_loop] = STATE(2673), + [sym_while_loop] = STATE(2673), + [sym_if_statement] = STATE(2673), + [sym_try_statement] = STATE(2673), + [sym_throw_statement] = STATE(2673), + [sym_bang_filter_statement] = STATE(2673), + [sym_let_statement] = STATE(2673), + [sym_const_statement] = STATE(2673), + [sym_set_statement] = STATE(2673), + [sym_setlocal_statement] = STATE(2673), + [sym_unlet_statement] = STATE(2673), + [sym_call_statement] = STATE(2673), + [sym_echo_statement] = STATE(2673), + [sym_echon_statement] = STATE(2673), + [sym_echohl_statement] = STATE(2673), + [sym_echomsg_statement] = STATE(2673), + [sym_echoerr_statement] = STATE(2673), + [sym_execute_statement] = STATE(2673), + [sym_silent_statement] = STATE(2673), + [sym_vertical_statement] = STATE(2673), + [sym_topleft_statement] = STATE(2673), + [sym_botright_statement] = STATE(2673), + [sym_aboveleft_statement] = STATE(2673), + [sym_belowright_statement] = STATE(2673), + [sym_user_command] = STATE(2673), + [sym_function_definition] = STATE(2673), + [sym_range_statement] = STATE(2673), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2673), + [sym_map_statement] = STATE(2673), + [sym_sign_statement] = STATE(2673), + [sym_eval_statement] = STATE(2673), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2673), + [sym_augroup_statement] = STATE(2673), + [sym_command_statement] = STATE(2673), + [sym_comclear_statement] = STATE(2673), + [sym_delcommand_statement] = STATE(2673), + [sym_highlight_statement] = STATE(2673), + [sym_syntax_statement] = STATE(2673), + [sym_edit_statement] = STATE(2673), + [sym_enew_statement] = STATE(2673), + [sym_find_statement] = STATE(2673), + [sym_ex_statement] = STATE(2673), + [sym_visual_statement] = STATE(2673), + [sym_view_statement] = STATE(2673), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [79] = { - [sym__statement] = STATE(2783), - [sym_unknown_builtin_statement] = STATE(2783), - [sym_return_statement] = STATE(2783), - [sym_break_statement] = STATE(2783), - [sym_continue_statement] = STATE(2783), - [sym_normal_statement] = STATE(2783), - [sym_setfiletype_statement] = STATE(2783), - [sym_options_statement] = STATE(2783), - [sym_startinsert_statement] = STATE(2783), - [sym_stopinsert_statement] = STATE(2783), - [sym_scriptencoding_statement] = STATE(2783), - [sym_cnext_statement] = STATE(2783), - [sym_cprevious_statement] = STATE(2783), - [sym_runtime_statement] = STATE(2783), - [sym_wincmd_statement] = STATE(2783), - [sym_source_statement] = STATE(2783), - [sym_global_statement] = STATE(2783), - [sym_filetype_statement] = STATE(2783), - [sym_colorscheme_statement] = STATE(2783), - [sym_lua_statement] = STATE(2783), - [sym_ruby_statement] = STATE(2783), - [sym_python_statement] = STATE(2783), - [sym_perl_statement] = STATE(2783), - [sym_for_loop] = STATE(2783), - [sym_while_loop] = STATE(2783), - [sym_if_statement] = STATE(2783), - [sym_try_statement] = STATE(2783), - [sym_throw_statement] = STATE(2783), - [sym_bang_filter_statement] = STATE(2783), - [sym_let_statement] = STATE(2783), - [sym_const_statement] = STATE(2783), - [sym_set_statement] = STATE(2783), - [sym_setlocal_statement] = STATE(2783), - [sym_unlet_statement] = STATE(2783), - [sym_call_statement] = STATE(2783), - [sym_echo_statement] = STATE(2783), - [sym_echon_statement] = STATE(2783), - [sym_echohl_statement] = STATE(2783), - [sym_echomsg_statement] = STATE(2783), - [sym_echoerr_statement] = STATE(2783), - [sym_execute_statement] = STATE(2783), - [sym_silent_statement] = STATE(2783), - [sym_vertical_statement] = STATE(2783), - [sym_topleft_statement] = STATE(2783), - [sym_botright_statement] = STATE(2783), - [sym_aboveleft_statement] = STATE(2783), - [sym_belowright_statement] = STATE(2783), - [sym_user_command] = STATE(2783), - [sym_function_definition] = STATE(2783), - [sym_range_statement] = STATE(2783), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2783), - [sym_map_statement] = STATE(2783), - [sym_sign_statement] = STATE(2783), - [sym_eval_statement] = STATE(2783), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2783), - [sym_augroup_statement] = STATE(2783), - [sym_command_statement] = STATE(2783), - [sym_comclear_statement] = STATE(2783), - [sym_delcommand_statement] = STATE(2783), - [sym_highlight_statement] = STATE(2783), - [sym_syntax_statement] = STATE(2783), - [sym_edit_statement] = STATE(2783), - [sym_enew_statement] = STATE(2783), - [sym_find_statement] = STATE(2783), - [sym_ex_statement] = STATE(2783), - [sym_visual_statement] = STATE(2783), - [sym_view_statement] = STATE(2783), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -65755,85 +65250,1352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, + [77] = { + [sym__statement] = STATE(2624), + [sym_unknown_builtin_statement] = STATE(2624), + [sym_return_statement] = STATE(2624), + [sym_break_statement] = STATE(2624), + [sym_continue_statement] = STATE(2624), + [sym_normal_statement] = STATE(2624), + [sym_setfiletype_statement] = STATE(2624), + [sym_options_statement] = STATE(2624), + [sym_startinsert_statement] = STATE(2624), + [sym_stopinsert_statement] = STATE(2624), + [sym_scriptencoding_statement] = STATE(2624), + [sym_cnext_statement] = STATE(2624), + [sym_cprevious_statement] = STATE(2624), + [sym_runtime_statement] = STATE(2624), + [sym_wincmd_statement] = STATE(2624), + [sym_source_statement] = STATE(2624), + [sym_global_statement] = STATE(2624), + [sym_filetype_statement] = STATE(2624), + [sym_colorscheme_statement] = STATE(2624), + [sym_lua_statement] = STATE(2624), + [sym_ruby_statement] = STATE(2624), + [sym_python_statement] = STATE(2624), + [sym_perl_statement] = STATE(2624), + [sym_for_loop] = STATE(2624), + [sym_while_loop] = STATE(2624), + [sym_if_statement] = STATE(2624), + [sym_try_statement] = STATE(2624), + [sym_throw_statement] = STATE(2624), + [sym_bang_filter_statement] = STATE(2624), + [sym_let_statement] = STATE(2624), + [sym_const_statement] = STATE(2624), + [sym_set_statement] = STATE(2624), + [sym_setlocal_statement] = STATE(2624), + [sym_unlet_statement] = STATE(2624), + [sym_call_statement] = STATE(2624), + [sym_echo_statement] = STATE(2624), + [sym_echon_statement] = STATE(2624), + [sym_echohl_statement] = STATE(2624), + [sym_echomsg_statement] = STATE(2624), + [sym_echoerr_statement] = STATE(2624), + [sym_execute_statement] = STATE(2624), + [sym_silent_statement] = STATE(2624), + [sym_vertical_statement] = STATE(2624), + [sym_topleft_statement] = STATE(2624), + [sym_botright_statement] = STATE(2624), + [sym_aboveleft_statement] = STATE(2624), + [sym_belowright_statement] = STATE(2624), + [sym_user_command] = STATE(2624), + [sym_function_definition] = STATE(2624), + [sym_range_statement] = STATE(2624), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2624), + [sym_map_statement] = STATE(2624), + [sym_sign_statement] = STATE(2624), + [sym_eval_statement] = STATE(2624), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2624), + [sym_augroup_statement] = STATE(2624), + [sym_command_statement] = STATE(2624), + [sym_comclear_statement] = STATE(2624), + [sym_delcommand_statement] = STATE(2624), + [sym_highlight_statement] = STATE(2624), + [sym_syntax_statement] = STATE(2624), + [sym_edit_statement] = STATE(2624), + [sym_enew_statement] = STATE(2624), + [sym_find_statement] = STATE(2624), + [sym_ex_statement] = STATE(2624), + [sym_visual_statement] = STATE(2624), + [sym_view_statement] = STATE(2624), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [78] = { + [sym__statement] = STATE(2627), + [sym_unknown_builtin_statement] = STATE(2627), + [sym_return_statement] = STATE(2627), + [sym_break_statement] = STATE(2627), + [sym_continue_statement] = STATE(2627), + [sym_normal_statement] = STATE(2627), + [sym_setfiletype_statement] = STATE(2627), + [sym_options_statement] = STATE(2627), + [sym_startinsert_statement] = STATE(2627), + [sym_stopinsert_statement] = STATE(2627), + [sym_scriptencoding_statement] = STATE(2627), + [sym_cnext_statement] = STATE(2627), + [sym_cprevious_statement] = STATE(2627), + [sym_runtime_statement] = STATE(2627), + [sym_wincmd_statement] = STATE(2627), + [sym_source_statement] = STATE(2627), + [sym_global_statement] = STATE(2627), + [sym_filetype_statement] = STATE(2627), + [sym_colorscheme_statement] = STATE(2627), + [sym_lua_statement] = STATE(2627), + [sym_ruby_statement] = STATE(2627), + [sym_python_statement] = STATE(2627), + [sym_perl_statement] = STATE(2627), + [sym_for_loop] = STATE(2627), + [sym_while_loop] = STATE(2627), + [sym_if_statement] = STATE(2627), + [sym_try_statement] = STATE(2627), + [sym_throw_statement] = STATE(2627), + [sym_bang_filter_statement] = STATE(2627), + [sym_let_statement] = STATE(2627), + [sym_const_statement] = STATE(2627), + [sym_set_statement] = STATE(2627), + [sym_setlocal_statement] = STATE(2627), + [sym_unlet_statement] = STATE(2627), + [sym_call_statement] = STATE(2627), + [sym_echo_statement] = STATE(2627), + [sym_echon_statement] = STATE(2627), + [sym_echohl_statement] = STATE(2627), + [sym_echomsg_statement] = STATE(2627), + [sym_echoerr_statement] = STATE(2627), + [sym_execute_statement] = STATE(2627), + [sym_silent_statement] = STATE(2627), + [sym_vertical_statement] = STATE(2627), + [sym_topleft_statement] = STATE(2627), + [sym_botright_statement] = STATE(2627), + [sym_aboveleft_statement] = STATE(2627), + [sym_belowright_statement] = STATE(2627), + [sym_user_command] = STATE(2627), + [sym_function_definition] = STATE(2627), + [sym_range_statement] = STATE(2627), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2627), + [sym_map_statement] = STATE(2627), + [sym_sign_statement] = STATE(2627), + [sym_eval_statement] = STATE(2627), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2627), + [sym_augroup_statement] = STATE(2627), + [sym_command_statement] = STATE(2627), + [sym_comclear_statement] = STATE(2627), + [sym_delcommand_statement] = STATE(2627), + [sym_highlight_statement] = STATE(2627), + [sym_syntax_statement] = STATE(2627), + [sym_edit_statement] = STATE(2627), + [sym_enew_statement] = STATE(2627), + [sym_find_statement] = STATE(2627), + [sym_ex_statement] = STATE(2627), + [sym_visual_statement] = STATE(2627), + [sym_view_statement] = STATE(2627), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [79] = { + [sym__statement] = STATE(2628), + [sym_unknown_builtin_statement] = STATE(2628), + [sym_return_statement] = STATE(2628), + [sym_break_statement] = STATE(2628), + [sym_continue_statement] = STATE(2628), + [sym_normal_statement] = STATE(2628), + [sym_setfiletype_statement] = STATE(2628), + [sym_options_statement] = STATE(2628), + [sym_startinsert_statement] = STATE(2628), + [sym_stopinsert_statement] = STATE(2628), + [sym_scriptencoding_statement] = STATE(2628), + [sym_cnext_statement] = STATE(2628), + [sym_cprevious_statement] = STATE(2628), + [sym_runtime_statement] = STATE(2628), + [sym_wincmd_statement] = STATE(2628), + [sym_source_statement] = STATE(2628), + [sym_global_statement] = STATE(2628), + [sym_filetype_statement] = STATE(2628), + [sym_colorscheme_statement] = STATE(2628), + [sym_lua_statement] = STATE(2628), + [sym_ruby_statement] = STATE(2628), + [sym_python_statement] = STATE(2628), + [sym_perl_statement] = STATE(2628), + [sym_for_loop] = STATE(2628), + [sym_while_loop] = STATE(2628), + [sym_if_statement] = STATE(2628), + [sym_try_statement] = STATE(2628), + [sym_throw_statement] = STATE(2628), + [sym_bang_filter_statement] = STATE(2628), + [sym_let_statement] = STATE(2628), + [sym_const_statement] = STATE(2628), + [sym_set_statement] = STATE(2628), + [sym_setlocal_statement] = STATE(2628), + [sym_unlet_statement] = STATE(2628), + [sym_call_statement] = STATE(2628), + [sym_echo_statement] = STATE(2628), + [sym_echon_statement] = STATE(2628), + [sym_echohl_statement] = STATE(2628), + [sym_echomsg_statement] = STATE(2628), + [sym_echoerr_statement] = STATE(2628), + [sym_execute_statement] = STATE(2628), + [sym_silent_statement] = STATE(2628), + [sym_vertical_statement] = STATE(2628), + [sym_topleft_statement] = STATE(2628), + [sym_botright_statement] = STATE(2628), + [sym_aboveleft_statement] = STATE(2628), + [sym_belowright_statement] = STATE(2628), + [sym_user_command] = STATE(2628), + [sym_function_definition] = STATE(2628), + [sym_range_statement] = STATE(2628), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2628), + [sym_map_statement] = STATE(2628), + [sym_sign_statement] = STATE(2628), + [sym_eval_statement] = STATE(2628), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2628), + [sym_augroup_statement] = STATE(2628), + [sym_command_statement] = STATE(2628), + [sym_comclear_statement] = STATE(2628), + [sym_delcommand_statement] = STATE(2628), + [sym_highlight_statement] = STATE(2628), + [sym_syntax_statement] = STATE(2628), + [sym_edit_statement] = STATE(2628), + [sym_enew_statement] = STATE(2628), + [sym_find_statement] = STATE(2628), + [sym_ex_statement] = STATE(2628), + [sym_visual_statement] = STATE(2628), + [sym_view_statement] = STATE(2628), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, [80] = { - [sym__statement] = STATE(2642), - [sym_unknown_builtin_statement] = STATE(2642), - [sym_return_statement] = STATE(2642), - [sym_break_statement] = STATE(2642), - [sym_continue_statement] = STATE(2642), - [sym_normal_statement] = STATE(2642), - [sym_setfiletype_statement] = STATE(2642), - [sym_options_statement] = STATE(2642), - [sym_startinsert_statement] = STATE(2642), - [sym_stopinsert_statement] = STATE(2642), - [sym_scriptencoding_statement] = STATE(2642), - [sym_cnext_statement] = STATE(2642), - [sym_cprevious_statement] = STATE(2642), - [sym_runtime_statement] = STATE(2642), - [sym_wincmd_statement] = STATE(2642), - [sym_source_statement] = STATE(2642), - [sym_global_statement] = STATE(2642), - [sym_filetype_statement] = STATE(2642), - [sym_colorscheme_statement] = STATE(2642), - [sym_lua_statement] = STATE(2642), - [sym_ruby_statement] = STATE(2642), - [sym_python_statement] = STATE(2642), - [sym_perl_statement] = STATE(2642), - [sym_for_loop] = STATE(2642), - [sym_while_loop] = STATE(2642), - [sym_if_statement] = STATE(2642), - [sym_try_statement] = STATE(2642), - [sym_throw_statement] = STATE(2642), - [sym_bang_filter_statement] = STATE(2642), - [sym_let_statement] = STATE(2642), - [sym_const_statement] = STATE(2642), - [sym_set_statement] = STATE(2642), - [sym_setlocal_statement] = STATE(2642), - [sym_unlet_statement] = STATE(2642), - [sym_call_statement] = STATE(2642), - [sym_echo_statement] = STATE(2642), - [sym_echon_statement] = STATE(2642), - [sym_echohl_statement] = STATE(2642), - [sym_echomsg_statement] = STATE(2642), - [sym_echoerr_statement] = STATE(2642), - [sym_execute_statement] = STATE(2642), - [sym_silent_statement] = STATE(2642), - [sym_vertical_statement] = STATE(2642), - [sym_topleft_statement] = STATE(2642), - [sym_botright_statement] = STATE(2642), - [sym_aboveleft_statement] = STATE(2642), - [sym_belowright_statement] = STATE(2642), - [sym_user_command] = STATE(2642), - [sym_function_definition] = STATE(2642), - [sym_range_statement] = STATE(2642), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2642), - [sym_map_statement] = STATE(2642), - [sym_sign_statement] = STATE(2642), - [sym_eval_statement] = STATE(2642), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2642), - [sym_augroup_statement] = STATE(2642), - [sym_command_statement] = STATE(2642), - [sym_comclear_statement] = STATE(2642), - [sym_delcommand_statement] = STATE(2642), - [sym_highlight_statement] = STATE(2642), - [sym_syntax_statement] = STATE(2642), - [sym_edit_statement] = STATE(2642), - [sym_enew_statement] = STATE(2642), - [sym_find_statement] = STATE(2642), - [sym_ex_statement] = STATE(2642), - [sym_visual_statement] = STATE(2642), - [sym_view_statement] = STATE(2642), + [sym__statement] = STATE(2630), + [sym_unknown_builtin_statement] = STATE(2630), + [sym_return_statement] = STATE(2630), + [sym_break_statement] = STATE(2630), + [sym_continue_statement] = STATE(2630), + [sym_normal_statement] = STATE(2630), + [sym_setfiletype_statement] = STATE(2630), + [sym_options_statement] = STATE(2630), + [sym_startinsert_statement] = STATE(2630), + [sym_stopinsert_statement] = STATE(2630), + [sym_scriptencoding_statement] = STATE(2630), + [sym_cnext_statement] = STATE(2630), + [sym_cprevious_statement] = STATE(2630), + [sym_runtime_statement] = STATE(2630), + [sym_wincmd_statement] = STATE(2630), + [sym_source_statement] = STATE(2630), + [sym_global_statement] = STATE(2630), + [sym_filetype_statement] = STATE(2630), + [sym_colorscheme_statement] = STATE(2630), + [sym_lua_statement] = STATE(2630), + [sym_ruby_statement] = STATE(2630), + [sym_python_statement] = STATE(2630), + [sym_perl_statement] = STATE(2630), + [sym_for_loop] = STATE(2630), + [sym_while_loop] = STATE(2630), + [sym_if_statement] = STATE(2630), + [sym_try_statement] = STATE(2630), + [sym_throw_statement] = STATE(2630), + [sym_bang_filter_statement] = STATE(2630), + [sym_let_statement] = STATE(2630), + [sym_const_statement] = STATE(2630), + [sym_set_statement] = STATE(2630), + [sym_setlocal_statement] = STATE(2630), + [sym_unlet_statement] = STATE(2630), + [sym_call_statement] = STATE(2630), + [sym_echo_statement] = STATE(2630), + [sym_echon_statement] = STATE(2630), + [sym_echohl_statement] = STATE(2630), + [sym_echomsg_statement] = STATE(2630), + [sym_echoerr_statement] = STATE(2630), + [sym_execute_statement] = STATE(2630), + [sym_silent_statement] = STATE(2630), + [sym_vertical_statement] = STATE(2630), + [sym_topleft_statement] = STATE(2630), + [sym_botright_statement] = STATE(2630), + [sym_aboveleft_statement] = STATE(2630), + [sym_belowright_statement] = STATE(2630), + [sym_user_command] = STATE(2630), + [sym_function_definition] = STATE(2630), + [sym_range_statement] = STATE(2630), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2630), + [sym_map_statement] = STATE(2630), + [sym_sign_statement] = STATE(2630), + [sym_eval_statement] = STATE(2630), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2630), + [sym_augroup_statement] = STATE(2630), + [sym_command_statement] = STATE(2630), + [sym_comclear_statement] = STATE(2630), + [sym_delcommand_statement] = STATE(2630), + [sym_highlight_statement] = STATE(2630), + [sym_syntax_statement] = STATE(2630), + [sym_edit_statement] = STATE(2630), + [sym_enew_statement] = STATE(2630), + [sym_find_statement] = STATE(2630), + [sym_ex_statement] = STATE(2630), + [sym_visual_statement] = STATE(2630), + [sym_view_statement] = STATE(2630), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [81] = { + [sym__statement] = STATE(2631), + [sym_unknown_builtin_statement] = STATE(2631), + [sym_return_statement] = STATE(2631), + [sym_break_statement] = STATE(2631), + [sym_continue_statement] = STATE(2631), + [sym_normal_statement] = STATE(2631), + [sym_setfiletype_statement] = STATE(2631), + [sym_options_statement] = STATE(2631), + [sym_startinsert_statement] = STATE(2631), + [sym_stopinsert_statement] = STATE(2631), + [sym_scriptencoding_statement] = STATE(2631), + [sym_cnext_statement] = STATE(2631), + [sym_cprevious_statement] = STATE(2631), + [sym_runtime_statement] = STATE(2631), + [sym_wincmd_statement] = STATE(2631), + [sym_source_statement] = STATE(2631), + [sym_global_statement] = STATE(2631), + [sym_filetype_statement] = STATE(2631), + [sym_colorscheme_statement] = STATE(2631), + [sym_lua_statement] = STATE(2631), + [sym_ruby_statement] = STATE(2631), + [sym_python_statement] = STATE(2631), + [sym_perl_statement] = STATE(2631), + [sym_for_loop] = STATE(2631), + [sym_while_loop] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_try_statement] = STATE(2631), + [sym_throw_statement] = STATE(2631), + [sym_bang_filter_statement] = STATE(2631), + [sym_let_statement] = STATE(2631), + [sym_const_statement] = STATE(2631), + [sym_set_statement] = STATE(2631), + [sym_setlocal_statement] = STATE(2631), + [sym_unlet_statement] = STATE(2631), + [sym_call_statement] = STATE(2631), + [sym_echo_statement] = STATE(2631), + [sym_echon_statement] = STATE(2631), + [sym_echohl_statement] = STATE(2631), + [sym_echomsg_statement] = STATE(2631), + [sym_echoerr_statement] = STATE(2631), + [sym_execute_statement] = STATE(2631), + [sym_silent_statement] = STATE(2631), + [sym_vertical_statement] = STATE(2631), + [sym_topleft_statement] = STATE(2631), + [sym_botright_statement] = STATE(2631), + [sym_aboveleft_statement] = STATE(2631), + [sym_belowright_statement] = STATE(2631), + [sym_user_command] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_range_statement] = STATE(2631), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2631), + [sym_map_statement] = STATE(2631), + [sym_sign_statement] = STATE(2631), + [sym_eval_statement] = STATE(2631), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2631), + [sym_augroup_statement] = STATE(2631), + [sym_command_statement] = STATE(2631), + [sym_comclear_statement] = STATE(2631), + [sym_delcommand_statement] = STATE(2631), + [sym_highlight_statement] = STATE(2631), + [sym_syntax_statement] = STATE(2631), + [sym_edit_statement] = STATE(2631), + [sym_enew_statement] = STATE(2631), + [sym_find_statement] = STATE(2631), + [sym_ex_statement] = STATE(2631), + [sym_visual_statement] = STATE(2631), + [sym_view_statement] = STATE(2631), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [82] = { + [sym__statement] = STATE(2250), + [sym_unknown_builtin_statement] = STATE(2250), + [sym_return_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_normal_statement] = STATE(2250), + [sym_setfiletype_statement] = STATE(2250), + [sym_options_statement] = STATE(2250), + [sym_startinsert_statement] = STATE(2250), + [sym_stopinsert_statement] = STATE(2250), + [sym_scriptencoding_statement] = STATE(2250), + [sym_cnext_statement] = STATE(2250), + [sym_cprevious_statement] = STATE(2250), + [sym_runtime_statement] = STATE(2250), + [sym_wincmd_statement] = STATE(2250), + [sym_source_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_filetype_statement] = STATE(2250), + [sym_colorscheme_statement] = STATE(2250), + [sym_lua_statement] = STATE(2250), + [sym_ruby_statement] = STATE(2250), + [sym_python_statement] = STATE(2250), + [sym_perl_statement] = STATE(2250), + [sym_for_loop] = STATE(2250), + [sym_while_loop] = STATE(2250), + [sym_if_statement] = STATE(2250), + [sym_try_statement] = STATE(2250), + [sym_throw_statement] = STATE(2250), + [sym_bang_filter_statement] = STATE(2250), + [sym_let_statement] = STATE(2250), + [sym_const_statement] = STATE(2250), + [sym_set_statement] = STATE(2250), + [sym_setlocal_statement] = STATE(2250), + [sym_unlet_statement] = STATE(2250), + [sym_call_statement] = STATE(2250), + [sym_echo_statement] = STATE(2250), + [sym_echon_statement] = STATE(2250), + [sym_echohl_statement] = STATE(2250), + [sym_echomsg_statement] = STATE(2250), + [sym_echoerr_statement] = STATE(2250), + [sym_execute_statement] = STATE(2250), + [sym_silent_statement] = STATE(2250), + [sym_vertical_statement] = STATE(2250), + [sym_topleft_statement] = STATE(2250), + [sym_botright_statement] = STATE(2250), + [sym_aboveleft_statement] = STATE(2250), + [sym_belowright_statement] = STATE(2250), + [sym_user_command] = STATE(2250), + [sym_function_definition] = STATE(2250), + [sym_range_statement] = STATE(2250), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2250), + [sym_map_statement] = STATE(2250), + [sym_sign_statement] = STATE(2250), + [sym_eval_statement] = STATE(2250), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2250), + [sym_augroup_statement] = STATE(2250), + [sym_command_statement] = STATE(2250), + [sym_comclear_statement] = STATE(2250), + [sym_delcommand_statement] = STATE(2250), + [sym_highlight_statement] = STATE(2250), + [sym_syntax_statement] = STATE(2250), + [sym_edit_statement] = STATE(2250), + [sym_enew_statement] = STATE(2250), + [sym_find_statement] = STATE(2250), + [sym_ex_statement] = STATE(2250), + [sym_visual_statement] = STATE(2250), + [sym_view_statement] = STATE(2250), [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [83] = { + [sym__statement] = STATE(2388), + [sym_unknown_builtin_statement] = STATE(2388), + [sym_return_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_normal_statement] = STATE(2388), + [sym_setfiletype_statement] = STATE(2388), + [sym_options_statement] = STATE(2388), + [sym_startinsert_statement] = STATE(2388), + [sym_stopinsert_statement] = STATE(2388), + [sym_scriptencoding_statement] = STATE(2388), + [sym_cnext_statement] = STATE(2388), + [sym_cprevious_statement] = STATE(2388), + [sym_runtime_statement] = STATE(2388), + [sym_wincmd_statement] = STATE(2388), + [sym_source_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_filetype_statement] = STATE(2388), + [sym_colorscheme_statement] = STATE(2388), + [sym_lua_statement] = STATE(2388), + [sym_ruby_statement] = STATE(2388), + [sym_python_statement] = STATE(2388), + [sym_perl_statement] = STATE(2388), + [sym_for_loop] = STATE(2388), + [sym_while_loop] = STATE(2388), + [sym_if_statement] = STATE(2388), + [sym_try_statement] = STATE(2388), + [sym_throw_statement] = STATE(2388), + [sym_bang_filter_statement] = STATE(2388), + [sym_let_statement] = STATE(2388), + [sym_const_statement] = STATE(2388), + [sym_set_statement] = STATE(2388), + [sym_setlocal_statement] = STATE(2388), + [sym_unlet_statement] = STATE(2388), + [sym_call_statement] = STATE(2388), + [sym_echo_statement] = STATE(2388), + [sym_echon_statement] = STATE(2388), + [sym_echohl_statement] = STATE(2388), + [sym_echomsg_statement] = STATE(2388), + [sym_echoerr_statement] = STATE(2388), + [sym_execute_statement] = STATE(2388), + [sym_silent_statement] = STATE(2388), + [sym_vertical_statement] = STATE(2388), + [sym_topleft_statement] = STATE(2388), + [sym_botright_statement] = STATE(2388), + [sym_aboveleft_statement] = STATE(2388), + [sym_belowright_statement] = STATE(2388), + [sym_user_command] = STATE(2388), + [sym_function_definition] = STATE(2388), + [sym_range_statement] = STATE(2388), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2388), + [sym_map_statement] = STATE(2388), + [sym_sign_statement] = STATE(2388), + [sym_eval_statement] = STATE(2388), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2388), + [sym_augroup_statement] = STATE(2388), + [sym_command_statement] = STATE(2388), + [sym_comclear_statement] = STATE(2388), + [sym_delcommand_statement] = STATE(2388), + [sym_highlight_statement] = STATE(2388), + [sym_syntax_statement] = STATE(2388), + [sym_edit_statement] = STATE(2388), + [sym_enew_statement] = STATE(2388), + [sym_find_statement] = STATE(2388), + [sym_ex_statement] = STATE(2388), + [sym_visual_statement] = STATE(2388), + [sym_view_statement] = STATE(2388), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [84] = { + [sym__statement] = STATE(2720), + [sym_unknown_builtin_statement] = STATE(2720), + [sym_return_statement] = STATE(2720), + [sym_break_statement] = STATE(2720), + [sym_continue_statement] = STATE(2720), + [sym_normal_statement] = STATE(2720), + [sym_setfiletype_statement] = STATE(2720), + [sym_options_statement] = STATE(2720), + [sym_startinsert_statement] = STATE(2720), + [sym_stopinsert_statement] = STATE(2720), + [sym_scriptencoding_statement] = STATE(2720), + [sym_cnext_statement] = STATE(2720), + [sym_cprevious_statement] = STATE(2720), + [sym_runtime_statement] = STATE(2720), + [sym_wincmd_statement] = STATE(2720), + [sym_source_statement] = STATE(2720), + [sym_global_statement] = STATE(2720), + [sym_filetype_statement] = STATE(2720), + [sym_colorscheme_statement] = STATE(2720), + [sym_lua_statement] = STATE(2720), + [sym_ruby_statement] = STATE(2720), + [sym_python_statement] = STATE(2720), + [sym_perl_statement] = STATE(2720), + [sym_for_loop] = STATE(2720), + [sym_while_loop] = STATE(2720), + [sym_if_statement] = STATE(2720), + [sym_try_statement] = STATE(2720), + [sym_throw_statement] = STATE(2720), + [sym_bang_filter_statement] = STATE(2720), + [sym_let_statement] = STATE(2720), + [sym_const_statement] = STATE(2720), + [sym_set_statement] = STATE(2720), + [sym_setlocal_statement] = STATE(2720), + [sym_unlet_statement] = STATE(2720), + [sym_call_statement] = STATE(2720), + [sym_echo_statement] = STATE(2720), + [sym_echon_statement] = STATE(2720), + [sym_echohl_statement] = STATE(2720), + [sym_echomsg_statement] = STATE(2720), + [sym_echoerr_statement] = STATE(2720), + [sym_execute_statement] = STATE(2720), + [sym_silent_statement] = STATE(2720), + [sym_vertical_statement] = STATE(2720), + [sym_topleft_statement] = STATE(2720), + [sym_botright_statement] = STATE(2720), + [sym_aboveleft_statement] = STATE(2720), + [sym_belowright_statement] = STATE(2720), + [sym_user_command] = STATE(2720), + [sym_function_definition] = STATE(2720), + [sym_range_statement] = STATE(2720), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2720), + [sym_map_statement] = STATE(2720), + [sym_sign_statement] = STATE(2720), + [sym_eval_statement] = STATE(2720), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2720), + [sym_augroup_statement] = STATE(2720), + [sym_command_statement] = STATE(2720), + [sym_comclear_statement] = STATE(2720), + [sym_delcommand_statement] = STATE(2720), + [sym_highlight_statement] = STATE(2720), + [sym_syntax_statement] = STATE(2720), + [sym_edit_statement] = STATE(2720), + [sym_enew_statement] = STATE(2720), + [sym_find_statement] = STATE(2720), + [sym_ex_statement] = STATE(2720), + [sym_visual_statement] = STATE(2720), + [sym_view_statement] = STATE(2720), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -65936,266 +66698,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [81] = { - [sym__statement] = STATE(2519), - [sym_unknown_builtin_statement] = STATE(2519), - [sym_return_statement] = STATE(2519), - [sym_break_statement] = STATE(2519), - [sym_continue_statement] = STATE(2519), - [sym_normal_statement] = STATE(2519), - [sym_setfiletype_statement] = STATE(2519), - [sym_options_statement] = STATE(2519), - [sym_startinsert_statement] = STATE(2519), - [sym_stopinsert_statement] = STATE(2519), - [sym_scriptencoding_statement] = STATE(2519), - [sym_cnext_statement] = STATE(2519), - [sym_cprevious_statement] = STATE(2519), - [sym_runtime_statement] = STATE(2519), - [sym_wincmd_statement] = STATE(2519), - [sym_source_statement] = STATE(2519), - [sym_global_statement] = STATE(2519), - [sym_filetype_statement] = STATE(2519), - [sym_colorscheme_statement] = STATE(2519), - [sym_lua_statement] = STATE(2519), - [sym_ruby_statement] = STATE(2519), - [sym_python_statement] = STATE(2519), - [sym_perl_statement] = STATE(2519), - [sym_for_loop] = STATE(2519), - [sym_while_loop] = STATE(2519), - [sym_if_statement] = STATE(2519), - [sym_try_statement] = STATE(2519), - [sym_throw_statement] = STATE(2519), - [sym_bang_filter_statement] = STATE(2519), - [sym_let_statement] = STATE(2519), - [sym_const_statement] = STATE(2519), - [sym_set_statement] = STATE(2519), - [sym_setlocal_statement] = STATE(2519), - [sym_unlet_statement] = STATE(2519), - [sym_call_statement] = STATE(2519), - [sym_echo_statement] = STATE(2519), - [sym_echon_statement] = STATE(2519), - [sym_echohl_statement] = STATE(2519), - [sym_echomsg_statement] = STATE(2519), - [sym_echoerr_statement] = STATE(2519), - [sym_execute_statement] = STATE(2519), - [sym_silent_statement] = STATE(2519), - [sym_vertical_statement] = STATE(2519), - [sym_topleft_statement] = STATE(2519), - [sym_botright_statement] = STATE(2519), - [sym_aboveleft_statement] = STATE(2519), - [sym_belowright_statement] = STATE(2519), - [sym_user_command] = STATE(2519), - [sym_function_definition] = STATE(2519), - [sym_range_statement] = STATE(2519), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2519), - [sym_map_statement] = STATE(2519), - [sym_sign_statement] = STATE(2519), - [sym_eval_statement] = STATE(2519), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2519), - [sym_augroup_statement] = STATE(2519), - [sym_command_statement] = STATE(2519), - [sym_comclear_statement] = STATE(2519), - [sym_delcommand_statement] = STATE(2519), - [sym_highlight_statement] = STATE(2519), - [sym_syntax_statement] = STATE(2519), - [sym_edit_statement] = STATE(2519), - [sym_enew_statement] = STATE(2519), - [sym_find_statement] = STATE(2519), - [sym_ex_statement] = STATE(2519), - [sym_visual_statement] = STATE(2519), - [sym_view_statement] = STATE(2519), + [85] = { + [sym__statement] = STATE(2715), + [sym_unknown_builtin_statement] = STATE(2715), + [sym_return_statement] = STATE(2715), + [sym_break_statement] = STATE(2715), + [sym_continue_statement] = STATE(2715), + [sym_normal_statement] = STATE(2715), + [sym_setfiletype_statement] = STATE(2715), + [sym_options_statement] = STATE(2715), + [sym_startinsert_statement] = STATE(2715), + [sym_stopinsert_statement] = STATE(2715), + [sym_scriptencoding_statement] = STATE(2715), + [sym_cnext_statement] = STATE(2715), + [sym_cprevious_statement] = STATE(2715), + [sym_runtime_statement] = STATE(2715), + [sym_wincmd_statement] = STATE(2715), + [sym_source_statement] = STATE(2715), + [sym_global_statement] = STATE(2715), + [sym_filetype_statement] = STATE(2715), + [sym_colorscheme_statement] = STATE(2715), + [sym_lua_statement] = STATE(2715), + [sym_ruby_statement] = STATE(2715), + [sym_python_statement] = STATE(2715), + [sym_perl_statement] = STATE(2715), + [sym_for_loop] = STATE(2715), + [sym_while_loop] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_try_statement] = STATE(2715), + [sym_throw_statement] = STATE(2715), + [sym_bang_filter_statement] = STATE(2715), + [sym_let_statement] = STATE(2715), + [sym_const_statement] = STATE(2715), + [sym_set_statement] = STATE(2715), + [sym_setlocal_statement] = STATE(2715), + [sym_unlet_statement] = STATE(2715), + [sym_call_statement] = STATE(2715), + [sym_echo_statement] = STATE(2715), + [sym_echon_statement] = STATE(2715), + [sym_echohl_statement] = STATE(2715), + [sym_echomsg_statement] = STATE(2715), + [sym_echoerr_statement] = STATE(2715), + [sym_execute_statement] = STATE(2715), + [sym_silent_statement] = STATE(2715), + [sym_vertical_statement] = STATE(2715), + [sym_topleft_statement] = STATE(2715), + [sym_botright_statement] = STATE(2715), + [sym_aboveleft_statement] = STATE(2715), + [sym_belowright_statement] = STATE(2715), + [sym_user_command] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_range_statement] = STATE(2715), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2715), + [sym_map_statement] = STATE(2715), + [sym_sign_statement] = STATE(2715), + [sym_eval_statement] = STATE(2715), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2715), + [sym_augroup_statement] = STATE(2715), + [sym_command_statement] = STATE(2715), + [sym_comclear_statement] = STATE(2715), + [sym_delcommand_statement] = STATE(2715), + [sym_highlight_statement] = STATE(2715), + [sym_syntax_statement] = STATE(2715), + [sym_edit_statement] = STATE(2715), + [sym_enew_statement] = STATE(2715), + [sym_find_statement] = STATE(2715), + [sym_ex_statement] = STATE(2715), + [sym_visual_statement] = STATE(2715), + [sym_view_statement] = STATE(2715), [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [82] = { - [sym__statement] = STATE(2681), - [sym_unknown_builtin_statement] = STATE(2681), - [sym_return_statement] = STATE(2681), - [sym_break_statement] = STATE(2681), - [sym_continue_statement] = STATE(2681), - [sym_normal_statement] = STATE(2681), - [sym_setfiletype_statement] = STATE(2681), - [sym_options_statement] = STATE(2681), - [sym_startinsert_statement] = STATE(2681), - [sym_stopinsert_statement] = STATE(2681), - [sym_scriptencoding_statement] = STATE(2681), - [sym_cnext_statement] = STATE(2681), - [sym_cprevious_statement] = STATE(2681), - [sym_runtime_statement] = STATE(2681), - [sym_wincmd_statement] = STATE(2681), - [sym_source_statement] = STATE(2681), - [sym_global_statement] = STATE(2681), - [sym_filetype_statement] = STATE(2681), - [sym_colorscheme_statement] = STATE(2681), - [sym_lua_statement] = STATE(2681), - [sym_ruby_statement] = STATE(2681), - [sym_python_statement] = STATE(2681), - [sym_perl_statement] = STATE(2681), - [sym_for_loop] = STATE(2681), - [sym_while_loop] = STATE(2681), - [sym_if_statement] = STATE(2681), - [sym_try_statement] = STATE(2681), - [sym_throw_statement] = STATE(2681), - [sym_bang_filter_statement] = STATE(2681), - [sym_let_statement] = STATE(2681), - [sym_const_statement] = STATE(2681), - [sym_set_statement] = STATE(2681), - [sym_setlocal_statement] = STATE(2681), - [sym_unlet_statement] = STATE(2681), - [sym_call_statement] = STATE(2681), - [sym_echo_statement] = STATE(2681), - [sym_echon_statement] = STATE(2681), - [sym_echohl_statement] = STATE(2681), - [sym_echomsg_statement] = STATE(2681), - [sym_echoerr_statement] = STATE(2681), - [sym_execute_statement] = STATE(2681), - [sym_silent_statement] = STATE(2681), - [sym_vertical_statement] = STATE(2681), - [sym_topleft_statement] = STATE(2681), - [sym_botright_statement] = STATE(2681), - [sym_aboveleft_statement] = STATE(2681), - [sym_belowright_statement] = STATE(2681), - [sym_user_command] = STATE(2681), - [sym_function_definition] = STATE(2681), - [sym_range_statement] = STATE(2681), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2681), - [sym_map_statement] = STATE(2681), - [sym_sign_statement] = STATE(2681), - [sym_eval_statement] = STATE(2681), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2681), - [sym_augroup_statement] = STATE(2681), - [sym_command_statement] = STATE(2681), - [sym_comclear_statement] = STATE(2681), - [sym_delcommand_statement] = STATE(2681), - [sym_highlight_statement] = STATE(2681), - [sym_syntax_statement] = STATE(2681), - [sym_edit_statement] = STATE(2681), - [sym_enew_statement] = STATE(2681), - [sym_find_statement] = STATE(2681), - [sym_ex_statement] = STATE(2681), - [sym_visual_statement] = STATE(2681), - [sym_view_statement] = STATE(2681), - [aux_sym__statement_repeat1] = STATE(92), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -66298,447 +66879,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [83] = { - [sym__statement] = STATE(2402), - [sym_unknown_builtin_statement] = STATE(2402), - [sym_return_statement] = STATE(2402), - [sym_break_statement] = STATE(2402), - [sym_continue_statement] = STATE(2402), - [sym_normal_statement] = STATE(2402), - [sym_setfiletype_statement] = STATE(2402), - [sym_options_statement] = STATE(2402), - [sym_startinsert_statement] = STATE(2402), - [sym_stopinsert_statement] = STATE(2402), - [sym_scriptencoding_statement] = STATE(2402), - [sym_cnext_statement] = STATE(2402), - [sym_cprevious_statement] = STATE(2402), - [sym_runtime_statement] = STATE(2402), - [sym_wincmd_statement] = STATE(2402), - [sym_source_statement] = STATE(2402), - [sym_global_statement] = STATE(2402), - [sym_filetype_statement] = STATE(2402), - [sym_colorscheme_statement] = STATE(2402), - [sym_lua_statement] = STATE(2402), - [sym_ruby_statement] = STATE(2402), - [sym_python_statement] = STATE(2402), - [sym_perl_statement] = STATE(2402), - [sym_for_loop] = STATE(2402), - [sym_while_loop] = STATE(2402), - [sym_if_statement] = STATE(2402), - [sym_try_statement] = STATE(2402), - [sym_throw_statement] = STATE(2402), - [sym_bang_filter_statement] = STATE(2402), - [sym_let_statement] = STATE(2402), - [sym_const_statement] = STATE(2402), - [sym_set_statement] = STATE(2402), - [sym_setlocal_statement] = STATE(2402), - [sym_unlet_statement] = STATE(2402), - [sym_call_statement] = STATE(2402), - [sym_echo_statement] = STATE(2402), - [sym_echon_statement] = STATE(2402), - [sym_echohl_statement] = STATE(2402), - [sym_echomsg_statement] = STATE(2402), - [sym_echoerr_statement] = STATE(2402), - [sym_execute_statement] = STATE(2402), - [sym_silent_statement] = STATE(2402), - [sym_vertical_statement] = STATE(2402), - [sym_topleft_statement] = STATE(2402), - [sym_botright_statement] = STATE(2402), - [sym_aboveleft_statement] = STATE(2402), - [sym_belowright_statement] = STATE(2402), - [sym_user_command] = STATE(2402), - [sym_function_definition] = STATE(2402), - [sym_range_statement] = STATE(2402), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2402), - [sym_map_statement] = STATE(2402), - [sym_sign_statement] = STATE(2402), - [sym_eval_statement] = STATE(2402), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2402), - [sym_augroup_statement] = STATE(2402), - [sym_command_statement] = STATE(2402), - [sym_comclear_statement] = STATE(2402), - [sym_delcommand_statement] = STATE(2402), - [sym_highlight_statement] = STATE(2402), - [sym_syntax_statement] = STATE(2402), - [sym_edit_statement] = STATE(2402), - [sym_enew_statement] = STATE(2402), - [sym_find_statement] = STATE(2402), - [sym_ex_statement] = STATE(2402), - [sym_visual_statement] = STATE(2402), - [sym_view_statement] = STATE(2402), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), + [86] = { + [sym__statement] = STATE(2379), + [sym_unknown_builtin_statement] = STATE(2379), + [sym_return_statement] = STATE(2379), + [sym_break_statement] = STATE(2379), + [sym_continue_statement] = STATE(2379), + [sym_normal_statement] = STATE(2379), + [sym_setfiletype_statement] = STATE(2379), + [sym_options_statement] = STATE(2379), + [sym_startinsert_statement] = STATE(2379), + [sym_stopinsert_statement] = STATE(2379), + [sym_scriptencoding_statement] = STATE(2379), + [sym_cnext_statement] = STATE(2379), + [sym_cprevious_statement] = STATE(2379), + [sym_runtime_statement] = STATE(2379), + [sym_wincmd_statement] = STATE(2379), + [sym_source_statement] = STATE(2379), + [sym_global_statement] = STATE(2379), + [sym_filetype_statement] = STATE(2379), + [sym_colorscheme_statement] = STATE(2379), + [sym_lua_statement] = STATE(2379), + [sym_ruby_statement] = STATE(2379), + [sym_python_statement] = STATE(2379), + [sym_perl_statement] = STATE(2379), + [sym_for_loop] = STATE(2379), + [sym_while_loop] = STATE(2379), + [sym_if_statement] = STATE(2379), + [sym_try_statement] = STATE(2379), + [sym_throw_statement] = STATE(2379), + [sym_bang_filter_statement] = STATE(2379), + [sym_let_statement] = STATE(2379), + [sym_const_statement] = STATE(2379), + [sym_set_statement] = STATE(2379), + [sym_setlocal_statement] = STATE(2379), + [sym_unlet_statement] = STATE(2379), + [sym_call_statement] = STATE(2379), + [sym_echo_statement] = STATE(2379), + [sym_echon_statement] = STATE(2379), + [sym_echohl_statement] = STATE(2379), + [sym_echomsg_statement] = STATE(2379), + [sym_echoerr_statement] = STATE(2379), + [sym_execute_statement] = STATE(2379), + [sym_silent_statement] = STATE(2379), + [sym_vertical_statement] = STATE(2379), + [sym_topleft_statement] = STATE(2379), + [sym_botright_statement] = STATE(2379), + [sym_aboveleft_statement] = STATE(2379), + [sym_belowright_statement] = STATE(2379), + [sym_user_command] = STATE(2379), + [sym_function_definition] = STATE(2379), + [sym_range_statement] = STATE(2379), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2379), + [sym_map_statement] = STATE(2379), + [sym_sign_statement] = STATE(2379), + [sym_eval_statement] = STATE(2379), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2379), + [sym_augroup_statement] = STATE(2379), + [sym_command_statement] = STATE(2379), + [sym_comclear_statement] = STATE(2379), + [sym_delcommand_statement] = STATE(2379), + [sym_highlight_statement] = STATE(2379), + [sym_syntax_statement] = STATE(2379), + [sym_edit_statement] = STATE(2379), + [sym_enew_statement] = STATE(2379), + [sym_find_statement] = STATE(2379), + [sym_ex_statement] = STATE(2379), + [sym_visual_statement] = STATE(2379), + [sym_view_statement] = STATE(2379), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, - [84] = { - [sym__statement] = STATE(2348), - [sym_unknown_builtin_statement] = STATE(2348), - [sym_return_statement] = STATE(2348), - [sym_break_statement] = STATE(2348), - [sym_continue_statement] = STATE(2348), - [sym_normal_statement] = STATE(2348), - [sym_setfiletype_statement] = STATE(2348), - [sym_options_statement] = STATE(2348), - [sym_startinsert_statement] = STATE(2348), - [sym_stopinsert_statement] = STATE(2348), - [sym_scriptencoding_statement] = STATE(2348), - [sym_cnext_statement] = STATE(2348), - [sym_cprevious_statement] = STATE(2348), - [sym_runtime_statement] = STATE(2348), - [sym_wincmd_statement] = STATE(2348), - [sym_source_statement] = STATE(2348), - [sym_global_statement] = STATE(2348), - [sym_filetype_statement] = STATE(2348), - [sym_colorscheme_statement] = STATE(2348), - [sym_lua_statement] = STATE(2348), - [sym_ruby_statement] = STATE(2348), - [sym_python_statement] = STATE(2348), - [sym_perl_statement] = STATE(2348), - [sym_for_loop] = STATE(2348), - [sym_while_loop] = STATE(2348), - [sym_if_statement] = STATE(2348), - [sym_try_statement] = STATE(2348), - [sym_throw_statement] = STATE(2348), - [sym_bang_filter_statement] = STATE(2348), - [sym_let_statement] = STATE(2348), - [sym_const_statement] = STATE(2348), - [sym_set_statement] = STATE(2348), - [sym_setlocal_statement] = STATE(2348), - [sym_unlet_statement] = STATE(2348), - [sym_call_statement] = STATE(2348), - [sym_echo_statement] = STATE(2348), - [sym_echon_statement] = STATE(2348), - [sym_echohl_statement] = STATE(2348), - [sym_echomsg_statement] = STATE(2348), - [sym_echoerr_statement] = STATE(2348), - [sym_execute_statement] = STATE(2348), - [sym_silent_statement] = STATE(2348), - [sym_vertical_statement] = STATE(2348), - [sym_topleft_statement] = STATE(2348), - [sym_botright_statement] = STATE(2348), - [sym_aboveleft_statement] = STATE(2348), - [sym_belowright_statement] = STATE(2348), - [sym_user_command] = STATE(2348), - [sym_function_definition] = STATE(2348), - [sym_range_statement] = STATE(2348), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2348), - [sym_map_statement] = STATE(2348), - [sym_sign_statement] = STATE(2348), - [sym_eval_statement] = STATE(2348), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2348), - [sym_augroup_statement] = STATE(2348), - [sym_command_statement] = STATE(2348), - [sym_comclear_statement] = STATE(2348), - [sym_delcommand_statement] = STATE(2348), - [sym_highlight_statement] = STATE(2348), - [sym_syntax_statement] = STATE(2348), - [sym_edit_statement] = STATE(2348), - [sym_enew_statement] = STATE(2348), - [sym_find_statement] = STATE(2348), - [sym_ex_statement] = STATE(2348), - [sym_visual_statement] = STATE(2348), - [sym_view_statement] = STATE(2348), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), + [87] = { + [sym__statement] = STATE(2531), + [sym_unknown_builtin_statement] = STATE(2531), + [sym_return_statement] = STATE(2531), + [sym_break_statement] = STATE(2531), + [sym_continue_statement] = STATE(2531), + [sym_normal_statement] = STATE(2531), + [sym_setfiletype_statement] = STATE(2531), + [sym_options_statement] = STATE(2531), + [sym_startinsert_statement] = STATE(2531), + [sym_stopinsert_statement] = STATE(2531), + [sym_scriptencoding_statement] = STATE(2531), + [sym_cnext_statement] = STATE(2531), + [sym_cprevious_statement] = STATE(2531), + [sym_runtime_statement] = STATE(2531), + [sym_wincmd_statement] = STATE(2531), + [sym_source_statement] = STATE(2531), + [sym_global_statement] = STATE(2531), + [sym_filetype_statement] = STATE(2531), + [sym_colorscheme_statement] = STATE(2531), + [sym_lua_statement] = STATE(2531), + [sym_ruby_statement] = STATE(2531), + [sym_python_statement] = STATE(2531), + [sym_perl_statement] = STATE(2531), + [sym_for_loop] = STATE(2531), + [sym_while_loop] = STATE(2531), + [sym_if_statement] = STATE(2531), + [sym_try_statement] = STATE(2531), + [sym_throw_statement] = STATE(2531), + [sym_bang_filter_statement] = STATE(2531), + [sym_let_statement] = STATE(2531), + [sym_const_statement] = STATE(2531), + [sym_set_statement] = STATE(2531), + [sym_setlocal_statement] = STATE(2531), + [sym_unlet_statement] = STATE(2531), + [sym_call_statement] = STATE(2531), + [sym_echo_statement] = STATE(2531), + [sym_echon_statement] = STATE(2531), + [sym_echohl_statement] = STATE(2531), + [sym_echomsg_statement] = STATE(2531), + [sym_echoerr_statement] = STATE(2531), + [sym_execute_statement] = STATE(2531), + [sym_silent_statement] = STATE(2531), + [sym_vertical_statement] = STATE(2531), + [sym_topleft_statement] = STATE(2531), + [sym_botright_statement] = STATE(2531), + [sym_aboveleft_statement] = STATE(2531), + [sym_belowright_statement] = STATE(2531), + [sym_user_command] = STATE(2531), + [sym_function_definition] = STATE(2531), + [sym_range_statement] = STATE(2531), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2531), + [sym_map_statement] = STATE(2531), + [sym_sign_statement] = STATE(2531), + [sym_eval_statement] = STATE(2531), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2531), + [sym_augroup_statement] = STATE(2531), + [sym_command_statement] = STATE(2531), + [sym_comclear_statement] = STATE(2531), + [sym_delcommand_statement] = STATE(2531), + [sym_highlight_statement] = STATE(2531), + [sym_syntax_statement] = STATE(2531), + [sym_edit_statement] = STATE(2531), + [sym_enew_statement] = STATE(2531), + [sym_find_statement] = STATE(2531), + [sym_ex_statement] = STATE(2531), + [sym_visual_statement] = STATE(2531), + [sym_view_statement] = STATE(2531), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, - [85] = { - [sym__statement] = STATE(2798), - [sym_unknown_builtin_statement] = STATE(2798), - [sym_return_statement] = STATE(2798), - [sym_break_statement] = STATE(2798), - [sym_continue_statement] = STATE(2798), - [sym_normal_statement] = STATE(2798), - [sym_setfiletype_statement] = STATE(2798), - [sym_options_statement] = STATE(2798), - [sym_startinsert_statement] = STATE(2798), - [sym_stopinsert_statement] = STATE(2798), - [sym_scriptencoding_statement] = STATE(2798), - [sym_cnext_statement] = STATE(2798), - [sym_cprevious_statement] = STATE(2798), - [sym_runtime_statement] = STATE(2798), - [sym_wincmd_statement] = STATE(2798), - [sym_source_statement] = STATE(2798), - [sym_global_statement] = STATE(2798), - [sym_filetype_statement] = STATE(2798), - [sym_colorscheme_statement] = STATE(2798), - [sym_lua_statement] = STATE(2798), - [sym_ruby_statement] = STATE(2798), - [sym_python_statement] = STATE(2798), - [sym_perl_statement] = STATE(2798), - [sym_for_loop] = STATE(2798), - [sym_while_loop] = STATE(2798), - [sym_if_statement] = STATE(2798), - [sym_try_statement] = STATE(2798), - [sym_throw_statement] = STATE(2798), - [sym_bang_filter_statement] = STATE(2798), - [sym_let_statement] = STATE(2798), - [sym_const_statement] = STATE(2798), - [sym_set_statement] = STATE(2798), - [sym_setlocal_statement] = STATE(2798), - [sym_unlet_statement] = STATE(2798), - [sym_call_statement] = STATE(2798), - [sym_echo_statement] = STATE(2798), - [sym_echon_statement] = STATE(2798), - [sym_echohl_statement] = STATE(2798), - [sym_echomsg_statement] = STATE(2798), - [sym_echoerr_statement] = STATE(2798), - [sym_execute_statement] = STATE(2798), - [sym_silent_statement] = STATE(2798), - [sym_vertical_statement] = STATE(2798), - [sym_topleft_statement] = STATE(2798), - [sym_botright_statement] = STATE(2798), - [sym_aboveleft_statement] = STATE(2798), - [sym_belowright_statement] = STATE(2798), - [sym_user_command] = STATE(2798), - [sym_function_definition] = STATE(2798), - [sym_range_statement] = STATE(2798), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2798), - [sym_map_statement] = STATE(2798), - [sym_sign_statement] = STATE(2798), - [sym_eval_statement] = STATE(2798), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2798), - [sym_augroup_statement] = STATE(2798), - [sym_command_statement] = STATE(2798), - [sym_comclear_statement] = STATE(2798), - [sym_delcommand_statement] = STATE(2798), - [sym_highlight_statement] = STATE(2798), - [sym_syntax_statement] = STATE(2798), - [sym_edit_statement] = STATE(2798), - [sym_enew_statement] = STATE(2798), - [sym_find_statement] = STATE(2798), - [sym_ex_statement] = STATE(2798), - [sym_visual_statement] = STATE(2798), - [sym_view_statement] = STATE(2798), - [aux_sym__statement_repeat1] = STATE(92), + [88] = { + [sym__statement] = STATE(2716), + [sym_unknown_builtin_statement] = STATE(2716), + [sym_return_statement] = STATE(2716), + [sym_break_statement] = STATE(2716), + [sym_continue_statement] = STATE(2716), + [sym_normal_statement] = STATE(2716), + [sym_setfiletype_statement] = STATE(2716), + [sym_options_statement] = STATE(2716), + [sym_startinsert_statement] = STATE(2716), + [sym_stopinsert_statement] = STATE(2716), + [sym_scriptencoding_statement] = STATE(2716), + [sym_cnext_statement] = STATE(2716), + [sym_cprevious_statement] = STATE(2716), + [sym_runtime_statement] = STATE(2716), + [sym_wincmd_statement] = STATE(2716), + [sym_source_statement] = STATE(2716), + [sym_global_statement] = STATE(2716), + [sym_filetype_statement] = STATE(2716), + [sym_colorscheme_statement] = STATE(2716), + [sym_lua_statement] = STATE(2716), + [sym_ruby_statement] = STATE(2716), + [sym_python_statement] = STATE(2716), + [sym_perl_statement] = STATE(2716), + [sym_for_loop] = STATE(2716), + [sym_while_loop] = STATE(2716), + [sym_if_statement] = STATE(2716), + [sym_try_statement] = STATE(2716), + [sym_throw_statement] = STATE(2716), + [sym_bang_filter_statement] = STATE(2716), + [sym_let_statement] = STATE(2716), + [sym_const_statement] = STATE(2716), + [sym_set_statement] = STATE(2716), + [sym_setlocal_statement] = STATE(2716), + [sym_unlet_statement] = STATE(2716), + [sym_call_statement] = STATE(2716), + [sym_echo_statement] = STATE(2716), + [sym_echon_statement] = STATE(2716), + [sym_echohl_statement] = STATE(2716), + [sym_echomsg_statement] = STATE(2716), + [sym_echoerr_statement] = STATE(2716), + [sym_execute_statement] = STATE(2716), + [sym_silent_statement] = STATE(2716), + [sym_vertical_statement] = STATE(2716), + [sym_topleft_statement] = STATE(2716), + [sym_botright_statement] = STATE(2716), + [sym_aboveleft_statement] = STATE(2716), + [sym_belowright_statement] = STATE(2716), + [sym_user_command] = STATE(2716), + [sym_function_definition] = STATE(2716), + [sym_range_statement] = STATE(2716), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2716), + [sym_map_statement] = STATE(2716), + [sym_sign_statement] = STATE(2716), + [sym_eval_statement] = STATE(2716), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2716), + [sym_augroup_statement] = STATE(2716), + [sym_command_statement] = STATE(2716), + [sym_comclear_statement] = STATE(2716), + [sym_delcommand_statement] = STATE(2716), + [sym_highlight_statement] = STATE(2716), + [sym_syntax_statement] = STATE(2716), + [sym_edit_statement] = STATE(2716), + [sym_enew_statement] = STATE(2716), + [sym_find_statement] = STATE(2716), + [sym_ex_statement] = STATE(2716), + [sym_visual_statement] = STATE(2716), + [sym_view_statement] = STATE(2716), + [aux_sym__statement_repeat1] = STATE(93), [anon_sym_COLON] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(9), [sym_mark] = ACTIONS(11), @@ -66841,1169 +67422,806 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [86] = { - [sym__statement] = STATE(2535), - [sym_unknown_builtin_statement] = STATE(2535), - [sym_return_statement] = STATE(2535), - [sym_break_statement] = STATE(2535), - [sym_continue_statement] = STATE(2535), - [sym_normal_statement] = STATE(2535), - [sym_setfiletype_statement] = STATE(2535), - [sym_options_statement] = STATE(2535), - [sym_startinsert_statement] = STATE(2535), - [sym_stopinsert_statement] = STATE(2535), - [sym_scriptencoding_statement] = STATE(2535), - [sym_cnext_statement] = STATE(2535), - [sym_cprevious_statement] = STATE(2535), - [sym_runtime_statement] = STATE(2535), - [sym_wincmd_statement] = STATE(2535), - [sym_source_statement] = STATE(2535), - [sym_global_statement] = STATE(2535), - [sym_filetype_statement] = STATE(2535), - [sym_colorscheme_statement] = STATE(2535), - [sym_lua_statement] = STATE(2535), - [sym_ruby_statement] = STATE(2535), - [sym_python_statement] = STATE(2535), - [sym_perl_statement] = STATE(2535), - [sym_for_loop] = STATE(2535), - [sym_while_loop] = STATE(2535), - [sym_if_statement] = STATE(2535), - [sym_try_statement] = STATE(2535), - [sym_throw_statement] = STATE(2535), - [sym_bang_filter_statement] = STATE(2535), - [sym_let_statement] = STATE(2535), - [sym_const_statement] = STATE(2535), - [sym_set_statement] = STATE(2535), - [sym_setlocal_statement] = STATE(2535), - [sym_unlet_statement] = STATE(2535), - [sym_call_statement] = STATE(2535), - [sym_echo_statement] = STATE(2535), - [sym_echon_statement] = STATE(2535), - [sym_echohl_statement] = STATE(2535), - [sym_echomsg_statement] = STATE(2535), - [sym_echoerr_statement] = STATE(2535), - [sym_execute_statement] = STATE(2535), - [sym_silent_statement] = STATE(2535), - [sym_vertical_statement] = STATE(2535), - [sym_topleft_statement] = STATE(2535), - [sym_botright_statement] = STATE(2535), - [sym_aboveleft_statement] = STATE(2535), - [sym_belowright_statement] = STATE(2535), - [sym_user_command] = STATE(2535), - [sym_function_definition] = STATE(2535), - [sym_range_statement] = STATE(2535), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2535), - [sym_map_statement] = STATE(2535), - [sym_sign_statement] = STATE(2535), - [sym_eval_statement] = STATE(2535), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2535), - [sym_augroup_statement] = STATE(2535), - [sym_command_statement] = STATE(2535), - [sym_comclear_statement] = STATE(2535), - [sym_delcommand_statement] = STATE(2535), - [sym_highlight_statement] = STATE(2535), - [sym_syntax_statement] = STATE(2535), - [sym_edit_statement] = STATE(2535), - [sym_enew_statement] = STATE(2535), - [sym_find_statement] = STATE(2535), - [sym_ex_statement] = STATE(2535), - [sym_visual_statement] = STATE(2535), - [sym_view_statement] = STATE(2535), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [87] = { - [sym__statement] = STATE(2625), - [sym_unknown_builtin_statement] = STATE(2625), - [sym_return_statement] = STATE(2625), - [sym_break_statement] = STATE(2625), - [sym_continue_statement] = STATE(2625), - [sym_normal_statement] = STATE(2625), - [sym_setfiletype_statement] = STATE(2625), - [sym_options_statement] = STATE(2625), - [sym_startinsert_statement] = STATE(2625), - [sym_stopinsert_statement] = STATE(2625), - [sym_scriptencoding_statement] = STATE(2625), - [sym_cnext_statement] = STATE(2625), - [sym_cprevious_statement] = STATE(2625), - [sym_runtime_statement] = STATE(2625), - [sym_wincmd_statement] = STATE(2625), - [sym_source_statement] = STATE(2625), - [sym_global_statement] = STATE(2625), - [sym_filetype_statement] = STATE(2625), - [sym_colorscheme_statement] = STATE(2625), - [sym_lua_statement] = STATE(2625), - [sym_ruby_statement] = STATE(2625), - [sym_python_statement] = STATE(2625), - [sym_perl_statement] = STATE(2625), - [sym_for_loop] = STATE(2625), - [sym_while_loop] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_try_statement] = STATE(2625), - [sym_throw_statement] = STATE(2625), - [sym_bang_filter_statement] = STATE(2625), - [sym_let_statement] = STATE(2625), - [sym_const_statement] = STATE(2625), - [sym_set_statement] = STATE(2625), - [sym_setlocal_statement] = STATE(2625), - [sym_unlet_statement] = STATE(2625), - [sym_call_statement] = STATE(2625), - [sym_echo_statement] = STATE(2625), - [sym_echon_statement] = STATE(2625), - [sym_echohl_statement] = STATE(2625), - [sym_echomsg_statement] = STATE(2625), - [sym_echoerr_statement] = STATE(2625), - [sym_execute_statement] = STATE(2625), - [sym_silent_statement] = STATE(2625), - [sym_vertical_statement] = STATE(2625), - [sym_topleft_statement] = STATE(2625), - [sym_botright_statement] = STATE(2625), - [sym_aboveleft_statement] = STATE(2625), - [sym_belowright_statement] = STATE(2625), - [sym_user_command] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_range_statement] = STATE(2625), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2625), - [sym_map_statement] = STATE(2625), - [sym_sign_statement] = STATE(2625), - [sym_eval_statement] = STATE(2625), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2625), - [sym_augroup_statement] = STATE(2625), - [sym_command_statement] = STATE(2625), - [sym_comclear_statement] = STATE(2625), - [sym_delcommand_statement] = STATE(2625), - [sym_highlight_statement] = STATE(2625), - [sym_syntax_statement] = STATE(2625), - [sym_edit_statement] = STATE(2625), - [sym_enew_statement] = STATE(2625), - [sym_find_statement] = STATE(2625), - [sym_ex_statement] = STATE(2625), - [sym_visual_statement] = STATE(2625), - [sym_view_statement] = STATE(2625), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, - [88] = { - [sym__statement] = STATE(2459), - [sym_unknown_builtin_statement] = STATE(2459), - [sym_return_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_normal_statement] = STATE(2459), - [sym_setfiletype_statement] = STATE(2459), - [sym_options_statement] = STATE(2459), - [sym_startinsert_statement] = STATE(2459), - [sym_stopinsert_statement] = STATE(2459), - [sym_scriptencoding_statement] = STATE(2459), - [sym_cnext_statement] = STATE(2459), - [sym_cprevious_statement] = STATE(2459), - [sym_runtime_statement] = STATE(2459), - [sym_wincmd_statement] = STATE(2459), - [sym_source_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_filetype_statement] = STATE(2459), - [sym_colorscheme_statement] = STATE(2459), - [sym_lua_statement] = STATE(2459), - [sym_ruby_statement] = STATE(2459), - [sym_python_statement] = STATE(2459), - [sym_perl_statement] = STATE(2459), - [sym_for_loop] = STATE(2459), - [sym_while_loop] = STATE(2459), - [sym_if_statement] = STATE(2459), - [sym_try_statement] = STATE(2459), - [sym_throw_statement] = STATE(2459), - [sym_bang_filter_statement] = STATE(2459), - [sym_let_statement] = STATE(2459), - [sym_const_statement] = STATE(2459), - [sym_set_statement] = STATE(2459), - [sym_setlocal_statement] = STATE(2459), - [sym_unlet_statement] = STATE(2459), - [sym_call_statement] = STATE(2459), - [sym_echo_statement] = STATE(2459), - [sym_echon_statement] = STATE(2459), - [sym_echohl_statement] = STATE(2459), - [sym_echomsg_statement] = STATE(2459), - [sym_echoerr_statement] = STATE(2459), - [sym_execute_statement] = STATE(2459), - [sym_silent_statement] = STATE(2459), - [sym_vertical_statement] = STATE(2459), - [sym_topleft_statement] = STATE(2459), - [sym_botright_statement] = STATE(2459), - [sym_aboveleft_statement] = STATE(2459), - [sym_belowright_statement] = STATE(2459), - [sym_user_command] = STATE(2459), - [sym_function_definition] = STATE(2459), - [sym_range_statement] = STATE(2459), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2459), - [sym_map_statement] = STATE(2459), - [sym_sign_statement] = STATE(2459), - [sym_eval_statement] = STATE(2459), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2459), - [sym_augroup_statement] = STATE(2459), - [sym_command_statement] = STATE(2459), - [sym_comclear_statement] = STATE(2459), - [sym_delcommand_statement] = STATE(2459), - [sym_highlight_statement] = STATE(2459), - [sym_syntax_statement] = STATE(2459), - [sym_edit_statement] = STATE(2459), - [sym_enew_statement] = STATE(2459), - [sym_find_statement] = STATE(2459), - [sym_ex_statement] = STATE(2459), - [sym_visual_statement] = STATE(2459), - [sym_view_statement] = STATE(2459), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, [89] = { - [sym__statement] = STATE(2314), - [sym_unknown_builtin_statement] = STATE(2314), - [sym_return_statement] = STATE(2314), - [sym_break_statement] = STATE(2314), - [sym_continue_statement] = STATE(2314), - [sym_normal_statement] = STATE(2314), - [sym_setfiletype_statement] = STATE(2314), - [sym_options_statement] = STATE(2314), - [sym_startinsert_statement] = STATE(2314), - [sym_stopinsert_statement] = STATE(2314), - [sym_scriptencoding_statement] = STATE(2314), - [sym_cnext_statement] = STATE(2314), - [sym_cprevious_statement] = STATE(2314), - [sym_runtime_statement] = STATE(2314), - [sym_wincmd_statement] = STATE(2314), - [sym_source_statement] = STATE(2314), - [sym_global_statement] = STATE(2314), - [sym_filetype_statement] = STATE(2314), - [sym_colorscheme_statement] = STATE(2314), - [sym_lua_statement] = STATE(2314), - [sym_ruby_statement] = STATE(2314), - [sym_python_statement] = STATE(2314), - [sym_perl_statement] = STATE(2314), - [sym_for_loop] = STATE(2314), - [sym_while_loop] = STATE(2314), - [sym_if_statement] = STATE(2314), - [sym_try_statement] = STATE(2314), - [sym_throw_statement] = STATE(2314), - [sym_bang_filter_statement] = STATE(2314), - [sym_let_statement] = STATE(2314), - [sym_const_statement] = STATE(2314), - [sym_set_statement] = STATE(2314), - [sym_setlocal_statement] = STATE(2314), - [sym_unlet_statement] = STATE(2314), - [sym_call_statement] = STATE(2314), - [sym_echo_statement] = STATE(2314), - [sym_echon_statement] = STATE(2314), - [sym_echohl_statement] = STATE(2314), - [sym_echomsg_statement] = STATE(2314), - [sym_echoerr_statement] = STATE(2314), - [sym_execute_statement] = STATE(2314), - [sym_silent_statement] = STATE(2314), - [sym_vertical_statement] = STATE(2314), - [sym_topleft_statement] = STATE(2314), - [sym_botright_statement] = STATE(2314), - [sym_aboveleft_statement] = STATE(2314), - [sym_belowright_statement] = STATE(2314), - [sym_user_command] = STATE(2314), - [sym_function_definition] = STATE(2314), - [sym_range_statement] = STATE(2314), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2314), - [sym_map_statement] = STATE(2314), - [sym_sign_statement] = STATE(2314), - [sym_eval_statement] = STATE(2314), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2314), - [sym_augroup_statement] = STATE(2314), - [sym_command_statement] = STATE(2314), - [sym_comclear_statement] = STATE(2314), - [sym_delcommand_statement] = STATE(2314), - [sym_highlight_statement] = STATE(2314), - [sym_syntax_statement] = STATE(2314), - [sym_edit_statement] = STATE(2314), - [sym_enew_statement] = STATE(2314), - [sym_find_statement] = STATE(2314), - [sym_ex_statement] = STATE(2314), - [sym_visual_statement] = STATE(2314), - [sym_view_statement] = STATE(2314), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), + [sym__statement] = STATE(2355), + [sym_unknown_builtin_statement] = STATE(2355), + [sym_return_statement] = STATE(2355), + [sym_break_statement] = STATE(2355), + [sym_continue_statement] = STATE(2355), + [sym_normal_statement] = STATE(2355), + [sym_setfiletype_statement] = STATE(2355), + [sym_options_statement] = STATE(2355), + [sym_startinsert_statement] = STATE(2355), + [sym_stopinsert_statement] = STATE(2355), + [sym_scriptencoding_statement] = STATE(2355), + [sym_cnext_statement] = STATE(2355), + [sym_cprevious_statement] = STATE(2355), + [sym_runtime_statement] = STATE(2355), + [sym_wincmd_statement] = STATE(2355), + [sym_source_statement] = STATE(2355), + [sym_global_statement] = STATE(2355), + [sym_filetype_statement] = STATE(2355), + [sym_colorscheme_statement] = STATE(2355), + [sym_lua_statement] = STATE(2355), + [sym_ruby_statement] = STATE(2355), + [sym_python_statement] = STATE(2355), + [sym_perl_statement] = STATE(2355), + [sym_for_loop] = STATE(2355), + [sym_while_loop] = STATE(2355), + [sym_if_statement] = STATE(2355), + [sym_try_statement] = STATE(2355), + [sym_throw_statement] = STATE(2355), + [sym_bang_filter_statement] = STATE(2355), + [sym_let_statement] = STATE(2355), + [sym_const_statement] = STATE(2355), + [sym_set_statement] = STATE(2355), + [sym_setlocal_statement] = STATE(2355), + [sym_unlet_statement] = STATE(2355), + [sym_call_statement] = STATE(2355), + [sym_echo_statement] = STATE(2355), + [sym_echon_statement] = STATE(2355), + [sym_echohl_statement] = STATE(2355), + [sym_echomsg_statement] = STATE(2355), + [sym_echoerr_statement] = STATE(2355), + [sym_execute_statement] = STATE(2355), + [sym_silent_statement] = STATE(2355), + [sym_vertical_statement] = STATE(2355), + [sym_topleft_statement] = STATE(2355), + [sym_botright_statement] = STATE(2355), + [sym_aboveleft_statement] = STATE(2355), + [sym_belowright_statement] = STATE(2355), + [sym_user_command] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_range_statement] = STATE(2355), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2355), + [sym_map_statement] = STATE(2355), + [sym_sign_statement] = STATE(2355), + [sym_eval_statement] = STATE(2355), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2355), + [sym_augroup_statement] = STATE(2355), + [sym_command_statement] = STATE(2355), + [sym_comclear_statement] = STATE(2355), + [sym_delcommand_statement] = STATE(2355), + [sym_highlight_statement] = STATE(2355), + [sym_syntax_statement] = STATE(2355), + [sym_edit_statement] = STATE(2355), + [sym_enew_statement] = STATE(2355), + [sym_find_statement] = STATE(2355), + [sym_ex_statement] = STATE(2355), + [sym_visual_statement] = STATE(2355), + [sym_view_statement] = STATE(2355), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, [90] = { - [sym__statement] = STATE(2331), - [sym_unknown_builtin_statement] = STATE(2331), - [sym_return_statement] = STATE(2331), - [sym_break_statement] = STATE(2331), - [sym_continue_statement] = STATE(2331), - [sym_normal_statement] = STATE(2331), - [sym_setfiletype_statement] = STATE(2331), - [sym_options_statement] = STATE(2331), - [sym_startinsert_statement] = STATE(2331), - [sym_stopinsert_statement] = STATE(2331), - [sym_scriptencoding_statement] = STATE(2331), - [sym_cnext_statement] = STATE(2331), - [sym_cprevious_statement] = STATE(2331), - [sym_runtime_statement] = STATE(2331), - [sym_wincmd_statement] = STATE(2331), - [sym_source_statement] = STATE(2331), - [sym_global_statement] = STATE(2331), - [sym_filetype_statement] = STATE(2331), - [sym_colorscheme_statement] = STATE(2331), - [sym_lua_statement] = STATE(2331), - [sym_ruby_statement] = STATE(2331), - [sym_python_statement] = STATE(2331), - [sym_perl_statement] = STATE(2331), - [sym_for_loop] = STATE(2331), - [sym_while_loop] = STATE(2331), - [sym_if_statement] = STATE(2331), - [sym_try_statement] = STATE(2331), - [sym_throw_statement] = STATE(2331), - [sym_bang_filter_statement] = STATE(2331), - [sym_let_statement] = STATE(2331), - [sym_const_statement] = STATE(2331), - [sym_set_statement] = STATE(2331), - [sym_setlocal_statement] = STATE(2331), - [sym_unlet_statement] = STATE(2331), - [sym_call_statement] = STATE(2331), - [sym_echo_statement] = STATE(2331), - [sym_echon_statement] = STATE(2331), - [sym_echohl_statement] = STATE(2331), - [sym_echomsg_statement] = STATE(2331), - [sym_echoerr_statement] = STATE(2331), - [sym_execute_statement] = STATE(2331), - [sym_silent_statement] = STATE(2331), - [sym_vertical_statement] = STATE(2331), - [sym_topleft_statement] = STATE(2331), - [sym_botright_statement] = STATE(2331), - [sym_aboveleft_statement] = STATE(2331), - [sym_belowright_statement] = STATE(2331), - [sym_user_command] = STATE(2331), - [sym_function_definition] = STATE(2331), - [sym_range_statement] = STATE(2331), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2331), - [sym_map_statement] = STATE(2331), - [sym_sign_statement] = STATE(2331), - [sym_eval_statement] = STATE(2331), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2331), - [sym_augroup_statement] = STATE(2331), - [sym_command_statement] = STATE(2331), - [sym_comclear_statement] = STATE(2331), - [sym_delcommand_statement] = STATE(2331), - [sym_highlight_statement] = STATE(2331), - [sym_syntax_statement] = STATE(2331), - [sym_edit_statement] = STATE(2331), - [sym_enew_statement] = STATE(2331), - [sym_find_statement] = STATE(2331), - [sym_ex_statement] = STATE(2331), - [sym_visual_statement] = STATE(2331), - [sym_view_statement] = STATE(2331), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), + [sym__statement] = STATE(2347), + [sym_unknown_builtin_statement] = STATE(2347), + [sym_return_statement] = STATE(2347), + [sym_break_statement] = STATE(2347), + [sym_continue_statement] = STATE(2347), + [sym_normal_statement] = STATE(2347), + [sym_setfiletype_statement] = STATE(2347), + [sym_options_statement] = STATE(2347), + [sym_startinsert_statement] = STATE(2347), + [sym_stopinsert_statement] = STATE(2347), + [sym_scriptencoding_statement] = STATE(2347), + [sym_cnext_statement] = STATE(2347), + [sym_cprevious_statement] = STATE(2347), + [sym_runtime_statement] = STATE(2347), + [sym_wincmd_statement] = STATE(2347), + [sym_source_statement] = STATE(2347), + [sym_global_statement] = STATE(2347), + [sym_filetype_statement] = STATE(2347), + [sym_colorscheme_statement] = STATE(2347), + [sym_lua_statement] = STATE(2347), + [sym_ruby_statement] = STATE(2347), + [sym_python_statement] = STATE(2347), + [sym_perl_statement] = STATE(2347), + [sym_for_loop] = STATE(2347), + [sym_while_loop] = STATE(2347), + [sym_if_statement] = STATE(2347), + [sym_try_statement] = STATE(2347), + [sym_throw_statement] = STATE(2347), + [sym_bang_filter_statement] = STATE(2347), + [sym_let_statement] = STATE(2347), + [sym_const_statement] = STATE(2347), + [sym_set_statement] = STATE(2347), + [sym_setlocal_statement] = STATE(2347), + [sym_unlet_statement] = STATE(2347), + [sym_call_statement] = STATE(2347), + [sym_echo_statement] = STATE(2347), + [sym_echon_statement] = STATE(2347), + [sym_echohl_statement] = STATE(2347), + [sym_echomsg_statement] = STATE(2347), + [sym_echoerr_statement] = STATE(2347), + [sym_execute_statement] = STATE(2347), + [sym_silent_statement] = STATE(2347), + [sym_vertical_statement] = STATE(2347), + [sym_topleft_statement] = STATE(2347), + [sym_botright_statement] = STATE(2347), + [sym_aboveleft_statement] = STATE(2347), + [sym_belowright_statement] = STATE(2347), + [sym_user_command] = STATE(2347), + [sym_function_definition] = STATE(2347), + [sym_range_statement] = STATE(2347), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2347), + [sym_map_statement] = STATE(2347), + [sym_sign_statement] = STATE(2347), + [sym_eval_statement] = STATE(2347), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2347), + [sym_augroup_statement] = STATE(2347), + [sym_command_statement] = STATE(2347), + [sym_comclear_statement] = STATE(2347), + [sym_delcommand_statement] = STATE(2347), + [sym_highlight_statement] = STATE(2347), + [sym_syntax_statement] = STATE(2347), + [sym_edit_statement] = STATE(2347), + [sym_enew_statement] = STATE(2347), + [sym_find_statement] = STATE(2347), + [sym_ex_statement] = STATE(2347), + [sym_visual_statement] = STATE(2347), + [sym_view_statement] = STATE(2347), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, [91] = { - [sym__statement] = STATE(2313), - [sym_unknown_builtin_statement] = STATE(2313), - [sym_return_statement] = STATE(2313), - [sym_break_statement] = STATE(2313), - [sym_continue_statement] = STATE(2313), - [sym_normal_statement] = STATE(2313), - [sym_setfiletype_statement] = STATE(2313), - [sym_options_statement] = STATE(2313), - [sym_startinsert_statement] = STATE(2313), - [sym_stopinsert_statement] = STATE(2313), - [sym_scriptencoding_statement] = STATE(2313), - [sym_cnext_statement] = STATE(2313), - [sym_cprevious_statement] = STATE(2313), - [sym_runtime_statement] = STATE(2313), - [sym_wincmd_statement] = STATE(2313), - [sym_source_statement] = STATE(2313), - [sym_global_statement] = STATE(2313), - [sym_filetype_statement] = STATE(2313), - [sym_colorscheme_statement] = STATE(2313), - [sym_lua_statement] = STATE(2313), - [sym_ruby_statement] = STATE(2313), - [sym_python_statement] = STATE(2313), - [sym_perl_statement] = STATE(2313), - [sym_for_loop] = STATE(2313), - [sym_while_loop] = STATE(2313), - [sym_if_statement] = STATE(2313), - [sym_try_statement] = STATE(2313), - [sym_throw_statement] = STATE(2313), - [sym_bang_filter_statement] = STATE(2313), - [sym_let_statement] = STATE(2313), - [sym_const_statement] = STATE(2313), - [sym_set_statement] = STATE(2313), - [sym_setlocal_statement] = STATE(2313), - [sym_unlet_statement] = STATE(2313), - [sym_call_statement] = STATE(2313), - [sym_echo_statement] = STATE(2313), - [sym_echon_statement] = STATE(2313), - [sym_echohl_statement] = STATE(2313), - [sym_echomsg_statement] = STATE(2313), - [sym_echoerr_statement] = STATE(2313), - [sym_execute_statement] = STATE(2313), - [sym_silent_statement] = STATE(2313), - [sym_vertical_statement] = STATE(2313), - [sym_topleft_statement] = STATE(2313), - [sym_botright_statement] = STATE(2313), - [sym_aboveleft_statement] = STATE(2313), - [sym_belowright_statement] = STATE(2313), - [sym_user_command] = STATE(2313), - [sym_function_definition] = STATE(2313), - [sym_range_statement] = STATE(2313), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2313), - [sym_map_statement] = STATE(2313), - [sym_sign_statement] = STATE(2313), - [sym_eval_statement] = STATE(2313), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2313), - [sym_augroup_statement] = STATE(2313), - [sym_command_statement] = STATE(2313), - [sym_comclear_statement] = STATE(2313), - [sym_delcommand_statement] = STATE(2313), - [sym_highlight_statement] = STATE(2313), - [sym_syntax_statement] = STATE(2313), - [sym_edit_statement] = STATE(2313), - [sym_enew_statement] = STATE(2313), - [sym_find_statement] = STATE(2313), - [sym_ex_statement] = STATE(2313), - [sym_visual_statement] = STATE(2313), - [sym_view_statement] = STATE(2313), - [aux_sym__statement_repeat1] = STATE(93), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), + [sym__statement] = STATE(2344), + [sym_unknown_builtin_statement] = STATE(2344), + [sym_return_statement] = STATE(2344), + [sym_break_statement] = STATE(2344), + [sym_continue_statement] = STATE(2344), + [sym_normal_statement] = STATE(2344), + [sym_setfiletype_statement] = STATE(2344), + [sym_options_statement] = STATE(2344), + [sym_startinsert_statement] = STATE(2344), + [sym_stopinsert_statement] = STATE(2344), + [sym_scriptencoding_statement] = STATE(2344), + [sym_cnext_statement] = STATE(2344), + [sym_cprevious_statement] = STATE(2344), + [sym_runtime_statement] = STATE(2344), + [sym_wincmd_statement] = STATE(2344), + [sym_source_statement] = STATE(2344), + [sym_global_statement] = STATE(2344), + [sym_filetype_statement] = STATE(2344), + [sym_colorscheme_statement] = STATE(2344), + [sym_lua_statement] = STATE(2344), + [sym_ruby_statement] = STATE(2344), + [sym_python_statement] = STATE(2344), + [sym_perl_statement] = STATE(2344), + [sym_for_loop] = STATE(2344), + [sym_while_loop] = STATE(2344), + [sym_if_statement] = STATE(2344), + [sym_try_statement] = STATE(2344), + [sym_throw_statement] = STATE(2344), + [sym_bang_filter_statement] = STATE(2344), + [sym_let_statement] = STATE(2344), + [sym_const_statement] = STATE(2344), + [sym_set_statement] = STATE(2344), + [sym_setlocal_statement] = STATE(2344), + [sym_unlet_statement] = STATE(2344), + [sym_call_statement] = STATE(2344), + [sym_echo_statement] = STATE(2344), + [sym_echon_statement] = STATE(2344), + [sym_echohl_statement] = STATE(2344), + [sym_echomsg_statement] = STATE(2344), + [sym_echoerr_statement] = STATE(2344), + [sym_execute_statement] = STATE(2344), + [sym_silent_statement] = STATE(2344), + [sym_vertical_statement] = STATE(2344), + [sym_topleft_statement] = STATE(2344), + [sym_botright_statement] = STATE(2344), + [sym_aboveleft_statement] = STATE(2344), + [sym_belowright_statement] = STATE(2344), + [sym_user_command] = STATE(2344), + [sym_function_definition] = STATE(2344), + [sym_range_statement] = STATE(2344), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2344), + [sym_map_statement] = STATE(2344), + [sym_sign_statement] = STATE(2344), + [sym_eval_statement] = STATE(2344), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2344), + [sym_augroup_statement] = STATE(2344), + [sym_command_statement] = STATE(2344), + [sym_comclear_statement] = STATE(2344), + [sym_delcommand_statement] = STATE(2344), + [sym_highlight_statement] = STATE(2344), + [sym_syntax_statement] = STATE(2344), + [sym_edit_statement] = STATE(2344), + [sym_enew_statement] = STATE(2344), + [sym_find_statement] = STATE(2344), + [sym_ex_statement] = STATE(2344), + [sym_visual_statement] = STATE(2344), + [sym_view_statement] = STATE(2344), + [aux_sym__statement_repeat1] = STATE(92), + [anon_sym_COLON] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), [sym__line_continuation] = ACTIONS(3), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), }, [92] = { - [sym_unknown_builtin_statement] = STATE(2714), - [sym_return_statement] = STATE(2714), - [sym_break_statement] = STATE(2714), - [sym_continue_statement] = STATE(2714), - [sym_normal_statement] = STATE(2714), - [sym_setfiletype_statement] = STATE(2714), - [sym_options_statement] = STATE(2714), - [sym_startinsert_statement] = STATE(2714), - [sym_stopinsert_statement] = STATE(2714), - [sym_scriptencoding_statement] = STATE(2714), - [sym_cnext_statement] = STATE(2714), - [sym_cprevious_statement] = STATE(2714), - [sym_runtime_statement] = STATE(2714), - [sym_wincmd_statement] = STATE(2714), - [sym_source_statement] = STATE(2714), - [sym_global_statement] = STATE(2714), - [sym_filetype_statement] = STATE(2714), - [sym_colorscheme_statement] = STATE(2714), - [sym_lua_statement] = STATE(2714), - [sym_ruby_statement] = STATE(2714), - [sym_python_statement] = STATE(2714), - [sym_perl_statement] = STATE(2714), - [sym_for_loop] = STATE(2714), - [sym_while_loop] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_try_statement] = STATE(2714), - [sym_throw_statement] = STATE(2714), - [sym_bang_filter_statement] = STATE(2714), - [sym_let_statement] = STATE(2714), - [sym_const_statement] = STATE(2714), - [sym_set_statement] = STATE(2714), - [sym_setlocal_statement] = STATE(2714), - [sym_unlet_statement] = STATE(2714), - [sym_call_statement] = STATE(2714), - [sym_echo_statement] = STATE(2714), - [sym_echon_statement] = STATE(2714), - [sym_echohl_statement] = STATE(2714), - [sym_echomsg_statement] = STATE(2714), - [sym_echoerr_statement] = STATE(2714), - [sym_execute_statement] = STATE(2714), - [sym_silent_statement] = STATE(2714), - [sym_vertical_statement] = STATE(2714), - [sym_topleft_statement] = STATE(2714), - [sym_botright_statement] = STATE(2714), - [sym_aboveleft_statement] = STATE(2714), - [sym_belowright_statement] = STATE(2714), - [sym_user_command] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_range_statement] = STATE(2714), - [sym__range] = STATE(1657), - [sym__range_explicit] = STATE(1819), - [sym__range_marker] = STATE(1666), - [sym_current_line] = STATE(1666), - [sym_next_line] = STATE(1666), - [sym_last_line] = STATE(1666), - [sym_previous_pattern] = STATE(1666), - [sym_register_statement] = STATE(2714), - [sym_map_statement] = STATE(2714), - [sym_sign_statement] = STATE(2714), - [sym_eval_statement] = STATE(2714), - [sym__autocmd_define] = STATE(2684), - [sym__autocmd_remove] = STATE(2685), - [sym__autocmd_list] = STATE(2688), - [sym_autocmd_statement] = STATE(2714), - [sym_augroup_statement] = STATE(2714), - [sym_command_statement] = STATE(2714), - [sym_comclear_statement] = STATE(2714), - [sym_delcommand_statement] = STATE(2714), - [sym_highlight_statement] = STATE(2714), - [sym_syntax_statement] = STATE(2714), - [sym_edit_statement] = STATE(2714), - [sym_enew_statement] = STATE(2714), - [sym_find_statement] = STATE(2714), - [sym_ex_statement] = STATE(2714), - [sym_visual_statement] = STATE(2714), - [sym_view_statement] = STATE(2714), + [sym_unknown_builtin_statement] = STATE(2596), + [sym_return_statement] = STATE(2596), + [sym_break_statement] = STATE(2596), + [sym_continue_statement] = STATE(2596), + [sym_normal_statement] = STATE(2596), + [sym_setfiletype_statement] = STATE(2596), + [sym_options_statement] = STATE(2596), + [sym_startinsert_statement] = STATE(2596), + [sym_stopinsert_statement] = STATE(2596), + [sym_scriptencoding_statement] = STATE(2596), + [sym_cnext_statement] = STATE(2596), + [sym_cprevious_statement] = STATE(2596), + [sym_runtime_statement] = STATE(2596), + [sym_wincmd_statement] = STATE(2596), + [sym_source_statement] = STATE(2596), + [sym_global_statement] = STATE(2596), + [sym_filetype_statement] = STATE(2596), + [sym_colorscheme_statement] = STATE(2596), + [sym_lua_statement] = STATE(2596), + [sym_ruby_statement] = STATE(2596), + [sym_python_statement] = STATE(2596), + [sym_perl_statement] = STATE(2596), + [sym_for_loop] = STATE(2596), + [sym_while_loop] = STATE(2596), + [sym_if_statement] = STATE(2596), + [sym_try_statement] = STATE(2596), + [sym_throw_statement] = STATE(2596), + [sym_bang_filter_statement] = STATE(2596), + [sym_let_statement] = STATE(2596), + [sym_const_statement] = STATE(2596), + [sym_set_statement] = STATE(2596), + [sym_setlocal_statement] = STATE(2596), + [sym_unlet_statement] = STATE(2596), + [sym_call_statement] = STATE(2596), + [sym_echo_statement] = STATE(2596), + [sym_echon_statement] = STATE(2596), + [sym_echohl_statement] = STATE(2596), + [sym_echomsg_statement] = STATE(2596), + [sym_echoerr_statement] = STATE(2596), + [sym_execute_statement] = STATE(2596), + [sym_silent_statement] = STATE(2596), + [sym_vertical_statement] = STATE(2596), + [sym_topleft_statement] = STATE(2596), + [sym_botright_statement] = STATE(2596), + [sym_aboveleft_statement] = STATE(2596), + [sym_belowright_statement] = STATE(2596), + [sym_user_command] = STATE(2596), + [sym_function_definition] = STATE(2596), + [sym_range_statement] = STATE(2596), + [sym__range] = STATE(1618), + [sym__range_explicit] = STATE(1739), + [sym__range_marker] = STATE(1621), + [sym_current_line] = STATE(1621), + [sym_next_line] = STATE(1621), + [sym_last_line] = STATE(1621), + [sym_previous_pattern] = STATE(1621), + [sym_register_statement] = STATE(2596), + [sym_map_statement] = STATE(2596), + [sym_sign_statement] = STATE(2596), + [sym_eval_statement] = STATE(2596), + [sym__autocmd_define] = STATE(2362), + [sym__autocmd_remove] = STATE(2383), + [sym__autocmd_list] = STATE(2389), + [sym_autocmd_statement] = STATE(2596), + [sym_augroup_statement] = STATE(2596), + [sym_command_statement] = STATE(2596), + [sym_comclear_statement] = STATE(2596), + [sym_delcommand_statement] = STATE(2596), + [sym_highlight_statement] = STATE(2596), + [sym_syntax_statement] = STATE(2596), + [sym_edit_statement] = STATE(2596), + [sym_enew_statement] = STATE(2596), + [sym_find_statement] = STATE(2596), + [sym_ex_statement] = STATE(2596), + [sym_visual_statement] = STATE(2596), + [sym_view_statement] = STATE(2596), + [aux_sym__statement_repeat1] = STATE(118), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(452), + [sym_mark] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT2] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_BSLASH_SLASH] = ACTIONS(466), + [anon_sym_BSLASH_QMARK] = ACTIONS(466), + [anon_sym_BSLASH_AMP] = ACTIONS(466), + [sym_integer_literal] = ACTIONS(470), + [sym_register] = ACTIONS(472), + [sym_command_name] = ACTIONS(478), + [sym__line_continuation] = ACTIONS(3), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(480), + [sym__for] = ACTIONS(482), + [sym__while] = ACTIONS(484), + [sym__if] = ACTIONS(486), + [sym__try] = ACTIONS(488), + [sym__cnext] = ACTIONS(490), + [sym__cprevious] = ACTIONS(492), + [sym__cNext] = ACTIONS(492), + [sym__const] = ACTIONS(494), + [sym__normal] = ACTIONS(496), + [sym__return] = ACTIONS(498), + [sym__perl] = ACTIONS(500), + [sym__lua] = ACTIONS(502), + [sym__ruby] = ACTIONS(504), + [sym__python] = ACTIONS(506), + [sym__throw] = ACTIONS(508), + [sym__execute] = ACTIONS(510), + [sym__autocmd] = ACTIONS(512), + [sym__silent] = ACTIONS(514), + [sym__echo] = ACTIONS(516), + [sym__echon] = ACTIONS(518), + [sym__echohl] = ACTIONS(520), + [sym__echomsg] = ACTIONS(522), + [sym__echoerr] = ACTIONS(524), + [sym__map] = ACTIONS(526), + [sym__nmap] = ACTIONS(526), + [sym__vmap] = ACTIONS(526), + [sym__xmap] = ACTIONS(526), + [sym__smap] = ACTIONS(526), + [sym__omap] = ACTIONS(526), + [sym__imap] = ACTIONS(526), + [sym__lmap] = ACTIONS(526), + [sym__cmap] = ACTIONS(526), + [sym__tmap] = ACTIONS(526), + [sym__noremap] = ACTIONS(526), + [sym__nnoremap] = ACTIONS(526), + [sym__vnoremap] = ACTIONS(526), + [sym__xnoremap] = ACTIONS(526), + [sym__snoremap] = ACTIONS(526), + [sym__onoremap] = ACTIONS(526), + [sym__inoremap] = ACTIONS(526), + [sym__lnoremap] = ACTIONS(526), + [sym__cnoremap] = ACTIONS(526), + [sym__tnoremap] = ACTIONS(526), + [sym__augroup] = ACTIONS(528), + [sym__highlight] = ACTIONS(530), + [sym__syntax] = ACTIONS(532), + [sym__set] = ACTIONS(534), + [sym__setlocal] = ACTIONS(536), + [sym__setfiletype] = ACTIONS(538), + [sym__browse] = ACTIONS(540), + [sym__options] = ACTIONS(542), + [sym__startinsert] = ACTIONS(544), + [sym__stopinsert] = ACTIONS(546), + [sym__scriptencoding] = ACTIONS(548), + [sym__source] = ACTIONS(550), + [sym__global] = ACTIONS(552), + [sym__colorscheme] = ACTIONS(554), + [sym__command] = ACTIONS(556), + [sym__comclear] = ACTIONS(558), + [sym__delcommand] = ACTIONS(560), + [sym__runtime] = ACTIONS(562), + [sym__wincmd] = ACTIONS(564), + [sym__sign] = ACTIONS(566), + [sym__filetype] = ACTIONS(568), + [sym__let] = ACTIONS(570), + [sym__unlet] = ACTIONS(572), + [sym__call] = ACTIONS(574), + [sym__break] = ACTIONS(576), + [sym__continue] = ACTIONS(578), + [sym__vertical] = ACTIONS(580), + [sym__leftabove] = ACTIONS(582), + [sym__aboveleft] = ACTIONS(582), + [sym__rightbelow] = ACTIONS(584), + [sym__belowright] = ACTIONS(584), + [sym__topleft] = ACTIONS(586), + [sym__botright] = ACTIONS(588), + [sym__edit] = ACTIONS(590), + [sym__enew] = ACTIONS(592), + [sym__find] = ACTIONS(594), + [sym__ex] = ACTIONS(596), + [sym__visual] = ACTIONS(598), + [sym__view] = ACTIONS(600), + [sym__eval] = ACTIONS(602), + [sym_unknown_command_name] = ACTIONS(604), + }, + [93] = { + [sym_unknown_builtin_statement] = STATE(2746), + [sym_return_statement] = STATE(2746), + [sym_break_statement] = STATE(2746), + [sym_continue_statement] = STATE(2746), + [sym_normal_statement] = STATE(2746), + [sym_setfiletype_statement] = STATE(2746), + [sym_options_statement] = STATE(2746), + [sym_startinsert_statement] = STATE(2746), + [sym_stopinsert_statement] = STATE(2746), + [sym_scriptencoding_statement] = STATE(2746), + [sym_cnext_statement] = STATE(2746), + [sym_cprevious_statement] = STATE(2746), + [sym_runtime_statement] = STATE(2746), + [sym_wincmd_statement] = STATE(2746), + [sym_source_statement] = STATE(2746), + [sym_global_statement] = STATE(2746), + [sym_filetype_statement] = STATE(2746), + [sym_colorscheme_statement] = STATE(2746), + [sym_lua_statement] = STATE(2746), + [sym_ruby_statement] = STATE(2746), + [sym_python_statement] = STATE(2746), + [sym_perl_statement] = STATE(2746), + [sym_for_loop] = STATE(2746), + [sym_while_loop] = STATE(2746), + [sym_if_statement] = STATE(2746), + [sym_try_statement] = STATE(2746), + [sym_throw_statement] = STATE(2746), + [sym_bang_filter_statement] = STATE(2746), + [sym_let_statement] = STATE(2746), + [sym_const_statement] = STATE(2746), + [sym_set_statement] = STATE(2746), + [sym_setlocal_statement] = STATE(2746), + [sym_unlet_statement] = STATE(2746), + [sym_call_statement] = STATE(2746), + [sym_echo_statement] = STATE(2746), + [sym_echon_statement] = STATE(2746), + [sym_echohl_statement] = STATE(2746), + [sym_echomsg_statement] = STATE(2746), + [sym_echoerr_statement] = STATE(2746), + [sym_execute_statement] = STATE(2746), + [sym_silent_statement] = STATE(2746), + [sym_vertical_statement] = STATE(2746), + [sym_topleft_statement] = STATE(2746), + [sym_botright_statement] = STATE(2746), + [sym_aboveleft_statement] = STATE(2746), + [sym_belowright_statement] = STATE(2746), + [sym_user_command] = STATE(2746), + [sym_function_definition] = STATE(2746), + [sym_range_statement] = STATE(2746), + [sym__range] = STATE(1676), + [sym__range_explicit] = STATE(1828), + [sym__range_marker] = STATE(1670), + [sym_current_line] = STATE(1670), + [sym_next_line] = STATE(1670), + [sym_last_line] = STATE(1670), + [sym_previous_pattern] = STATE(1670), + [sym_register_statement] = STATE(2746), + [sym_map_statement] = STATE(2746), + [sym_sign_statement] = STATE(2746), + [sym_eval_statement] = STATE(2746), + [sym__autocmd_define] = STATE(2699), + [sym__autocmd_remove] = STATE(2700), + [sym__autocmd_list] = STATE(2701), + [sym_autocmd_statement] = STATE(2746), + [sym_augroup_statement] = STATE(2746), + [sym_command_statement] = STATE(2746), + [sym_comclear_statement] = STATE(2746), + [sym_delcommand_statement] = STATE(2746), + [sym_highlight_statement] = STATE(2746), + [sym_syntax_statement] = STATE(2746), + [sym_edit_statement] = STATE(2746), + [sym_enew_statement] = STATE(2746), + [sym_find_statement] = STATE(2746), + [sym_ex_statement] = STATE(2746), + [sym_visual_statement] = STATE(2746), + [sym_view_statement] = STATE(2746), [aux_sym__statement_repeat1] = STATE(118), [anon_sym_COLON] = ACTIONS(682), [anon_sym_QMARK] = ACTIONS(9), @@ -68107,188 +68325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(155), [sym_unknown_command_name] = ACTIONS(157), }, - [93] = { - [sym_unknown_builtin_statement] = STATE(2425), - [sym_return_statement] = STATE(2425), - [sym_break_statement] = STATE(2425), - [sym_continue_statement] = STATE(2425), - [sym_normal_statement] = STATE(2425), - [sym_setfiletype_statement] = STATE(2425), - [sym_options_statement] = STATE(2425), - [sym_startinsert_statement] = STATE(2425), - [sym_stopinsert_statement] = STATE(2425), - [sym_scriptencoding_statement] = STATE(2425), - [sym_cnext_statement] = STATE(2425), - [sym_cprevious_statement] = STATE(2425), - [sym_runtime_statement] = STATE(2425), - [sym_wincmd_statement] = STATE(2425), - [sym_source_statement] = STATE(2425), - [sym_global_statement] = STATE(2425), - [sym_filetype_statement] = STATE(2425), - [sym_colorscheme_statement] = STATE(2425), - [sym_lua_statement] = STATE(2425), - [sym_ruby_statement] = STATE(2425), - [sym_python_statement] = STATE(2425), - [sym_perl_statement] = STATE(2425), - [sym_for_loop] = STATE(2425), - [sym_while_loop] = STATE(2425), - [sym_if_statement] = STATE(2425), - [sym_try_statement] = STATE(2425), - [sym_throw_statement] = STATE(2425), - [sym_bang_filter_statement] = STATE(2425), - [sym_let_statement] = STATE(2425), - [sym_const_statement] = STATE(2425), - [sym_set_statement] = STATE(2425), - [sym_setlocal_statement] = STATE(2425), - [sym_unlet_statement] = STATE(2425), - [sym_call_statement] = STATE(2425), - [sym_echo_statement] = STATE(2425), - [sym_echon_statement] = STATE(2425), - [sym_echohl_statement] = STATE(2425), - [sym_echomsg_statement] = STATE(2425), - [sym_echoerr_statement] = STATE(2425), - [sym_execute_statement] = STATE(2425), - [sym_silent_statement] = STATE(2425), - [sym_vertical_statement] = STATE(2425), - [sym_topleft_statement] = STATE(2425), - [sym_botright_statement] = STATE(2425), - [sym_aboveleft_statement] = STATE(2425), - [sym_belowright_statement] = STATE(2425), - [sym_user_command] = STATE(2425), - [sym_function_definition] = STATE(2425), - [sym_range_statement] = STATE(2425), - [sym__range] = STATE(1580), - [sym__range_explicit] = STATE(1770), - [sym__range_marker] = STATE(1583), - [sym_current_line] = STATE(1583), - [sym_next_line] = STATE(1583), - [sym_last_line] = STATE(1583), - [sym_previous_pattern] = STATE(1583), - [sym_register_statement] = STATE(2425), - [sym_map_statement] = STATE(2425), - [sym_sign_statement] = STATE(2425), - [sym_eval_statement] = STATE(2425), - [sym__autocmd_define] = STATE(2629), - [sym__autocmd_remove] = STATE(2627), - [sym__autocmd_list] = STATE(2626), - [sym_autocmd_statement] = STATE(2425), - [sym_augroup_statement] = STATE(2425), - [sym_command_statement] = STATE(2425), - [sym_comclear_statement] = STATE(2425), - [sym_delcommand_statement] = STATE(2425), - [sym_highlight_statement] = STATE(2425), - [sym_syntax_statement] = STATE(2425), - [sym_edit_statement] = STATE(2425), - [sym_enew_statement] = STATE(2425), - [sym_find_statement] = STATE(2425), - [sym_ex_statement] = STATE(2425), - [sym_visual_statement] = STATE(2425), - [sym_view_statement] = STATE(2425), - [aux_sym__statement_repeat1] = STATE(118), - [anon_sym_COLON] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(448), - [sym_mark] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_DOT2] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_BSLASH_SLASH] = ACTIONS(462), - [anon_sym_BSLASH_QMARK] = ACTIONS(462), - [anon_sym_BSLASH_AMP] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(466), - [sym_register] = ACTIONS(468), - [sym_command_name] = ACTIONS(474), - [sym__line_continuation] = ACTIONS(3), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(476), - [sym__for] = ACTIONS(478), - [sym__while] = ACTIONS(480), - [sym__if] = ACTIONS(482), - [sym__try] = ACTIONS(484), - [sym__cnext] = ACTIONS(486), - [sym__cprevious] = ACTIONS(488), - [sym__cNext] = ACTIONS(488), - [sym__const] = ACTIONS(490), - [sym__normal] = ACTIONS(492), - [sym__return] = ACTIONS(494), - [sym__perl] = ACTIONS(496), - [sym__lua] = ACTIONS(498), - [sym__ruby] = ACTIONS(500), - [sym__python] = ACTIONS(502), - [sym__throw] = ACTIONS(504), - [sym__execute] = ACTIONS(506), - [sym__autocmd] = ACTIONS(508), - [sym__silent] = ACTIONS(510), - [sym__echo] = ACTIONS(512), - [sym__echon] = ACTIONS(514), - [sym__echohl] = ACTIONS(516), - [sym__echomsg] = ACTIONS(518), - [sym__echoerr] = ACTIONS(520), - [sym__map] = ACTIONS(522), - [sym__nmap] = ACTIONS(522), - [sym__vmap] = ACTIONS(522), - [sym__xmap] = ACTIONS(522), - [sym__smap] = ACTIONS(522), - [sym__omap] = ACTIONS(522), - [sym__imap] = ACTIONS(522), - [sym__lmap] = ACTIONS(522), - [sym__cmap] = ACTIONS(522), - [sym__tmap] = ACTIONS(522), - [sym__noremap] = ACTIONS(522), - [sym__nnoremap] = ACTIONS(522), - [sym__vnoremap] = ACTIONS(522), - [sym__xnoremap] = ACTIONS(522), - [sym__snoremap] = ACTIONS(522), - [sym__onoremap] = ACTIONS(522), - [sym__inoremap] = ACTIONS(522), - [sym__lnoremap] = ACTIONS(522), - [sym__cnoremap] = ACTIONS(522), - [sym__tnoremap] = ACTIONS(522), - [sym__augroup] = ACTIONS(524), - [sym__highlight] = ACTIONS(526), - [sym__syntax] = ACTIONS(528), - [sym__set] = ACTIONS(530), - [sym__setlocal] = ACTIONS(532), - [sym__setfiletype] = ACTIONS(534), - [sym__browse] = ACTIONS(536), - [sym__options] = ACTIONS(538), - [sym__startinsert] = ACTIONS(540), - [sym__stopinsert] = ACTIONS(542), - [sym__scriptencoding] = ACTIONS(544), - [sym__source] = ACTIONS(546), - [sym__global] = ACTIONS(548), - [sym__colorscheme] = ACTIONS(550), - [sym__command] = ACTIONS(552), - [sym__comclear] = ACTIONS(554), - [sym__delcommand] = ACTIONS(556), - [sym__runtime] = ACTIONS(558), - [sym__wincmd] = ACTIONS(560), - [sym__sign] = ACTIONS(562), - [sym__filetype] = ACTIONS(564), - [sym__let] = ACTIONS(566), - [sym__unlet] = ACTIONS(568), - [sym__call] = ACTIONS(570), - [sym__break] = ACTIONS(572), - [sym__continue] = ACTIONS(574), - [sym__vertical] = ACTIONS(576), - [sym__leftabove] = ACTIONS(578), - [sym__aboveleft] = ACTIONS(578), - [sym__rightbelow] = ACTIONS(580), - [sym__belowright] = ACTIONS(580), - [sym__topleft] = ACTIONS(582), - [sym__botright] = ACTIONS(584), - [sym__edit] = ACTIONS(586), - [sym__enew] = ACTIONS(588), - [sym__find] = ACTIONS(590), - [sym__ex] = ACTIONS(592), - [sym__visual] = ACTIONS(594), - [sym__view] = ACTIONS(596), - [sym__eval] = ACTIONS(598), - [sym_unknown_command_name] = ACTIONS(600), - }, [94] = { - [aux_sym__autocmd_pattern_repeat1] = STATE(96), + [aux_sym__autocmd_pattern_repeat1] = STATE(95), [anon_sym_COLON] = ACTIONS(684), [anon_sym_QMARK] = ACTIONS(684), [anon_sym_COMMA] = ACTIONS(686), @@ -68508,7 +68546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(690), }, [96] = { - [aux_sym__autocmd_pattern_repeat1] = STATE(95), + [aux_sym__autocmd_pattern_repeat1] = STATE(94), [anon_sym_COLON] = ACTIONS(697), [anon_sym_QMARK] = ACTIONS(697), [anon_sym_COMMA] = ACTIONS(686), @@ -68728,112 +68766,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [98] = { [aux_sym__autocmd_pattern_repeat1] = STATE(100), - [anon_sym_COLON] = ACTIONS(684), - [anon_sym_QMARK] = ACTIONS(684), + [anon_sym_COLON] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), [anon_sym_COMMA] = ACTIONS(701), - [sym_mark] = ACTIONS(684), - [anon_sym_PERCENT] = ACTIONS(684), - [anon_sym_SLASH] = ACTIONS(684), - [anon_sym_DOT2] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_BSLASH_SLASH] = ACTIONS(684), - [anon_sym_BSLASH_QMARK] = ACTIONS(684), - [anon_sym_BSLASH_AMP] = ACTIONS(684), - [sym_integer_literal] = ACTIONS(684), - [sym_register] = ACTIONS(684), - [sym_au_once] = ACTIONS(684), - [sym_au_nested] = ACTIONS(684), - [sym_command_name] = ACTIONS(684), - [sym__newline_or_pipe] = ACTIONS(684), + [sym_mark] = ACTIONS(697), + [anon_sym_PERCENT] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_DOT2] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_BSLASH_SLASH] = ACTIONS(697), + [anon_sym_BSLASH_QMARK] = ACTIONS(697), + [anon_sym_BSLASH_AMP] = ACTIONS(697), + [sym_integer_literal] = ACTIONS(697), + [sym_register] = ACTIONS(697), + [sym_au_once] = ACTIONS(697), + [sym_au_nested] = ACTIONS(697), + [sym_command_name] = ACTIONS(697), + [sym__newline_or_pipe] = ACTIONS(697), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(684), + [sym_comment] = ACTIONS(697), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(684), - [sym__for] = ACTIONS(684), - [sym__while] = ACTIONS(684), - [sym__if] = ACTIONS(684), - [sym__try] = ACTIONS(684), - [sym__cnext] = ACTIONS(684), - [sym__cprevious] = ACTIONS(684), - [sym__cNext] = ACTIONS(684), - [sym__const] = ACTIONS(684), - [sym__normal] = ACTIONS(684), - [sym__return] = ACTIONS(684), - [sym__perl] = ACTIONS(684), - [sym__lua] = ACTIONS(684), - [sym__ruby] = ACTIONS(684), - [sym__python] = ACTIONS(684), - [sym__throw] = ACTIONS(684), - [sym__execute] = ACTIONS(684), - [sym__autocmd] = ACTIONS(684), - [sym__silent] = ACTIONS(684), - [sym__echo] = ACTIONS(684), - [sym__echon] = ACTIONS(684), - [sym__echohl] = ACTIONS(684), - [sym__echomsg] = ACTIONS(684), - [sym__echoerr] = ACTIONS(684), - [sym__map] = ACTIONS(684), - [sym__nmap] = ACTIONS(684), - [sym__vmap] = ACTIONS(684), - [sym__xmap] = ACTIONS(684), - [sym__smap] = ACTIONS(684), - [sym__omap] = ACTIONS(684), - [sym__imap] = ACTIONS(684), - [sym__lmap] = ACTIONS(684), - [sym__cmap] = ACTIONS(684), - [sym__tmap] = ACTIONS(684), - [sym__noremap] = ACTIONS(684), - [sym__nnoremap] = ACTIONS(684), - [sym__vnoremap] = ACTIONS(684), - [sym__xnoremap] = ACTIONS(684), - [sym__snoremap] = ACTIONS(684), - [sym__onoremap] = ACTIONS(684), - [sym__inoremap] = ACTIONS(684), - [sym__lnoremap] = ACTIONS(684), - [sym__cnoremap] = ACTIONS(684), - [sym__tnoremap] = ACTIONS(684), - [sym__augroup] = ACTIONS(684), - [sym__highlight] = ACTIONS(684), - [sym__syntax] = ACTIONS(684), - [sym__set] = ACTIONS(684), - [sym__setlocal] = ACTIONS(684), - [sym__setfiletype] = ACTIONS(684), - [sym__browse] = ACTIONS(684), - [sym__options] = ACTIONS(684), - [sym__startinsert] = ACTIONS(684), - [sym__stopinsert] = ACTIONS(684), - [sym__scriptencoding] = ACTIONS(684), - [sym__source] = ACTIONS(684), - [sym__global] = ACTIONS(684), - [sym__colorscheme] = ACTIONS(684), - [sym__command] = ACTIONS(684), - [sym__comclear] = ACTIONS(684), - [sym__delcommand] = ACTIONS(684), - [sym__runtime] = ACTIONS(684), - [sym__wincmd] = ACTIONS(684), - [sym__sign] = ACTIONS(684), - [sym__filetype] = ACTIONS(684), - [sym__let] = ACTIONS(684), - [sym__unlet] = ACTIONS(684), - [sym__call] = ACTIONS(684), - [sym__break] = ACTIONS(684), - [sym__continue] = ACTIONS(684), - [sym__vertical] = ACTIONS(684), - [sym__leftabove] = ACTIONS(684), - [sym__aboveleft] = ACTIONS(684), - [sym__rightbelow] = ACTIONS(684), - [sym__belowright] = ACTIONS(684), - [sym__topleft] = ACTIONS(684), - [sym__botright] = ACTIONS(684), - [sym__edit] = ACTIONS(684), - [sym__enew] = ACTIONS(684), - [sym__find] = ACTIONS(684), - [sym__ex] = ACTIONS(684), - [sym__visual] = ACTIONS(684), - [sym__view] = ACTIONS(684), - [sym__eval] = ACTIONS(684), - [sym_unknown_command_name] = ACTIONS(684), + [sym__function] = ACTIONS(697), + [sym__for] = ACTIONS(697), + [sym__while] = ACTIONS(697), + [sym__if] = ACTIONS(697), + [sym__try] = ACTIONS(697), + [sym__cnext] = ACTIONS(697), + [sym__cprevious] = ACTIONS(697), + [sym__cNext] = ACTIONS(697), + [sym__const] = ACTIONS(697), + [sym__normal] = ACTIONS(697), + [sym__return] = ACTIONS(697), + [sym__perl] = ACTIONS(697), + [sym__lua] = ACTIONS(697), + [sym__ruby] = ACTIONS(697), + [sym__python] = ACTIONS(697), + [sym__throw] = ACTIONS(697), + [sym__execute] = ACTIONS(697), + [sym__autocmd] = ACTIONS(697), + [sym__silent] = ACTIONS(697), + [sym__echo] = ACTIONS(697), + [sym__echon] = ACTIONS(697), + [sym__echohl] = ACTIONS(697), + [sym__echomsg] = ACTIONS(697), + [sym__echoerr] = ACTIONS(697), + [sym__map] = ACTIONS(697), + [sym__nmap] = ACTIONS(697), + [sym__vmap] = ACTIONS(697), + [sym__xmap] = ACTIONS(697), + [sym__smap] = ACTIONS(697), + [sym__omap] = ACTIONS(697), + [sym__imap] = ACTIONS(697), + [sym__lmap] = ACTIONS(697), + [sym__cmap] = ACTIONS(697), + [sym__tmap] = ACTIONS(697), + [sym__noremap] = ACTIONS(697), + [sym__nnoremap] = ACTIONS(697), + [sym__vnoremap] = ACTIONS(697), + [sym__xnoremap] = ACTIONS(697), + [sym__snoremap] = ACTIONS(697), + [sym__onoremap] = ACTIONS(697), + [sym__inoremap] = ACTIONS(697), + [sym__lnoremap] = ACTIONS(697), + [sym__cnoremap] = ACTIONS(697), + [sym__tnoremap] = ACTIONS(697), + [sym__augroup] = ACTIONS(697), + [sym__highlight] = ACTIONS(697), + [sym__syntax] = ACTIONS(697), + [sym__set] = ACTIONS(697), + [sym__setlocal] = ACTIONS(697), + [sym__setfiletype] = ACTIONS(697), + [sym__browse] = ACTIONS(697), + [sym__options] = ACTIONS(697), + [sym__startinsert] = ACTIONS(697), + [sym__stopinsert] = ACTIONS(697), + [sym__scriptencoding] = ACTIONS(697), + [sym__source] = ACTIONS(697), + [sym__global] = ACTIONS(697), + [sym__colorscheme] = ACTIONS(697), + [sym__command] = ACTIONS(697), + [sym__comclear] = ACTIONS(697), + [sym__delcommand] = ACTIONS(697), + [sym__runtime] = ACTIONS(697), + [sym__wincmd] = ACTIONS(697), + [sym__sign] = ACTIONS(697), + [sym__filetype] = ACTIONS(697), + [sym__let] = ACTIONS(697), + [sym__unlet] = ACTIONS(697), + [sym__call] = ACTIONS(697), + [sym__break] = ACTIONS(697), + [sym__continue] = ACTIONS(697), + [sym__vertical] = ACTIONS(697), + [sym__leftabove] = ACTIONS(697), + [sym__aboveleft] = ACTIONS(697), + [sym__rightbelow] = ACTIONS(697), + [sym__belowright] = ACTIONS(697), + [sym__topleft] = ACTIONS(697), + [sym__botright] = ACTIONS(697), + [sym__edit] = ACTIONS(697), + [sym__enew] = ACTIONS(697), + [sym__find] = ACTIONS(697), + [sym__ex] = ACTIONS(697), + [sym__visual] = ACTIONS(697), + [sym__view] = ACTIONS(697), + [sym__eval] = ACTIONS(697), + [sym_unknown_command_name] = ACTIONS(697), }, [99] = { [aux_sym__autocmd_pattern_repeat1] = STATE(99), @@ -68946,438 +68984,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [100] = { [aux_sym__autocmd_pattern_repeat1] = STATE(99), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(684), + [anon_sym_QMARK] = ACTIONS(684), [anon_sym_COMMA] = ACTIONS(701), - [sym_mark] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_DOT2] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_BSLASH_SLASH] = ACTIONS(697), - [anon_sym_BSLASH_QMARK] = ACTIONS(697), - [anon_sym_BSLASH_AMP] = ACTIONS(697), - [sym_integer_literal] = ACTIONS(697), - [sym_register] = ACTIONS(697), - [sym_au_once] = ACTIONS(697), - [sym_au_nested] = ACTIONS(697), - [sym_command_name] = ACTIONS(697), - [sym__newline_or_pipe] = ACTIONS(697), + [sym_mark] = ACTIONS(684), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH] = ACTIONS(684), + [anon_sym_DOT2] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_BSLASH_SLASH] = ACTIONS(684), + [anon_sym_BSLASH_QMARK] = ACTIONS(684), + [anon_sym_BSLASH_AMP] = ACTIONS(684), + [sym_integer_literal] = ACTIONS(684), + [sym_register] = ACTIONS(684), + [sym_au_once] = ACTIONS(684), + [sym_au_nested] = ACTIONS(684), + [sym_command_name] = ACTIONS(684), + [sym__newline_or_pipe] = ACTIONS(684), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(697), + [sym_comment] = ACTIONS(684), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(697), - [sym__for] = ACTIONS(697), - [sym__while] = ACTIONS(697), - [sym__if] = ACTIONS(697), - [sym__try] = ACTIONS(697), - [sym__cnext] = ACTIONS(697), - [sym__cprevious] = ACTIONS(697), - [sym__cNext] = ACTIONS(697), - [sym__const] = ACTIONS(697), - [sym__normal] = ACTIONS(697), - [sym__return] = ACTIONS(697), - [sym__perl] = ACTIONS(697), - [sym__lua] = ACTIONS(697), - [sym__ruby] = ACTIONS(697), - [sym__python] = ACTIONS(697), - [sym__throw] = ACTIONS(697), - [sym__execute] = ACTIONS(697), - [sym__autocmd] = ACTIONS(697), - [sym__silent] = ACTIONS(697), - [sym__echo] = ACTIONS(697), - [sym__echon] = ACTIONS(697), - [sym__echohl] = ACTIONS(697), - [sym__echomsg] = ACTIONS(697), - [sym__echoerr] = ACTIONS(697), - [sym__map] = ACTIONS(697), - [sym__nmap] = ACTIONS(697), - [sym__vmap] = ACTIONS(697), - [sym__xmap] = ACTIONS(697), - [sym__smap] = ACTIONS(697), - [sym__omap] = ACTIONS(697), - [sym__imap] = ACTIONS(697), - [sym__lmap] = ACTIONS(697), - [sym__cmap] = ACTIONS(697), - [sym__tmap] = ACTIONS(697), - [sym__noremap] = ACTIONS(697), - [sym__nnoremap] = ACTIONS(697), - [sym__vnoremap] = ACTIONS(697), - [sym__xnoremap] = ACTIONS(697), - [sym__snoremap] = ACTIONS(697), - [sym__onoremap] = ACTIONS(697), - [sym__inoremap] = ACTIONS(697), - [sym__lnoremap] = ACTIONS(697), - [sym__cnoremap] = ACTIONS(697), - [sym__tnoremap] = ACTIONS(697), - [sym__augroup] = ACTIONS(697), - [sym__highlight] = ACTIONS(697), - [sym__syntax] = ACTIONS(697), - [sym__set] = ACTIONS(697), - [sym__setlocal] = ACTIONS(697), - [sym__setfiletype] = ACTIONS(697), - [sym__browse] = ACTIONS(697), - [sym__options] = ACTIONS(697), - [sym__startinsert] = ACTIONS(697), - [sym__stopinsert] = ACTIONS(697), - [sym__scriptencoding] = ACTIONS(697), - [sym__source] = ACTIONS(697), - [sym__global] = ACTIONS(697), - [sym__colorscheme] = ACTIONS(697), - [sym__command] = ACTIONS(697), - [sym__comclear] = ACTIONS(697), - [sym__delcommand] = ACTIONS(697), - [sym__runtime] = ACTIONS(697), - [sym__wincmd] = ACTIONS(697), - [sym__sign] = ACTIONS(697), - [sym__filetype] = ACTIONS(697), - [sym__let] = ACTIONS(697), - [sym__unlet] = ACTIONS(697), - [sym__call] = ACTIONS(697), - [sym__break] = ACTIONS(697), - [sym__continue] = ACTIONS(697), - [sym__vertical] = ACTIONS(697), - [sym__leftabove] = ACTIONS(697), - [sym__aboveleft] = ACTIONS(697), - [sym__rightbelow] = ACTIONS(697), - [sym__belowright] = ACTIONS(697), - [sym__topleft] = ACTIONS(697), - [sym__botright] = ACTIONS(697), - [sym__edit] = ACTIONS(697), - [sym__enew] = ACTIONS(697), - [sym__find] = ACTIONS(697), - [sym__ex] = ACTIONS(697), - [sym__visual] = ACTIONS(697), - [sym__view] = ACTIONS(697), - [sym__eval] = ACTIONS(697), - [sym_unknown_command_name] = ACTIONS(697), + [sym__function] = ACTIONS(684), + [sym__for] = ACTIONS(684), + [sym__while] = ACTIONS(684), + [sym__if] = ACTIONS(684), + [sym__try] = ACTIONS(684), + [sym__cnext] = ACTIONS(684), + [sym__cprevious] = ACTIONS(684), + [sym__cNext] = ACTIONS(684), + [sym__const] = ACTIONS(684), + [sym__normal] = ACTIONS(684), + [sym__return] = ACTIONS(684), + [sym__perl] = ACTIONS(684), + [sym__lua] = ACTIONS(684), + [sym__ruby] = ACTIONS(684), + [sym__python] = ACTIONS(684), + [sym__throw] = ACTIONS(684), + [sym__execute] = ACTIONS(684), + [sym__autocmd] = ACTIONS(684), + [sym__silent] = ACTIONS(684), + [sym__echo] = ACTIONS(684), + [sym__echon] = ACTIONS(684), + [sym__echohl] = ACTIONS(684), + [sym__echomsg] = ACTIONS(684), + [sym__echoerr] = ACTIONS(684), + [sym__map] = ACTIONS(684), + [sym__nmap] = ACTIONS(684), + [sym__vmap] = ACTIONS(684), + [sym__xmap] = ACTIONS(684), + [sym__smap] = ACTIONS(684), + [sym__omap] = ACTIONS(684), + [sym__imap] = ACTIONS(684), + [sym__lmap] = ACTIONS(684), + [sym__cmap] = ACTIONS(684), + [sym__tmap] = ACTIONS(684), + [sym__noremap] = ACTIONS(684), + [sym__nnoremap] = ACTIONS(684), + [sym__vnoremap] = ACTIONS(684), + [sym__xnoremap] = ACTIONS(684), + [sym__snoremap] = ACTIONS(684), + [sym__onoremap] = ACTIONS(684), + [sym__inoremap] = ACTIONS(684), + [sym__lnoremap] = ACTIONS(684), + [sym__cnoremap] = ACTIONS(684), + [sym__tnoremap] = ACTIONS(684), + [sym__augroup] = ACTIONS(684), + [sym__highlight] = ACTIONS(684), + [sym__syntax] = ACTIONS(684), + [sym__set] = ACTIONS(684), + [sym__setlocal] = ACTIONS(684), + [sym__setfiletype] = ACTIONS(684), + [sym__browse] = ACTIONS(684), + [sym__options] = ACTIONS(684), + [sym__startinsert] = ACTIONS(684), + [sym__stopinsert] = ACTIONS(684), + [sym__scriptencoding] = ACTIONS(684), + [sym__source] = ACTIONS(684), + [sym__global] = ACTIONS(684), + [sym__colorscheme] = ACTIONS(684), + [sym__command] = ACTIONS(684), + [sym__comclear] = ACTIONS(684), + [sym__delcommand] = ACTIONS(684), + [sym__runtime] = ACTIONS(684), + [sym__wincmd] = ACTIONS(684), + [sym__sign] = ACTIONS(684), + [sym__filetype] = ACTIONS(684), + [sym__let] = ACTIONS(684), + [sym__unlet] = ACTIONS(684), + [sym__call] = ACTIONS(684), + [sym__break] = ACTIONS(684), + [sym__continue] = ACTIONS(684), + [sym__vertical] = ACTIONS(684), + [sym__leftabove] = ACTIONS(684), + [sym__aboveleft] = ACTIONS(684), + [sym__rightbelow] = ACTIONS(684), + [sym__belowright] = ACTIONS(684), + [sym__topleft] = ACTIONS(684), + [sym__botright] = ACTIONS(684), + [sym__edit] = ACTIONS(684), + [sym__enew] = ACTIONS(684), + [sym__find] = ACTIONS(684), + [sym__ex] = ACTIONS(684), + [sym__visual] = ACTIONS(684), + [sym__view] = ACTIONS(684), + [sym__eval] = ACTIONS(684), + [sym_unknown_command_name] = ACTIONS(684), }, [101] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__elseif] = ACTIONS(249), - [sym__else] = ACTIONS(249), - [sym__endif] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), - }, - [102] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__elseif] = ACTIONS(708), - [sym__else] = ACTIONS(708), - [sym__endif] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), - }, - [103] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), - [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__catch] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__finally] = ACTIONS(708), - [sym__endtry] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), - }, - [104] = { [anon_sym_COLON] = ACTIONS(690), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_COMMA] = ACTIONS(690), @@ -69485,1385 +69199,1709 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eval] = ACTIONS(690), [sym_unknown_command_name] = ACTIONS(690), }, + [102] = { + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(706), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__catch] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__finally] = ACTIONS(706), + [sym__endtry] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), + }, + [103] = { + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(238), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__elseif] = ACTIONS(238), + [sym__else] = ACTIONS(238), + [sym__endif] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), + }, + [104] = { + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(238), + [sym_line_continuation_comment] = ACTIONS(3), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__catch] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__finally] = ACTIONS(238), + [sym__endtry] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), + }, [105] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__catch] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__finally] = ACTIONS(249), - [sym__endtry] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__elseif] = ACTIONS(706), + [sym__else] = ACTIONS(706), + [sym__endif] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [106] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(238), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__endtry] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__endwhile] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), }, [107] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), + [sym_comment] = ACTIONS(238), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__endfunction] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__endfor] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), }, [108] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), + [ts_builtin_sym_end] = ACTIONS(238), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), + [sym_comment] = ACTIONS(238), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__endtry] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), }, [109] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__endwhile] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), + [sym__function] = ACTIONS(706), + [sym__endfunction] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [110] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__endwhile] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(249), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(238), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(238), + [sym__endfunction] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), }, [112] = { - [ts_builtin_sym_end] = ACTIONS(708), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__endfor] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [113] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__endfor] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__endtry] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [114] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__endfor] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__endif] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [115] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(238), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__endif] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__endif] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), }, [116] = { - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [sym_mark] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_DOT2] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_BSLASH_SLASH] = ACTIONS(708), - [anon_sym_BSLASH_QMARK] = ACTIONS(708), - [anon_sym_BSLASH_AMP] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(708), - [sym_register] = ACTIONS(708), - [sym_command_name] = ACTIONS(708), - [sym__newline_or_pipe] = ACTIONS(708), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [sym_mark] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT2] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_SLASH] = ACTIONS(706), + [anon_sym_BSLASH_QMARK] = ACTIONS(706), + [anon_sym_BSLASH_AMP] = ACTIONS(706), + [sym_integer_literal] = ACTIONS(706), + [sym_register] = ACTIONS(706), + [sym_command_name] = ACTIONS(706), + [sym__newline_or_pipe] = ACTIONS(706), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(708), + [sym_comment] = ACTIONS(706), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(708), - [sym__for] = ACTIONS(708), - [sym__while] = ACTIONS(708), - [sym__if] = ACTIONS(708), - [sym__endif] = ACTIONS(708), - [sym__try] = ACTIONS(708), - [sym__cnext] = ACTIONS(708), - [sym__cprevious] = ACTIONS(708), - [sym__cNext] = ACTIONS(708), - [sym__const] = ACTIONS(708), - [sym__normal] = ACTIONS(708), - [sym__return] = ACTIONS(708), - [sym__perl] = ACTIONS(708), - [sym__lua] = ACTIONS(708), - [sym__ruby] = ACTIONS(708), - [sym__python] = ACTIONS(708), - [sym__throw] = ACTIONS(708), - [sym__execute] = ACTIONS(708), - [sym__autocmd] = ACTIONS(708), - [sym__silent] = ACTIONS(708), - [sym__echo] = ACTIONS(708), - [sym__echon] = ACTIONS(708), - [sym__echohl] = ACTIONS(708), - [sym__echomsg] = ACTIONS(708), - [sym__echoerr] = ACTIONS(708), - [sym__map] = ACTIONS(708), - [sym__nmap] = ACTIONS(708), - [sym__vmap] = ACTIONS(708), - [sym__xmap] = ACTIONS(708), - [sym__smap] = ACTIONS(708), - [sym__omap] = ACTIONS(708), - [sym__imap] = ACTIONS(708), - [sym__lmap] = ACTIONS(708), - [sym__cmap] = ACTIONS(708), - [sym__tmap] = ACTIONS(708), - [sym__noremap] = ACTIONS(708), - [sym__nnoremap] = ACTIONS(708), - [sym__vnoremap] = ACTIONS(708), - [sym__xnoremap] = ACTIONS(708), - [sym__snoremap] = ACTIONS(708), - [sym__onoremap] = ACTIONS(708), - [sym__inoremap] = ACTIONS(708), - [sym__lnoremap] = ACTIONS(708), - [sym__cnoremap] = ACTIONS(708), - [sym__tnoremap] = ACTIONS(708), - [sym__augroup] = ACTIONS(708), - [sym__highlight] = ACTIONS(708), - [sym__syntax] = ACTIONS(708), - [sym__set] = ACTIONS(708), - [sym__setlocal] = ACTIONS(708), - [sym__setfiletype] = ACTIONS(708), - [sym__browse] = ACTIONS(708), - [sym__options] = ACTIONS(708), - [sym__startinsert] = ACTIONS(708), - [sym__stopinsert] = ACTIONS(708), - [sym__scriptencoding] = ACTIONS(708), - [sym__source] = ACTIONS(708), - [sym__global] = ACTIONS(708), - [sym__colorscheme] = ACTIONS(708), - [sym__command] = ACTIONS(708), - [sym__comclear] = ACTIONS(708), - [sym__delcommand] = ACTIONS(708), - [sym__runtime] = ACTIONS(708), - [sym__wincmd] = ACTIONS(708), - [sym__sign] = ACTIONS(708), - [sym__filetype] = ACTIONS(708), - [sym__let] = ACTIONS(708), - [sym__unlet] = ACTIONS(708), - [sym__call] = ACTIONS(708), - [sym__break] = ACTIONS(708), - [sym__continue] = ACTIONS(708), - [sym__vertical] = ACTIONS(708), - [sym__leftabove] = ACTIONS(708), - [sym__aboveleft] = ACTIONS(708), - [sym__rightbelow] = ACTIONS(708), - [sym__belowright] = ACTIONS(708), - [sym__topleft] = ACTIONS(708), - [sym__botright] = ACTIONS(708), - [sym__edit] = ACTIONS(708), - [sym__enew] = ACTIONS(708), - [sym__find] = ACTIONS(708), - [sym__ex] = ACTIONS(708), - [sym__visual] = ACTIONS(708), - [sym__view] = ACTIONS(708), - [sym__eval] = ACTIONS(708), - [sym_unknown_command_name] = ACTIONS(708), + [sym__function] = ACTIONS(706), + [sym__for] = ACTIONS(706), + [sym__while] = ACTIONS(706), + [sym__endwhile] = ACTIONS(706), + [sym__if] = ACTIONS(706), + [sym__try] = ACTIONS(706), + [sym__cnext] = ACTIONS(706), + [sym__cprevious] = ACTIONS(706), + [sym__cNext] = ACTIONS(706), + [sym__const] = ACTIONS(706), + [sym__normal] = ACTIONS(706), + [sym__return] = ACTIONS(706), + [sym__perl] = ACTIONS(706), + [sym__lua] = ACTIONS(706), + [sym__ruby] = ACTIONS(706), + [sym__python] = ACTIONS(706), + [sym__throw] = ACTIONS(706), + [sym__execute] = ACTIONS(706), + [sym__autocmd] = ACTIONS(706), + [sym__silent] = ACTIONS(706), + [sym__echo] = ACTIONS(706), + [sym__echon] = ACTIONS(706), + [sym__echohl] = ACTIONS(706), + [sym__echomsg] = ACTIONS(706), + [sym__echoerr] = ACTIONS(706), + [sym__map] = ACTIONS(706), + [sym__nmap] = ACTIONS(706), + [sym__vmap] = ACTIONS(706), + [sym__xmap] = ACTIONS(706), + [sym__smap] = ACTIONS(706), + [sym__omap] = ACTIONS(706), + [sym__imap] = ACTIONS(706), + [sym__lmap] = ACTIONS(706), + [sym__cmap] = ACTIONS(706), + [sym__tmap] = ACTIONS(706), + [sym__noremap] = ACTIONS(706), + [sym__nnoremap] = ACTIONS(706), + [sym__vnoremap] = ACTIONS(706), + [sym__xnoremap] = ACTIONS(706), + [sym__snoremap] = ACTIONS(706), + [sym__onoremap] = ACTIONS(706), + [sym__inoremap] = ACTIONS(706), + [sym__lnoremap] = ACTIONS(706), + [sym__cnoremap] = ACTIONS(706), + [sym__tnoremap] = ACTIONS(706), + [sym__augroup] = ACTIONS(706), + [sym__highlight] = ACTIONS(706), + [sym__syntax] = ACTIONS(706), + [sym__set] = ACTIONS(706), + [sym__setlocal] = ACTIONS(706), + [sym__setfiletype] = ACTIONS(706), + [sym__browse] = ACTIONS(706), + [sym__options] = ACTIONS(706), + [sym__startinsert] = ACTIONS(706), + [sym__stopinsert] = ACTIONS(706), + [sym__scriptencoding] = ACTIONS(706), + [sym__source] = ACTIONS(706), + [sym__global] = ACTIONS(706), + [sym__colorscheme] = ACTIONS(706), + [sym__command] = ACTIONS(706), + [sym__comclear] = ACTIONS(706), + [sym__delcommand] = ACTIONS(706), + [sym__runtime] = ACTIONS(706), + [sym__wincmd] = ACTIONS(706), + [sym__sign] = ACTIONS(706), + [sym__filetype] = ACTIONS(706), + [sym__let] = ACTIONS(706), + [sym__unlet] = ACTIONS(706), + [sym__call] = ACTIONS(706), + [sym__break] = ACTIONS(706), + [sym__continue] = ACTIONS(706), + [sym__vertical] = ACTIONS(706), + [sym__leftabove] = ACTIONS(706), + [sym__aboveleft] = ACTIONS(706), + [sym__rightbelow] = ACTIONS(706), + [sym__belowright] = ACTIONS(706), + [sym__topleft] = ACTIONS(706), + [sym__botright] = ACTIONS(706), + [sym__edit] = ACTIONS(706), + [sym__enew] = ACTIONS(706), + [sym__find] = ACTIONS(706), + [sym__ex] = ACTIONS(706), + [sym__visual] = ACTIONS(706), + [sym__view] = ACTIONS(706), + [sym__eval] = ACTIONS(706), + [sym_unknown_command_name] = ACTIONS(706), }, [117] = { - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [sym_mark] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_BSLASH_SLASH] = ACTIONS(249), - [anon_sym_BSLASH_QMARK] = ACTIONS(249), - [anon_sym_BSLASH_AMP] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(249), - [sym_register] = ACTIONS(249), - [sym_command_name] = ACTIONS(249), - [sym__newline_or_pipe] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [sym_mark] = ACTIONS(238), + [anon_sym_PERCENT] = ACTIONS(238), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_DOT2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_BSLASH_SLASH] = ACTIONS(238), + [anon_sym_BSLASH_QMARK] = ACTIONS(238), + [anon_sym_BSLASH_AMP] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(238), + [sym_register] = ACTIONS(238), + [sym_command_name] = ACTIONS(238), + [sym__newline_or_pipe] = ACTIONS(238), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(249), + [sym_comment] = ACTIONS(238), [sym_line_continuation_comment] = ACTIONS(3), - [sym__function] = ACTIONS(249), - [sym__endfunction] = ACTIONS(249), - [sym__for] = ACTIONS(249), - [sym__while] = ACTIONS(249), - [sym__if] = ACTIONS(249), - [sym__try] = ACTIONS(249), - [sym__cnext] = ACTIONS(249), - [sym__cprevious] = ACTIONS(249), - [sym__cNext] = ACTIONS(249), - [sym__const] = ACTIONS(249), - [sym__normal] = ACTIONS(249), - [sym__return] = ACTIONS(249), - [sym__perl] = ACTIONS(249), - [sym__lua] = ACTIONS(249), - [sym__ruby] = ACTIONS(249), - [sym__python] = ACTIONS(249), - [sym__throw] = ACTIONS(249), - [sym__execute] = ACTIONS(249), - [sym__autocmd] = ACTIONS(249), - [sym__silent] = ACTIONS(249), - [sym__echo] = ACTIONS(249), - [sym__echon] = ACTIONS(249), - [sym__echohl] = ACTIONS(249), - [sym__echomsg] = ACTIONS(249), - [sym__echoerr] = ACTIONS(249), - [sym__map] = ACTIONS(249), - [sym__nmap] = ACTIONS(249), - [sym__vmap] = ACTIONS(249), - [sym__xmap] = ACTIONS(249), - [sym__smap] = ACTIONS(249), - [sym__omap] = ACTIONS(249), - [sym__imap] = ACTIONS(249), - [sym__lmap] = ACTIONS(249), - [sym__cmap] = ACTIONS(249), - [sym__tmap] = ACTIONS(249), - [sym__noremap] = ACTIONS(249), - [sym__nnoremap] = ACTIONS(249), - [sym__vnoremap] = ACTIONS(249), - [sym__xnoremap] = ACTIONS(249), - [sym__snoremap] = ACTIONS(249), - [sym__onoremap] = ACTIONS(249), - [sym__inoremap] = ACTIONS(249), - [sym__lnoremap] = ACTIONS(249), - [sym__cnoremap] = ACTIONS(249), - [sym__tnoremap] = ACTIONS(249), - [sym__augroup] = ACTIONS(249), - [sym__highlight] = ACTIONS(249), - [sym__syntax] = ACTIONS(249), - [sym__set] = ACTIONS(249), - [sym__setlocal] = ACTIONS(249), - [sym__setfiletype] = ACTIONS(249), - [sym__browse] = ACTIONS(249), - [sym__options] = ACTIONS(249), - [sym__startinsert] = ACTIONS(249), - [sym__stopinsert] = ACTIONS(249), - [sym__scriptencoding] = ACTIONS(249), - [sym__source] = ACTIONS(249), - [sym__global] = ACTIONS(249), - [sym__colorscheme] = ACTIONS(249), - [sym__command] = ACTIONS(249), - [sym__comclear] = ACTIONS(249), - [sym__delcommand] = ACTIONS(249), - [sym__runtime] = ACTIONS(249), - [sym__wincmd] = ACTIONS(249), - [sym__sign] = ACTIONS(249), - [sym__filetype] = ACTIONS(249), - [sym__let] = ACTIONS(249), - [sym__unlet] = ACTIONS(249), - [sym__call] = ACTIONS(249), - [sym__break] = ACTIONS(249), - [sym__continue] = ACTIONS(249), - [sym__vertical] = ACTIONS(249), - [sym__leftabove] = ACTIONS(249), - [sym__aboveleft] = ACTIONS(249), - [sym__rightbelow] = ACTIONS(249), - [sym__belowright] = ACTIONS(249), - [sym__topleft] = ACTIONS(249), - [sym__botright] = ACTIONS(249), - [sym__edit] = ACTIONS(249), - [sym__enew] = ACTIONS(249), - [sym__find] = ACTIONS(249), - [sym__ex] = ACTIONS(249), - [sym__visual] = ACTIONS(249), - [sym__view] = ACTIONS(249), - [sym__eval] = ACTIONS(249), - [sym_unknown_command_name] = ACTIONS(249), + [sym__function] = ACTIONS(238), + [sym__for] = ACTIONS(238), + [sym__while] = ACTIONS(238), + [sym__if] = ACTIONS(238), + [sym__try] = ACTIONS(238), + [sym__cnext] = ACTIONS(238), + [sym__cprevious] = ACTIONS(238), + [sym__cNext] = ACTIONS(238), + [sym__endtry] = ACTIONS(238), + [sym__const] = ACTIONS(238), + [sym__normal] = ACTIONS(238), + [sym__return] = ACTIONS(238), + [sym__perl] = ACTIONS(238), + [sym__lua] = ACTIONS(238), + [sym__ruby] = ACTIONS(238), + [sym__python] = ACTIONS(238), + [sym__throw] = ACTIONS(238), + [sym__execute] = ACTIONS(238), + [sym__autocmd] = ACTIONS(238), + [sym__silent] = ACTIONS(238), + [sym__echo] = ACTIONS(238), + [sym__echon] = ACTIONS(238), + [sym__echohl] = ACTIONS(238), + [sym__echomsg] = ACTIONS(238), + [sym__echoerr] = ACTIONS(238), + [sym__map] = ACTIONS(238), + [sym__nmap] = ACTIONS(238), + [sym__vmap] = ACTIONS(238), + [sym__xmap] = ACTIONS(238), + [sym__smap] = ACTIONS(238), + [sym__omap] = ACTIONS(238), + [sym__imap] = ACTIONS(238), + [sym__lmap] = ACTIONS(238), + [sym__cmap] = ACTIONS(238), + [sym__tmap] = ACTIONS(238), + [sym__noremap] = ACTIONS(238), + [sym__nnoremap] = ACTIONS(238), + [sym__vnoremap] = ACTIONS(238), + [sym__xnoremap] = ACTIONS(238), + [sym__snoremap] = ACTIONS(238), + [sym__onoremap] = ACTIONS(238), + [sym__inoremap] = ACTIONS(238), + [sym__lnoremap] = ACTIONS(238), + [sym__cnoremap] = ACTIONS(238), + [sym__tnoremap] = ACTIONS(238), + [sym__augroup] = ACTIONS(238), + [sym__highlight] = ACTIONS(238), + [sym__syntax] = ACTIONS(238), + [sym__set] = ACTIONS(238), + [sym__setlocal] = ACTIONS(238), + [sym__setfiletype] = ACTIONS(238), + [sym__browse] = ACTIONS(238), + [sym__options] = ACTIONS(238), + [sym__startinsert] = ACTIONS(238), + [sym__stopinsert] = ACTIONS(238), + [sym__scriptencoding] = ACTIONS(238), + [sym__source] = ACTIONS(238), + [sym__global] = ACTIONS(238), + [sym__colorscheme] = ACTIONS(238), + [sym__command] = ACTIONS(238), + [sym__comclear] = ACTIONS(238), + [sym__delcommand] = ACTIONS(238), + [sym__runtime] = ACTIONS(238), + [sym__wincmd] = ACTIONS(238), + [sym__sign] = ACTIONS(238), + [sym__filetype] = ACTIONS(238), + [sym__let] = ACTIONS(238), + [sym__unlet] = ACTIONS(238), + [sym__call] = ACTIONS(238), + [sym__break] = ACTIONS(238), + [sym__continue] = ACTIONS(238), + [sym__vertical] = ACTIONS(238), + [sym__leftabove] = ACTIONS(238), + [sym__aboveleft] = ACTIONS(238), + [sym__rightbelow] = ACTIONS(238), + [sym__belowright] = ACTIONS(238), + [sym__topleft] = ACTIONS(238), + [sym__botright] = ACTIONS(238), + [sym__edit] = ACTIONS(238), + [sym__enew] = ACTIONS(238), + [sym__find] = ACTIONS(238), + [sym__ex] = ACTIONS(238), + [sym__visual] = ACTIONS(238), + [sym__view] = ACTIONS(238), + [sym__eval] = ACTIONS(238), + [sym_unknown_command_name] = ACTIONS(238), }, [118] = { [aux_sym__statement_repeat1] = STATE(118), @@ -71073,9 +71111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(719), }, [120] = { - [sym__keycode_in] = STATE(3148), - [sym__immediate_keycode] = STATE(1063), - [aux_sym__map_lhs_repeat1] = STATE(994), + [sym__keycode_in] = STATE(3074), + [sym__immediate_keycode] = STATE(1071), + [aux_sym__map_lhs_repeat1] = STATE(996), [anon_sym_a_COLON] = ACTIONS(723), [aux_sym__bang_filter_command_argument_token3] = ACTIONS(725), [anon_sym_LBRACE] = ACTIONS(723), @@ -71144,7 +71182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation_comment] = ACTIONS(3), }, [121] = { - [sym__keycode_in] = STATE(3162), + [sym__keycode_in] = STATE(3226), [anon_sym_a_COLON] = ACTIONS(739), [aux_sym__bang_filter_command_argument_token3] = ACTIONS(741), [anon_sym_LBRACE] = ACTIONS(739), @@ -71216,7 +71254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 5, - STATE(2478), 1, + STATE(2601), 1, sym_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71286,7 +71324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_utf_DASH32le, anon_sym_default, [75] = 5, - STATE(2848), 1, + STATE(2858), 1, sym_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71355,7 +71393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_utf_DASH32le, anon_sym_default, [149] = 4, - STATE(1878), 1, + STATE(1928), 1, sym__immediate_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71421,7 +71459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_utf_DASH32le2, anon_sym_default2, [219] = 4, - STATE(1548), 1, + STATE(1572), 1, sym__immediate_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71487,7 +71525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_utf_DASH32le2, anon_sym_default2, [289] = 4, - STATE(1742), 1, + STATE(1703), 1, sym__immediate_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71553,7 +71591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_utf_DASH32le2, anon_sym_default2, [359] = 4, - STATE(1695), 1, + STATE(1722), 1, sym__immediate_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71619,7 +71657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_utf_DASH32le2, anon_sym_default2, [429] = 4, - STATE(1681), 1, + STATE(1658), 1, sym__immediate_encoding, ACTIONS(3), 2, sym__line_continuation, @@ -71695,11 +71733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(785), 1, anon_sym_BSLASH2, - STATE(1766), 1, + STATE(1718), 1, aux_sym__map_lhs_repeat1, - STATE(1935), 1, + STATE(1902), 1, sym__immediate_keycode, - STATE(2922), 1, + STATE(2991), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -71762,11 +71800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH2, ACTIONS(797), 1, aux_sym__map_rhs_token2, - STATE(1868), 1, + STATE(1846), 1, aux_sym__map_rhs_repeat1, - STATE(2008), 1, + STATE(2012), 1, sym__immediate_keycode, - STATE(2893), 1, + STATE(2904), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -71820,31 +71858,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [658] = 11, + [658] = 7, ACTIONS(729), 1, sym__keycode_modifier, - ACTIONS(803), 1, - anon_sym_LT, - ACTIONS(805), 1, - anon_sym_BSLASH2, - ACTIONS(807), 1, - aux_sym__map_rhs_token2, - STATE(1928), 1, - aux_sym__map_rhs_repeat1, - STATE(2126), 1, - sym__immediate_keycode, - STATE(2992), 1, + STATE(3204), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(809), 2, - sym__newline_or_pipe, - sym_comment, + ACTIONS(739), 2, + anon_sym_BSLASH2, + aux_sym__map_rhs_statement_token1, ACTIONS(801), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, + ACTIONS(741), 5, + anon_sym_BSLASH, + aux_sym__bang_filter_command_argument_token3, + anon_sym_LT, + anon_sym_LT2, + aux_sym__map_rhs_token1, ACTIONS(799), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, @@ -71886,28 +71920,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [735] = 7, + [727] = 11, ACTIONS(729), 1, sym__keycode_modifier, - STATE(2901), 1, + ACTIONS(807), 1, + anon_sym_LT, + ACTIONS(809), 1, + anon_sym_BSLASH2, + ACTIONS(811), 1, + aux_sym__map_rhs_token2, + STATE(1939), 1, + aux_sym__map_rhs_repeat1, + STATE(2141), 1, + sym__immediate_keycode, + STATE(3016), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(739), 2, - anon_sym_BSLASH2, - aux_sym__map_rhs_statement_token1, - ACTIONS(813), 3, + ACTIONS(813), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(805), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, - ACTIONS(741), 5, - anon_sym_BSLASH, - aux_sym__bang_filter_command_argument_token3, - anon_sym_LT, - anon_sym_LT2, - aux_sym__map_rhs_token1, - ACTIONS(811), 40, + ACTIONS(803), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, aux_sym__keycode_in_token4, @@ -71951,7 +71989,7 @@ static const uint16_t ts_small_parse_table[] = { [804] = 6, ACTIONS(729), 1, sym__keycode_modifier, - STATE(2913), 1, + STATE(2923), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -72013,7 +72051,7 @@ static const uint16_t ts_small_parse_table[] = { sym__keycode_modifier, ACTIONS(819), 1, aux_sym__map_rhs_token2, - STATE(2859), 1, + STATE(2981), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -72095,15 +72133,15 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_dict, ACTIONS(857), 1, sym_scope, - STATE(157), 1, + STATE(146), 1, sym__curly_braces_name_expression, - STATE(353), 1, + STATE(287), 1, sym_identifier, - STATE(541), 1, + STATE(546), 1, sym_scope_dict, - STATE(1521), 1, + STATE(1535), 1, sym_list_assignment, - STATE(2446), 1, + STATE(2639), 1, sym__let_assignment, ACTIONS(3), 2, sym__line_continuation, @@ -72114,26 +72152,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(845), 2, sym_string_literal, sym_float_literal, - STATE(513), 2, + STATE(518), 2, sym_index_expression, sym_field_expression, - STATE(1485), 2, + STATE(1464), 2, sym__assignment_variable, aux_sym_let_statement_repeat1, ACTIONS(841), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(512), 5, + STATE(519), 5, sym_scoped_identifier, sym_argument, sym__ident, sym_env_variable, sym_option, - STATE(943), 12, + STATE(945), 13, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72143,10 +72182,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1038] = 5, + [1039] = 5, ACTIONS(729), 1, sym__keycode_modifier, - STATE(3205), 1, + STATE(3101), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -72197,7 +72236,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [1097] = 26, + [1098] = 26, ACTIONS(833), 1, anon_sym_AMP, ACTIONS(835), 1, @@ -72224,15 +72263,15 @@ static const uint16_t ts_small_parse_table[] = { sym_register, ACTIONS(871), 1, sym__scope_dict, - STATE(173), 1, + STATE(172), 1, sym__curly_braces_name_expression, - STATE(482), 1, + STATE(491), 1, sym_identifier, - STATE(591), 1, + STATE(575), 1, sym_scope_dict, STATE(1569), 1, sym_list_assignment, - STATE(2726), 1, + STATE(2736), 1, sym__let_assignment, ACTIONS(3), 2, sym__line_continuation, @@ -72246,22 +72285,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(845), 2, sym_string_literal, sym_float_literal, - STATE(509), 2, + STATE(517), 2, sym_index_expression, sym_field_expression, - STATE(1570), 2, + STATE(1568), 2, sym__assignment_variable, aux_sym_let_statement_repeat1, - STATE(508), 5, + STATE(516), 5, sym_scoped_identifier, sym_argument, sym__ident, sym_env_variable, sym_option, - STATE(943), 12, + STATE(945), 13, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72271,10 +72311,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1197] = 5, + [1199] = 5, ACTIONS(729), 1, sym__keycode_modifier, - STATE(2870), 1, + STATE(2957), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -72324,10 +72364,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [1255] = 5, + [1257] = 5, ACTIONS(729), 1, sym__keycode_modifier, - STATE(2947), 1, + STATE(2875), 1, sym__keycode_in, ACTIONS(3), 2, sym__line_continuation, @@ -72377,58 +72417,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [1313] = 19, + [1315] = 22, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, ACTIONS(885), 1, - aux_sym_identifier_token1, + anon_sym_RBRACE, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, + ACTIONS(891), 1, + anon_sym_COMMA, ACTIONS(893), 1, anon_sym_DOLLAR, ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(901), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(901), 1, + anon_sym_DASH_GT, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - STATE(154), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(160), 1, - aux_sym_unlet_statement_repeat1, + STATE(617), 1, + sym_identifier, + STATE(2558), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(895), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(899), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(300), 21, + STATE(776), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72442,58 +72486,62 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1397] = 19, + [1406] = 22, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, ACTIONS(885), 1, - aux_sym_identifier_token1, + anon_sym_RBRACE, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, + ACTIONS(891), 1, + anon_sym_COMMA, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, + ACTIONS(899), 1, + anon_sym_LBRACK, ACTIONS(901), 1, - sym_integer_literal, + anon_sym_DASH_GT, ACTIONS(903), 1, - anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - STATE(154), 1, + ACTIONS(909), 1, + sym_integer_literal, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(160), 1, - aux_sym_unlet_statement_repeat1, + STATE(617), 1, + sym_identifier, + STATE(2558), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(907), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(911), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(733), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72507,50 +72555,156 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1481] = 19, - ACTIONS(881), 1, + [1497] = 6, + ACTIONS(915), 1, + anon_sym_LBRACE2, + ACTIONS(917), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(143), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 13, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(911), 27, + sym__scope_dict, + sym_scope, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(883), 1, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [1556] = 6, + ACTIONS(923), 1, + anon_sym_LBRACE2, + ACTIONS(926), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(143), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 13, anon_sym_LBRACE, - ACTIONS(885), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, anon_sym_AMP, - ACTIONS(889), 1, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(919), 27, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, anon_sym_LPAREN, - ACTIONS(893), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(897), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [1615] = 19, + ACTIONS(929), 1, + anon_sym_a_COLON, + ACTIONS(932), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + aux_sym_identifier_token1, + ACTIONS(938), 1, + anon_sym_AMP, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(947), 1, + anon_sym_DOLLAR, + ACTIONS(952), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(958), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(961), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(964), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(967), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(970), 1, sym_scope, - STATE(147), 1, + STATE(144), 1, aux_sym_unlet_statement_repeat1, - STATE(154), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(944), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, - sym_string_literal, - sym_float_literal, - sym_register, - ACTIONS(913), 3, + ACTIONS(950), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + ACTIONS(955), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72559,6 +72713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72572,42 +72727,42 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1565] = 22, + [1700] = 22, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(919), 1, - anon_sym_RBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(925), 1, - anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(931), 1, - sym_integer_literal, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_DASH_GT, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - STATE(514), 1, + ACTIONS(973), 1, + anon_sym_RBRACE, + ACTIONS(975), 1, + anon_sym_COMMA, + ACTIONS(979), 1, + sym_integer_literal, + ACTIONS(981), 1, + anon_sym_DASH_GT, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(620), 1, + STATE(622), 1, sym_identifier, - STATE(2548), 1, + STATE(2414), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -72615,11 +72770,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(929), 3, + ACTIONS(977), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(806), 20, + STATE(738), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72627,6 +72782,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72640,42 +72796,95 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1655] = 22, + [1791] = 6, + ACTIONS(987), 1, + anon_sym_LBRACE2, + ACTIONS(989), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(150), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 15, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(983), 25, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [1850] = 22, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(919), 1, + ACTIONS(885), 1, anon_sym_RBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(925), 1, + ACTIONS(891), 1, anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(935), 1, + ACTIONS(901), 1, anon_sym_DASH_GT, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(943), 1, + ACTIONS(993), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(620), 1, + STATE(617), 1, sym_identifier, - STATE(2548), 1, + STATE(2558), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -72683,18 +72892,151 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(941), 3, + ACTIONS(991), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(751), 21, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [1941] = 19, + ACTIONS(995), 1, + anon_sym_a_COLON, + ACTIONS(997), 1, + anon_sym_LBRACE, + ACTIONS(999), 1, + aux_sym_identifier_token1, + ACTIONS(1001), 1, + anon_sym_AMP, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, + anon_sym_DOLLAR, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1015), 1, + sym_integer_literal, + ACTIONS(1017), 1, + anon_sym_LBRACK, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, + sym__scope_dict, + ACTIONS(1023), 1, + sym_scope, + STATE(162), 1, + sym__curly_braces_name_expression, + STATE(163), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1009), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(1013), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(351), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [2026] = 19, + ACTIONS(995), 1, + anon_sym_a_COLON, + ACTIONS(997), 1, + anon_sym_LBRACE, + ACTIONS(999), 1, + aux_sym_identifier_token1, + ACTIONS(1001), 1, + anon_sym_AMP, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, + anon_sym_DOLLAR, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1015), 1, + sym_integer_literal, + ACTIONS(1017), 1, + anon_sym_LBRACK, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, + sym__scope_dict, + ACTIONS(1023), 1, + sym_scope, + STATE(144), 1, + aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(729), 20, + ACTIONS(1025), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72708,42 +73050,95 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1745] = 22, + [2111] = 6, + ACTIONS(987), 1, + anon_sym_LBRACE2, + ACTIONS(1027), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(155), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 15, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(911), 25, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [2170] = 22, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(945), 1, + ACTIONS(1029), 1, anon_sym_RBRACE, - ACTIONS(947), 1, + ACTIONS(1031), 1, anon_sym_COMMA, - ACTIONS(951), 1, + ACTIONS(1035), 1, sym_integer_literal, - ACTIONS(953), 1, + ACTIONS(1037), 1, anon_sym_DASH_GT, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, STATE(625), 1, sym_identifier, - STATE(2320), 1, + STATE(2474), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -72751,11 +73146,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(949), 3, + ACTIONS(1033), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(772), 20, + STATE(728), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72763,6 +73158,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72776,42 +73172,42 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1835] = 22, + [2261] = 22, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(919), 1, + ACTIONS(885), 1, anon_sym_RBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(925), 1, + ACTIONS(891), 1, anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(935), 1, + ACTIONS(901), 1, anon_sym_DASH_GT, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(957), 1, + ACTIONS(1041), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(620), 1, + STATE(617), 1, sym_identifier, - STATE(2548), 1, + STATE(2558), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -72819,11 +73215,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(955), 3, + ACTIONS(1039), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(782), 20, + STATE(726), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72831,6 +73227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72844,50 +73241,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1925] = 19, - ACTIONS(881), 1, + [2352] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(160), 1, + STATE(158), 1, aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(959), 3, + ACTIONS(1043), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72896,6 +73293,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72909,50 +73307,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2009] = 19, - ACTIONS(881), 1, + [2437] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(141), 1, + STATE(144), 1, aux_sym_unlet_statement_repeat1, - STATE(154), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(961), 3, + ACTIONS(1045), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72961,6 +73359,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -72974,61 +73373,112 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2093] = 22, - ACTIONS(835), 1, + [2522] = 6, + ACTIONS(1047), 1, + anon_sym_LBRACE2, + ACTIONS(1050), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(155), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 15, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(919), 25, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [2581] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1015), 1, + sym_integer_literal, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(963), 1, - anon_sym_RBRACE, - ACTIONS(965), 1, - anon_sym_COMMA, - ACTIONS(969), 1, - sym_integer_literal, - ACTIONS(971), 1, - anon_sym_DASH_GT, - STATE(514), 1, + STATE(144), 1, + aux_sym_unlet_statement_repeat1, + STATE(162), 1, sym__curly_braces_name_expression, - STATE(615), 1, - sym_identifier, - STATE(2487), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(967), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(764), 20, + ACTIONS(1053), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73042,50 +73492,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2183] = 19, - ACTIONS(881), 1, + [2666] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(158), 1, + STATE(144), 1, aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(973), 3, + ACTIONS(1055), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73094,6 +73544,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73107,50 +73558,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2267] = 19, - ACTIONS(881), 1, + [2751] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(160), 1, + STATE(144), 1, aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(975), 3, + ACTIONS(1057), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73159,6 +73610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73172,50 +73624,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2351] = 19, - ACTIONS(881), 1, + [2836] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(160), 1, + STATE(157), 1, aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(977), 3, + ACTIONS(1059), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73224,6 +73676,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73237,50 +73690,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2435] = 19, - ACTIONS(881), 1, + [2921] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(140), 1, - aux_sym_unlet_statement_repeat1, STATE(154), 1, + aux_sym_unlet_statement_repeat1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(979), 3, + ACTIONS(1061), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73289,6 +73742,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73302,73 +73756,91 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2519] = 6, - ACTIONS(985), 1, - anon_sym_LBRACE2, - ACTIONS(987), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(155), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 12, + [3006] = 22, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, anon_sym_LBRACE, + ACTIONS(887), 1, aux_sym_identifier_token1, + ACTIONS(889), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(981), 27, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, sym__scope_dict, + ACTIONS(905), 1, sym_scope, + ACTIONS(1063), 1, + anon_sym_RBRACE, + ACTIONS(1065), 1, + anon_sym_COMMA, + ACTIONS(1069), 1, + sym_integer_literal, + ACTIONS(1071), 1, + anon_sym_DASH_GT, + STATE(522), 1, + sym__curly_braces_name_expression, + STATE(612), 1, + sym_identifier, + STATE(2572), 1, + sym_dictionnary_entry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(837), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1067), 3, sym_string_literal, - anon_sym_a_COLON, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, - anon_sym_POUND_LBRACE, - [2577] = 6, - ACTIONS(985), 1, + STATE(789), 21, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [3097] = 6, + ACTIONS(915), 1, anon_sym_LBRACE2, - ACTIONS(993), 1, + ACTIONS(1073), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(156), 2, + STATE(142), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(991), 12, + ACTIONS(985), 13, anon_sym_LBRACE, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -73378,12 +73850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(989), 27, + ACTIONS(983), 27, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -73392,6 +73863,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -73406,154 +73878,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [2635] = 6, - ACTIONS(999), 1, - anon_sym_LBRACE2, - ACTIONS(1002), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(156), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(997), 12, + [3156] = 19, + ACTIONS(995), 1, + anon_sym_a_COLON, + ACTIONS(997), 1, anon_sym_LBRACE, + ACTIONS(999), 1, aux_sym_identifier_token1, + ACTIONS(1001), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, + anon_sym_DOLLAR, + ACTIONS(1011), 1, anon_sym_BANG2, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(995), 27, + ACTIONS(1017), 1, + anon_sym_LBRACK, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, + ACTIONS(1023), 1, sym_scope, + STATE(144), 1, + aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1013), 3, sym_string_literal, - anon_sym_a_COLON, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, + sym_float_literal, + sym_register, + ACTIONS(1075), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, + STATE(351), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [3241] = 22, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(1077), 1, + anon_sym_RBRACE, + ACTIONS(1079), 1, + anon_sym_COMMA, + ACTIONS(1083), 1, + sym_integer_literal, + ACTIONS(1085), 1, anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [2693] = 6, - ACTIONS(1005), 1, - anon_sym_LBRACE2, - ACTIONS(1007), 1, - aux_sym_identifier_token2, + STATE(522), 1, + sym__curly_braces_name_expression, + STATE(613), 1, + sym_identifier, + STATE(2560), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(159), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 14, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, + ACTIONS(837), 2, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(981), 25, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [2751] = 19, - ACTIONS(881), 1, + ACTIONS(1081), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(781), 21, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [3332] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(160), 1, + STATE(144), 1, aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(1009), 3, + ACTIONS(1087), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73562,6 +74065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73575,21 +74079,74 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2835] = 6, - ACTIONS(1005), 1, + [3417] = 6, + ACTIONS(1089), 1, anon_sym_LBRACE2, - ACTIONS(1011), 1, + ACTIONS(1091), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(174), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 13, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(911), 26, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [3475] = 6, + ACTIONS(1093), 1, + anon_sym_LBRACE2, + ACTIONS(1096), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(164), 2, + STATE(167), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(991), 14, + ACTIONS(921), 15, anon_sym_LBRACE, aux_sym_identifier_token1, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -73601,8 +74158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(989), 25, + ACTIONS(919), 24, + sym__newline_or_pipe, sym__scope_dict, + sym_comment, anon_sym_a_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -73612,11 +74171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73627,50 +74183,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [2893] = 19, - ACTIONS(1013), 1, + [3533] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1016), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1019), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1022), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1025), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1031), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1036), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1042), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1045), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1048), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1051), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1054), 1, + ACTIONS(1125), 1, sym_scope, - STATE(154), 1, + STATE(183), 1, sym__curly_braces_name_expression, - STATE(160), 1, + STATE(194), 1, aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1028), 2, + ACTIONS(1045), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1034), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(1039), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(300), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73679,6 +74234,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73692,50 +74248,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2977] = 19, - ACTIONS(881), 1, + [3617] = 19, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1015), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(160), 1, + ACTIONS(1127), 1, + anon_sym_BANG, + STATE(149), 1, aux_sym_unlet_statement_repeat1, + STATE(162), 1, + sym__curly_braces_name_expression, + STATE(237), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + anon_sym_BANG2, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(1057), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - STATE(300), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73744,6 +74299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73757,61 +74313,59 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3061] = 22, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [3701] = 20, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(919), 1, - anon_sym_RBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(925), 1, - anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(1137), 1, + anon_sym_QMARK, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1145), 1, + anon_sym_POUND, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1151), 1, + sym_integer_literal, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_DASH_GT, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1061), 1, - sym_integer_literal, - STATE(514), 1, + STATE(285), 1, + sym_match_case, + STATE(550), 1, sym__curly_braces_name_expression, - STATE(620), 1, - sym_identifier, - STATE(2548), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1059), 3, + ACTIONS(1149), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(732), 20, + STATE(656), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73825,61 +74379,58 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3151] = 22, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [3787] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1117), 1, + sym_integer_literal, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1063), 1, - anon_sym_RBRACE, - ACTIONS(1065), 1, - anon_sym_COMMA, - ACTIONS(1069), 1, - sym_integer_literal, - ACTIONS(1071), 1, - anon_sym_DASH_GT, - STATE(514), 1, + STATE(183), 1, sym__curly_braces_name_expression, - STATE(612), 1, - sym_identifier, - STATE(2280), 1, - sym_dictionnary_entry, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1053), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1067), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(780), 20, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -73893,21 +74444,22 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3241] = 6, - ACTIONS(1073), 1, + [3871] = 6, + ACTIONS(1161), 1, anon_sym_LBRACE2, - ACTIONS(1076), 1, + ACTIONS(1163), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(164), 2, + STATE(177), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 14, + ACTIONS(985), 15, anon_sym_LBRACE, aux_sym_identifier_token1, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -73919,8 +74471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(995), 25, + ACTIONS(983), 24, + sym__newline_or_pipe, sym__scope_dict, + sym_comment, anon_sym_a_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -73930,11 +74484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73945,117 +74496,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [3299] = 22, + [3929] = 20, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1079), 1, - anon_sym_RBRACE, - ACTIONS(1081), 1, - anon_sym_COMMA, - ACTIONS(1085), 1, + ACTIONS(1137), 1, + anon_sym_QMARK, + ACTIONS(1145), 1, + anon_sym_POUND, + ACTIONS(1167), 1, sym_integer_literal, - ACTIONS(1087), 1, - anon_sym_DASH_GT, - STATE(514), 1, + STATE(291), 1, + sym_match_case, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(609), 1, - sym_identifier, - STATE(2562), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(731), 20, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [3389] = 19, - ACTIONS(1089), 1, - anon_sym_a_COLON, - ACTIONS(1091), 1, - anon_sym_LBRACE, - ACTIONS(1093), 1, - aux_sym_identifier_token1, - ACTIONS(1095), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, - anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, - anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, - sym__scope_dict, - ACTIONS(1115), 1, - sym_scope, - STATE(169), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(959), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1099), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1165), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(592), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74064,6 +74548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74077,21 +74562,22 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3472] = 6, - ACTIONS(1117), 1, + [4015] = 6, + ACTIONS(1169), 1, anon_sym_LBRACE2, - ACTIONS(1120), 1, + ACTIONS(1172), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(167), 2, + STATE(174), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 12, + ACTIONS(921), 13, anon_sym_LBRACE, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -74101,19 +74587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(995), 26, + ACTIONS(919), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, sym_comment, anon_sym_a_COLON, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -74128,164 +74614,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [3529] = 6, - ACTIONS(1123), 1, - anon_sym_LBRACE2, - ACTIONS(1126), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(168), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(997), 14, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(995), 24, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [3586] = 19, - ACTIONS(1129), 1, - anon_sym_a_COLON, - ACTIONS(1132), 1, - anon_sym_LBRACE, - ACTIONS(1135), 1, - aux_sym_identifier_token1, - ACTIONS(1138), 1, - anon_sym_AMP, - ACTIONS(1141), 1, + [4073] = 20, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(1147), 1, - anon_sym_DOLLAR, - ACTIONS(1150), 1, + ACTIONS(843), 1, anon_sym_BANG2, - ACTIONS(1156), 1, - sym_integer_literal, - ACTIONS(1159), 1, - anon_sym_LBRACK, - ACTIONS(1162), 1, + ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(1165), 1, - sym__scope_dict, - ACTIONS(1168), 1, - sym_scope, - STATE(169), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1034), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1144), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1153), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(493), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [3669] = 19, - ACTIONS(1089), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1171), 1, - anon_sym_BANG, - STATE(174), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + ACTIONS(1175), 1, + anon_sym_COMMA, + ACTIONS(1177), 1, + anon_sym_SEMI, + ACTIONS(1181), 1, + sym_integer_literal, + ACTIONS(1183), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(217), 1, - sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 3, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG2, - ACTIONS(1105), 3, + ACTIONS(1179), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(621), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74294,6 +74666,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74307,115 +74680,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3752] = 20, - ACTIONS(1089), 1, + [4159] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, - anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1109), 1, - anon_sym_LBRACK, ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, + anon_sym_DOLLAR, ACTIONS(1113), 1, - sym__scope_dict, - ACTIONS(1115), 1, - sym_scope, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - sym_integer_literal, - STATE(193), 1, - sym__curly_braces_name_expression, - STATE(286), 1, - sym_match_case, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1099), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1177), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(463), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [3837] = 20, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1117), 1, + sym_integer_literal, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1181), 1, - anon_sym_COMMA, - ACTIONS(1183), 1, - anon_sym_SEMI, - ACTIONS(1187), 1, - sym_integer_literal, - ACTIONS(1189), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1057), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1185), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(610), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74424,6 +74731,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74437,21 +74745,22 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3922] = 6, - ACTIONS(1191), 1, + [4243] = 6, + ACTIONS(1161), 1, anon_sym_LBRACE2, - ACTIONS(1193), 1, + ACTIONS(1185), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(191), 2, + STATE(167), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(983), 14, + ACTIONS(913), 15, anon_sym_LBRACE, aux_sym_identifier_token1, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -74463,7 +74772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(981), 24, + ACTIONS(911), 24, sym__newline_or_pipe, sym__scope_dict, sym_comment, @@ -74476,8 +74785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74488,49 +74797,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [3979] = 19, - ACTIONS(1089), 1, + [4301] = 20, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1011), 1, anon_sym_BANG2, + ACTIONS(1017), 1, + anon_sym_LBRACK, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, + sym__scope_dict, + ACTIONS(1023), 1, + sym_scope, + ACTIONS(1137), 1, + anon_sym_QMARK, + ACTIONS(1145), 1, + anon_sym_POUND, + ACTIONS(1189), 1, + sym_integer_literal, + STATE(162), 1, + sym__curly_braces_name_expression, + STATE(385), 1, + sym_match_case, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1187), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(384), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [4387] = 19, + ACTIONS(1099), 1, + anon_sym_a_COLON, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + aux_sym_identifier_token1, + ACTIONS(1105), 1, + anon_sym_AMP, ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(169), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1057), 2, + ACTIONS(1075), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74539,6 +74914,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74552,49 +74928,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4062] = 19, - ACTIONS(1089), 1, + [4471] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1107), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(169), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(911), 2, + ACTIONS(1055), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74603,6 +74979,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74616,38 +74993,38 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4145] = 21, + [4555] = 21, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1171), 1, + ACTIONS(1127), 1, anon_sym_BANG, - ACTIONS(1197), 1, + ACTIONS(1193), 1, sym_integer_literal, - STATE(256), 1, + STATE(263), 1, sym_bang, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(824), 1, + STATE(837), 1, sym_field_expression, - STATE(1780), 1, + STATE(1797), 1, sym_function_declaration, ACTIONS(3), 2, sym__line_continuation, @@ -74656,20 +75033,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG2, - ACTIONS(1195), 3, + ACTIONS(1191), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(918), 4, + STATE(813), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(954), 16, + STATE(947), 17, sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74682,50 +75060,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4232] = 20, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [4643] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1117), 1, + sym_integer_literal, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1201), 1, - sym_integer_literal, - STATE(359), 1, - sym_match_case, - STATE(514), 1, + ACTIONS(1127), 1, + anon_sym_BANG, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(187), 1, + aux_sym_unlet_statement_repeat1, + STATE(251), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1109), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1199), 3, + anon_sym_BANG2, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(596), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74734,6 +75111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74747,49 +75125,101 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4317] = 19, + [4727] = 6, ACTIONS(1089), 1, - anon_sym_a_COLON, - ACTIONS(1091), 1, + anon_sym_LBRACE2, + ACTIONS(1195), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(166), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 13, anon_sym_LBRACE, - ACTIONS(1093), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, anon_sym_AMP, - ACTIONS(1097), 1, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(983), 26, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, anon_sym_LPAREN, - ACTIONS(1101), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [4785] = 19, + ACTIONS(1099), 1, + anon_sym_a_COLON, + ACTIONS(1101), 1, + anon_sym_LBRACE, ACTIONS(1103), 1, - anon_sym_BANG2, + aux_sym_identifier_token1, + ACTIONS(1105), 1, + anon_sym_AMP, ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(184), 1, + STATE(168), 1, aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(973), 2, + ACTIONS(1061), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74798,6 +75228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74811,63 +75242,66 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4400] = 19, + [4869] = 21, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(885), 1, - aux_sym_identifier_token1, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(901), 1, - sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1171), 1, + ACTIONS(1127), 1, anon_sym_BANG, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(161), 1, - aux_sym_unlet_statement_repeat1, - STATE(259), 1, + ACTIONS(1193), 1, + sym_integer_literal, + STATE(253), 1, sym_bang, + STATE(522), 1, + sym__curly_braces_name_expression, + STATE(837), 1, + sym_field_expression, + STATE(1810), 1, + sym_function_declaration, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 3, + ACTIONS(837), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG2, - ACTIONS(899), 3, + ACTIONS(1191), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(300), 21, - sym_scope_dict, + STATE(813), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, + STATE(947), 17, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_method_expression, sym_env_variable, @@ -74875,50 +75309,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4483] = 20, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1203), 1, + [4957] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1211), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1221), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1223), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(1125), 1, sym_scope, - STATE(268), 1, - sym_match_case, - STATE(543), 1, + STATE(180), 1, + aux_sym_unlet_statement_repeat1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(1059), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1219), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(660), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74927,6 +75360,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -74940,48 +75374,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4568] = 18, - ACTIONS(1203), 1, + [5041] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1211), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(1117), 1, + sym_integer_literal, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1235), 1, - sym_integer_literal, - STATE(543), 1, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(1025), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(1233), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(706), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74990,6 +75425,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75003,49 +75439,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4649] = 19, - ACTIONS(1089), 1, + [5125] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1107), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(169), 1, + STATE(176), 1, aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(975), 2, + ACTIONS(1043), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75054,6 +75490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75067,49 +75504,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4732] = 19, - ACTIONS(1089), 1, + [5209] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1107), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(175), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(961), 2, + ACTIONS(1087), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75118,6 +75555,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75131,34 +75569,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4815] = 19, - ACTIONS(1089), 1, + [5293] = 19, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1107), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(169), 1, + STATE(179), 1, aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -75166,14 +75604,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1009), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75182,6 +75620,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75195,50 +75634,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4898] = 20, - ACTIONS(1173), 1, + [5377] = 20, + ACTIONS(1137), 1, anon_sym_QMARK, - ACTIONS(1175), 1, + ACTIONS(1145), 1, anon_sym_POUND, - ACTIONS(1237), 1, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1255), 1, + ACTIONS(1215), 1, sym_integer_literal, - ACTIONS(1257), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1223), 1, sym_scope, - STATE(389), 1, + STATE(401), 1, sym_match_case, - STATE(563), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1253), 3, + ACTIONS(1213), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(800), 21, + STATE(755), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75247,6 +75686,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75260,49 +75700,50 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4983] = 19, - ACTIONS(1089), 1, + [5463] = 20, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, - STATE(169), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + ACTIONS(1137), 1, + anon_sym_QMARK, + ACTIONS(1145), 1, + anon_sym_POUND, + ACTIONS(1227), 1, + sym_integer_literal, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(311), 1, + sym_match_case, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(895), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1225), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(492), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75311,6 +75752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75324,115 +75766,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5066] = 21, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, - sym__scope_dict, - ACTIONS(939), 1, - sym_scope, - ACTIONS(1171), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - sym_integer_literal, - STATE(255), 1, - sym_bang, - STATE(514), 1, - sym__curly_braces_name_expression, - STATE(824), 1, - sym_field_expression, - STATE(1863), 1, - sym_function_declaration, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(837), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG2, - ACTIONS(1195), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(918), 4, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - STATE(954), 16, - sym_scope_dict, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [5153] = 19, - ACTIONS(1089), 1, + [5549] = 18, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1159), 1, sym_scope, - STATE(169), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + ACTIONS(1233), 1, + sym_integer_literal, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(977), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1099), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1229), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(1231), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(679), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75441,6 +75816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75454,49 +75830,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5236] = 19, - ACTIONS(1089), 1, + [5631] = 19, + ACTIONS(1235), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1241), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1244), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1247), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1253), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1256), 1, anon_sym_BANG2, - ACTIONS(1107), 1, + ACTIONS(1262), 1, sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1265), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1268), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1271), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1274), 1, sym_scope, - STATE(186), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, + STATE(194), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(979), 2, + ACTIONS(950), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1259), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75505,6 +75881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75518,49 +75895,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5319] = 19, - ACTIONS(1089), 1, + [5715] = 19, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - STATE(166), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + ACTIONS(1277), 1, + anon_sym_RBRACE, + ACTIONS(1281), 1, + sym_integer_literal, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(2844), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(913), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1099), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1279), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75569,6 +75945,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75582,101 +75959,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5402] = 6, - ACTIONS(1191), 1, - anon_sym_LBRACE2, - ACTIONS(1265), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(168), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 14, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(989), 24, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, + [5798] = 19, + ACTIONS(835), 1, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [5459] = 20, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(885), 1, - aux_sym_identifier_token1, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1173), 1, - anon_sym_QMARK, ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1285), 1, sym_integer_literal, - STATE(154), 1, + ACTIONS(1287), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(383), 1, - sym_match_case, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1267), 3, + ACTIONS(1283), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(382), 21, + STATE(673), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75685,6 +76009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75698,138 +76023,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5544] = 6, - ACTIONS(1271), 1, - anon_sym_LBRACE2, - ACTIONS(1273), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(194), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 12, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(981), 26, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [5601] = 6, - ACTIONS(1271), 1, - anon_sym_LBRACE2, - ACTIONS(1275), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(167), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 12, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(989), 26, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [5658] = 19, + [5881] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1277), 1, - anon_sym_RBRACE, ACTIONS(1281), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1289), 1, + anon_sym_RBRACE, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -75841,7 +76064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75850,6 +76073,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75863,36 +76087,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5740] = 19, + [5964] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1283), 1, + ACTIONS(1291), 1, anon_sym_RBRACE, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -75904,7 +76128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75913,6 +76137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75926,48 +76151,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5822] = 19, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [6047] = 18, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1285), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, + ACTIONS(1295), 1, sym_integer_literal, - ACTIONS(1291), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1287), 3, + ACTIONS(1229), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1293), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(692), 21, + STATE(792), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75976,6 +76200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -75989,36 +76214,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5904] = 19, + [6128] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1293), 1, - anon_sym_COMMA, - ACTIONS(1297), 1, - sym_integer_literal, + ACTIONS(1177), 1, + anon_sym_SEMI, ACTIONS(1299), 1, + sym_integer_literal, + ACTIONS(1301), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -76026,11 +76251,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 3, + ACTIONS(1297), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(693), 21, + STATE(618), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76039,6 +76264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76052,15 +76278,16 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5986] = 3, + [6211] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 13, + ACTIONS(1305), 14, anon_sym_LBRACE, aux_sym_identifier_token1, aux_sym_identifier_token2, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -76070,13 +76297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1301), 28, + ACTIONS(1303), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE2, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -76085,6 +76311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -76099,36 +76326,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [6036] = 19, + [6262] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1305), 1, + ACTIONS(1307), 1, anon_sym_RBRACE, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -76140,7 +76367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76149,6 +76376,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76162,36 +76390,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6118] = 19, + [6345] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1307), 1, + ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -76203,7 +76431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76212,6 +76440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76225,47 +76454,96 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6200] = 18, - ACTIONS(1237), 1, - anon_sym_a_COLON, - ACTIONS(1239), 1, + [6428] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1313), 14, anon_sym_LBRACE, - ACTIONS(1241), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + aux_sym_identifier_token2, anon_sym_AMP, - ACTIONS(1245), 1, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1311), 28, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE2, anon_sym_LPAREN, - ACTIONS(1249), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(1259), 1, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [6479] = 19, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1311), 1, + ACTIONS(1281), 1, sym_integer_literal, - STATE(563), 1, + ACTIONS(1315), 1, + anon_sym_RBRACE, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(2844), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1231), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1309), 3, + ACTIONS(1279), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(808), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76274,6 +76552,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76287,36 +76566,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6280] = 19, + [6562] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1313), 1, + ACTIONS(1317), 1, anon_sym_RBRACE, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -76328,7 +76607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76337,6 +76616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76350,95 +76630,176 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6362] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1303), 15, + [6645] = 19, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, anon_sym_LBRACE, + ACTIONS(887), 1, aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(1319), 1, + anon_sym_COMMA, + ACTIONS(1323), 1, + sym_integer_literal, + ACTIONS(1325), 1, + anon_sym_RBRACK, + STATE(522), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(837), 2, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(1301), 26, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, + ACTIONS(1321), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(647), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [6728] = 19, + ACTIONS(835), 1, anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - [6412] = 19, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(1327), 1, + anon_sym_COMMA, + ACTIONS(1331), 1, + sym_integer_literal, + ACTIONS(1333), 1, + anon_sym_RBRACK, + STATE(522), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(837), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1329), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(674), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [6811] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1281), 1, + ACTIONS(1335), 1, + anon_sym_COMMA, + ACTIONS(1339), 1, sym_integer_literal, - ACTIONS(1315), 1, - anon_sym_RBRACE, - STATE(514), 1, + ACTIONS(1341), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1337), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(660), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76447,6 +76808,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76460,15 +76822,18 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6494] = 3, + [6894] = 5, + ACTIONS(1345), 1, + aux_sym_argument_token1, + ACTIONS(1347), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 13, - anon_sym_LBRACE, + ACTIONS(1349), 12, aux_sym_identifier_token1, - aux_sym_identifier_token2, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -76478,13 +76843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1317), 28, + ACTIONS(1343), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -76493,6 +76857,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -76507,85 +76872,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [6544] = 5, - ACTIONS(1323), 1, - aux_sym_argument_token1, - ACTIONS(1325), 1, - aux_sym_argument_token2, + [6949] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 11, + ACTIONS(1305), 16, + anon_sym_LBRACE, aux_sym_identifier_token1, - anon_sym_AMP, + aux_sym_identifier_token2, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, + anon_sym_STAR2, anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1321), 28, + ACTIONS(1303), 26, sym__scope_dict, - sym_scope, - sym_string_literal, anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LBRACE2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - sym_float_literal, anon_sym_LBRACK, anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [6598] = 19, + [7000] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1329), 1, + ACTIONS(1351), 1, anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(1355), 1, sym_integer_literal, - ACTIONS(1335), 1, + ACTIONS(1357), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -76593,11 +76957,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1331), 3, + ACTIONS(1353), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(678), 21, + STATE(690), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76606,6 +76970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76619,36 +76984,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6680] = 19, + [7083] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1337), 1, + ACTIONS(1359), 1, anon_sym_RBRACE, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -76660,7 +77025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76669,6 +77034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76682,36 +77048,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6762] = 19, + [7166] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1339), 1, + ACTIONS(1361), 1, anon_sym_RBRACE, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, + STATE(2844), 1, sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, @@ -76723,7 +77089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76732,6 +77098,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76745,48 +77112,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6844] = 19, + [7249] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1183), 1, - anon_sym_SEMI, - ACTIONS(1343), 1, + ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1345), 1, - anon_sym_RBRACK, - STATE(514), 1, + ACTIONS(1363), 1, + anon_sym_RBRACE, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(2844), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1341), 3, + ACTIONS(1279), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(613), 21, + STATE(811), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76795,6 +77162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76808,36 +77176,82 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6926] = 19, + [7332] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1313), 16, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1311), 26, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [7383] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1347), 1, - anon_sym_COMMA, - ACTIONS(1351), 1, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(1369), 1, sym_integer_literal, - ACTIONS(1353), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -76845,11 +77259,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 3, + ACTIONS(1367), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(645), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [7463] = 18, + ACTIONS(1099), 1, + anon_sym_a_COLON, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + aux_sym_identifier_token1, + ACTIONS(1105), 1, + anon_sym_AMP, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1117), 1, + sym_integer_literal, + ACTIONS(1119), 1, + anon_sym_LBRACK, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, + sym__scope_dict, + ACTIONS(1125), 1, + sym_scope, + STATE(183), 1, + sym__curly_braces_name_expression, + STATE(189), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1109), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(643), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76858,6 +77334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76871,48 +77348,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7008] = 19, + [7543] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1281), 1, + ACTIONS(1373), 1, sym_integer_literal, - ACTIONS(1355), 1, - anon_sym_RBRACE, - STATE(514), 1, + ACTIONS(1375), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1371), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(861), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76921,6 +77396,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76934,36 +77410,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7090] = 19, + [7623] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1181), 1, - anon_sym_COMMA, - ACTIONS(1359), 1, + ACTIONS(1377), 1, + anon_sym_COLON, + ACTIONS(1381), 1, sym_integer_literal, - ACTIONS(1361), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -76971,11 +77445,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1357), 3, + ACTIONS(1379), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(691), 21, + STATE(790), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76984,6 +77458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -76997,48 +77472,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7172] = 19, + [7703] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1281), 1, + ACTIONS(1385), 1, sym_integer_literal, - ACTIONS(1363), 1, - anon_sym_RBRACE, - STATE(514), 1, + ACTIONS(1387), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77047,6 +77520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77060,15 +77534,16 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7254] = 3, + [7783] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 15, + ACTIONS(1305), 16, anon_sym_LBRACE, aux_sym_identifier_token1, aux_sym_identifier_token2, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -77080,8 +77555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1317), 26, + ACTIONS(1303), 25, + sym__newline_or_pipe, sym__scope_dict, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE2, anon_sym_PLUS_EQ, @@ -77092,11 +77569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -77107,46 +77581,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [7304] = 18, - ACTIONS(1089), 1, + [7833] = 18, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - STATE(188), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + ACTIONS(1385), 1, + sym_integer_literal, + ACTIONS(1389), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77155,6 +77629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77168,34 +77643,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7383] = 18, + [7913] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1367), 1, + ACTIONS(1377), 1, + anon_sym_COLON, + ACTIONS(1393), 1, sym_integer_literal, - ACTIONS(1369), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77203,11 +77678,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1365), 3, + ACTIONS(1391), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(880), 21, + STATE(741), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77216,6 +77691,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77229,34 +77705,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7462] = 18, + [7993] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1371), 1, - anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1395), 1, + anon_sym_RPAREN, + ACTIONS(1399), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77264,11 +77740,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1373), 3, + ACTIONS(1397), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(760), 21, + STATE(669), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77277,6 +77753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77290,34 +77767,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7541] = 18, + [8073] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(1381), 1, + ACTIONS(1403), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1405), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77325,11 +77802,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1379), 3, + ACTIONS(1401), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(712), 21, + STATE(835), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77338,6 +77815,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77351,107 +77829,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7620] = 18, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [8153] = 18, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, - sym__scope_dict, - ACTIONS(939), 1, - sym_scope, - ACTIONS(1383), 1, - anon_sym_COLON, - ACTIONS(1387), 1, - sym_integer_literal, - STATE(514), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(803), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [7699] = 18, - ACTIONS(835), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1015), 1, + sym_integer_literal, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1391), 1, - sym_integer_literal, - ACTIONS(1393), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(162), 1, sym__curly_braces_name_expression, + STATE(165), 1, + aux_sym_unlet_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77460,6 +77877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77473,15 +77891,16 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7778] = 3, + [8233] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 15, + ACTIONS(1313), 16, anon_sym_LBRACE, aux_sym_identifier_token1, aux_sym_identifier_token2, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -77493,7 +77912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1317), 25, + ACTIONS(1311), 25, sym__newline_or_pipe, sym__scope_dict, sym_comment, @@ -77507,8 +77926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -77519,80 +77938,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [7827] = 3, + [8283] = 18, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(1385), 1, + sym_integer_literal, + ACTIONS(1407), 1, + anon_sym_RBRACK, + STATE(522), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 15, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, + ACTIONS(837), 2, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(1301), 25, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [7876] = 18, + ACTIONS(1383), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(624), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [8363] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1395), 1, - anon_sym_COLON, - ACTIONS(1399), 1, + ACTIONS(1385), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1409), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77600,11 +78035,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(765), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77613,6 +78048,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77626,15 +78062,18 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7955] = 3, + [8443] = 5, + ACTIONS(1411), 1, + aux_sym_argument_token1, + ACTIONS(1413), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 13, - anon_sym_LBRACE, + ACTIONS(1349), 12, aux_sym_identifier_token1, - aux_sym_identifier_token2, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -77644,20 +78083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1301), 27, + ACTIONS(1343), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, sym_comment, anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -77672,34 +78111,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [8004] = 18, + [8497] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1403), 1, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(1419), 1, sym_integer_literal, - ACTIONS(1405), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77707,11 +78146,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1401), 3, + ACTIONS(1417), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(826), 21, + STATE(650), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77720,6 +78159,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77733,34 +78173,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8083] = 18, + [8577] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1407), 1, - anon_sym_RPAREN, - ACTIONS(1411), 1, + ACTIONS(1421), 1, + anon_sym_COLON, + ACTIONS(1425), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77768,11 +78208,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 3, + ACTIONS(1423), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(655), 21, + STATE(796), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77781,6 +78221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77794,34 +78235,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8162] = 18, + [8657] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1415), 1, + ACTIONS(1427), 1, + anon_sym_RPAREN, + ACTIONS(1431), 1, sym_integer_literal, - ACTIONS(1417), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77829,11 +78270,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1413), 3, + ACTIONS(1429), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(827), 21, + STATE(629), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77842,6 +78283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77855,34 +78297,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8241] = 18, + [8737] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1419), 1, - anon_sym_RPAREN, - ACTIONS(1423), 1, + ACTIONS(1435), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1437), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77890,11 +78332,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1421), 3, + ACTIONS(1433), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(650), 21, + STATE(810), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77903,6 +78345,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77916,34 +78359,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8320] = 18, + [8817] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1439), 1, + anon_sym_RPAREN, + ACTIONS(1443), 1, sym_integer_literal, - ACTIONS(1425), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -77951,11 +78394,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1441), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(676), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77964,6 +78407,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -77977,46 +78421,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8399] = 18, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [8897] = 18, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1015), 1, + sym_integer_literal, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1427), 1, - anon_sym_COLON, - ACTIONS(1431), 1, - sym_integer_literal, - STATE(514), 1, + STATE(156), 1, + aux_sym_unlet_statement_repeat1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1429), 3, + ACTIONS(1013), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(718), 21, + STATE(351), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78025,6 +78469,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78038,34 +78483,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8478] = 18, + [8977] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1433), 1, - anon_sym_COLON, - ACTIONS(1437), 1, + ACTIONS(1445), 1, + anon_sym_RPAREN, + ACTIONS(1449), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78073,11 +78518,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1435), 3, + ACTIONS(1447), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(781), 21, + STATE(691), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78086,6 +78531,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78099,34 +78545,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8557] = 18, + [9057] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1441), 1, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(1455), 1, sym_integer_literal, - ACTIONS(1443), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78134,11 +78580,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1439), 3, + ACTIONS(1453), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(840), 21, + STATE(632), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78147,6 +78593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78160,34 +78607,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8636] = 18, + [9137] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1445), 1, - anon_sym_RPAREN, - ACTIONS(1449), 1, + ACTIONS(1457), 1, + anon_sym_COLON, + ACTIONS(1461), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78195,11 +78642,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1447), 3, + ACTIONS(1459), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(670), 21, + STATE(775), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78208,6 +78655,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78221,34 +78669,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8715] = 18, + [9217] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1453), 1, + ACTIONS(1465), 1, sym_integer_literal, - ACTIONS(1455), 1, + ACTIONS(1467), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78256,11 +78704,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1451), 3, + ACTIONS(1463), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(887), 21, + STATE(831), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78269,6 +78717,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78282,34 +78731,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8794] = 18, + [9297] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1469), 1, + anon_sym_RPAREN, + ACTIONS(1473), 1, sym_integer_literal, - ACTIONS(1457), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78317,11 +78766,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1471), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(687), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78330,6 +78779,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78343,34 +78793,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8873] = 18, + [9377] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1385), 1, sym_integer_literal, - ACTIONS(1459), 1, + ACTIONS(1475), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78378,11 +78828,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78391,6 +78841,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78404,95 +78855,128 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8952] = 18, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, + [9457] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1313), 14, anon_sym_LBRACE, - ACTIONS(921), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + aux_sym_identifier_token2, anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1311), 27, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(939), 1, sym_scope, - ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_RBRACK, - STATE(514), 1, - sym__curly_braces_name_expression, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [9507] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1305), 14, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(1461), 3, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1303), 27, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, - STATE(889), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [9031] = 18, + anon_sym_POUND_LBRACE, + [9557] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1395), 1, - anon_sym_COLON, - ACTIONS(1469), 1, + ACTIONS(1477), 1, + anon_sym_RPAREN, + ACTIONS(1481), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78500,11 +78984,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1467), 3, + ACTIONS(1479), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(801), 21, + STATE(675), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78513,6 +78997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78526,34 +79011,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9110] = 18, + [9637] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1471), 1, - anon_sym_RPAREN, - ACTIONS(1475), 1, + ACTIONS(1385), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1483), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78561,11 +79046,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1473), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(672), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78574,6 +79059,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78587,34 +79073,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9189] = 18, + [9717] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1385), 1, sym_integer_literal, - ACTIONS(1477), 1, + ACTIONS(1485), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78622,11 +79108,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78635,6 +79121,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78648,46 +79135,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9268] = 18, + [9797] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1281), 1, + ACTIONS(1385), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1487), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2802), 1, - sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(834), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78696,6 +79183,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78709,34 +79197,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9347] = 18, + [9877] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1479), 1, - anon_sym_RPAREN, - ACTIONS(1483), 1, + ACTIONS(1491), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1493), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78744,11 +79232,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1481), 3, + ACTIONS(1489), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(661), 21, + STATE(898), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78757,6 +79245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78770,46 +79259,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9426] = 18, - ACTIONS(881), 1, + [9957] = 18, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(901), 1, + ACTIONS(1117), 1, sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1125), 1, sym_scope, - STATE(151), 1, + STATE(171), 1, aux_sym_unlet_statement_repeat1, - STATE(154), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1115), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(300), 21, + STATE(461), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78818,6 +79307,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78831,34 +79321,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9505] = 18, + [10037] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1485), 1, - anon_sym_RPAREN, - ACTIONS(1489), 1, + ACTIONS(1385), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1495), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -78866,11 +79356,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1487), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(681), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78879,6 +79369,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -78892,155 +79383,63 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9584] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1319), 13, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1317), 27, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [9633] = 5, - ACTIONS(1491), 1, - aux_sym_argument_token1, - ACTIONS(1493), 1, - aux_sym_argument_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1327), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1321), 27, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [9686] = 19, + [10117] = 20, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1497), 1, + ACTIONS(1193), 1, sym_integer_literal, - ACTIONS(1499), 1, - anon_sym_DASH_GT, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(663), 1, - sym_identifier, + STATE(837), 1, + sym_field_expression, + STATE(1842), 1, + sym_function_declaration, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 3, + ACTIONS(1191), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(838), 20, - sym_scope_dict, + STATE(813), 4, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, + STATE(947), 17, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_method_expression, sym_env_variable, @@ -79048,34 +79447,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9767] = 18, + [10201] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1503), 1, + ACTIONS(1499), 1, sym_integer_literal, - ACTIONS(1505), 1, + ACTIONS(1501), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79083,11 +79482,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1501), 3, + ACTIONS(1497), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(862), 21, + STATE(830), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79096,6 +79495,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79109,34 +79509,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9846] = 18, + [10281] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1507), 1, - anon_sym_RPAREN, - ACTIONS(1511), 1, + ACTIONS(1505), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1507), 1, + anon_sym_RBRACK, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79144,11 +79544,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1509), 3, + ACTIONS(1503), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(694), 21, + STATE(840), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79157,6 +79557,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79170,34 +79571,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9925] = 18, + [10361] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1515), 1, + ACTIONS(1511), 1, sym_integer_literal, - ACTIONS(1517), 1, + ACTIONS(1513), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79205,11 +79606,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1513), 3, + ACTIONS(1509), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(898), 21, + STATE(834), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79218,6 +79619,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79231,34 +79633,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10004] = 18, + [10441] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, - sym_integer_literal, + ACTIONS(1515), 1, + anon_sym_COLON, ACTIONS(1519), 1, - anon_sym_RBRACK, - STATE(514), 1, + sym_integer_literal, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79266,11 +79668,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1517), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(800), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79279,6 +79681,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79292,34 +79695,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10083] = 18, + [10521] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1523), 1, sym_integer_literal, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79327,11 +79730,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1521), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(845), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79340,6 +79743,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79353,62 +79757,61 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10162] = 20, + [10601] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1197), 1, + ACTIONS(1281), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(824), 1, - sym_field_expression, - STATE(1850), 1, - sym_function_declaration, + STATE(2844), 1, + sym_dictionnary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1195), 3, + ACTIONS(1279), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(918), 4, + STATE(811), 22, + sym_scope_dict, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(954), 16, - sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, + sym_field_expression, sym_call_expression, sym_method_expression, sym_env_variable, @@ -79416,62 +79819,61 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10245] = 20, + [10681] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1197), 1, + ACTIONS(1527), 1, + anon_sym_RPAREN, + ACTIONS(1531), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(824), 1, - sym_field_expression, - STATE(1830), 1, - sym_function_declaration, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1195), 3, + ACTIONS(1529), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(918), 4, + STATE(644), 22, + sym_scope_dict, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(954), 16, - sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, + sym_field_expression, sym_call_expression, sym_method_expression, sym_env_variable, @@ -79479,34 +79881,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10328] = 18, + [10761] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1535), 1, sym_integer_literal, - ACTIONS(1523), 1, + ACTIONS(1537), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79514,11 +79916,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1533), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(842), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79527,6 +79929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79540,54 +79943,56 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10407] = 18, + [10841] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1525), 1, - anon_sym_RPAREN, - ACTIONS(1529), 1, + ACTIONS(1541), 1, sym_integer_literal, - STATE(514), 1, + ACTIONS(1543), 1, + anon_sym_DASH_GT, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(648), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1527), 3, + ACTIONS(1539), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(713), 21, + STATE(886), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79601,60 +80006,63 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10486] = 18, + [10923] = 20, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(885), 1, - aux_sym_identifier_token1, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(901), 1, - sym_integer_literal, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - STATE(152), 1, - aux_sym_unlet_statement_repeat1, - STATE(154), 1, + ACTIONS(1193), 1, + sym_integer_literal, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(837), 1, + sym_field_expression, + STATE(1800), 1, + sym_function_declaration, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(899), 3, + ACTIONS(1191), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(300), 21, - sym_scope_dict, + STATE(813), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, + STATE(947), 17, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_method_expression, sym_env_variable, @@ -79662,34 +80070,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10565] = 18, + [11007] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1533), 1, + ACTIONS(1385), 1, sym_integer_literal, - ACTIONS(1535), 1, + ACTIONS(1545), 1, anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79697,11 +80105,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(929), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79710,6 +80118,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79723,34 +80132,34 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10644] = 18, + [11087] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1547), 1, + anon_sym_COLON, + ACTIONS(1551), 1, sym_integer_literal, - ACTIONS(1537), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -79758,11 +80167,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1549), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(740), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79771,6 +80180,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79784,46 +80194,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10723] = 18, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [11167] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1541), 1, + ACTIONS(1555), 1, sym_integer_literal, - ACTIONS(1543), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1539), 3, + ACTIONS(1553), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(925), 21, + STATE(395), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79832,6 +80240,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79845,46 +80254,90 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10802] = 18, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, + [11244] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1559), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, anon_sym_BANG2, - ACTIONS(853), 1, + sym_integer_literal, + ACTIONS(1557), 28, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [11293] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1563), 1, sym_integer_literal, - ACTIONS(1545), 1, - anon_sym_RBRACK, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1561), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(671), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79893,6 +80346,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79906,46 +80360,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10881] = 18, - ACTIONS(1089), 1, + [11370] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1107), 1, - sym_integer_literal, - ACTIONS(1109), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1223), 1, sym_scope, - STATE(182), 1, - aux_sym_unlet_statement_repeat1, - STATE(193), 1, + ACTIONS(1567), 1, + sym_integer_literal, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1105), 3, + ACTIONS(1565), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(493), 21, + STATE(715), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79954,6 +80406,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -79967,46 +80420,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10960] = 18, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [11447] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1547), 1, - anon_sym_RPAREN, - ACTIONS(1551), 1, + ACTIONS(1571), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1549), 3, + ACTIONS(1569), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(708), 21, + STATE(678), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80015,6 +80466,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80028,53 +80480,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11039] = 18, - ACTIONS(1089), 1, + [11524] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1555), 1, + ACTIONS(1575), 1, sym_integer_literal, - STATE(193), 1, + STATE(550), 1, sym__curly_braces_name_expression, - STATE(465), 1, - sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 3, + ACTIONS(1573), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(464), 20, + STATE(668), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80088,44 +80540,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11117] = 17, - ACTIONS(1237), 1, + [11601] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1559), 1, + ACTIONS(1579), 1, sym_integer_literal, - STATE(563), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1557), 3, + ACTIONS(1577), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(648), 21, + STATE(659), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80134,6 +80586,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80147,44 +80600,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11193] = 17, - ACTIONS(1203), 1, + [11678] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1563), 1, + ACTIONS(1583), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 3, + ACTIONS(1581), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(680), 21, + STATE(857), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80193,6 +80646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80206,44 +80660,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11269] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [11755] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1567), 1, + ACTIONS(1587), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1565), 3, + ACTIONS(1585), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(924), 21, + STATE(654), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80252,6 +80706,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80265,44 +80720,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11345] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [11832] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1571), 1, + ACTIONS(1591), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 3, + ACTIONS(1589), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(777), 21, + STATE(670), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80311,6 +80766,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80324,52 +80780,54 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11421] = 17, - ACTIONS(1237), 1, + [11909] = 18, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, - anon_sym_LBRACE, - ACTIONS(1241), 1, - aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1575), 1, + ACTIONS(1593), 1, + anon_sym_LBRACE, + ACTIONS(1595), 1, + aux_sym_identifier_token1, + ACTIONS(1599), 1, sym_integer_literal, - STATE(563), 1, + STATE(513), 1, sym__curly_braces_name_expression, + STATE(525), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1573), 3, + ACTIONS(1597), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(639), 21, + STATE(591), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80383,44 +80841,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11497] = 17, - ACTIONS(1203), 1, + [11988] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1211), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1579), 1, + ACTIONS(1603), 1, sym_integer_literal, - STATE(543), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1577), 3, + ACTIONS(1601), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(696), 21, + STATE(649), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80429,6 +80887,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80442,44 +80901,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11573] = 17, - ACTIONS(1237), 1, + [12065] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1583), 1, + ACTIONS(1607), 1, sym_integer_literal, - STATE(563), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1581), 3, + ACTIONS(1605), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(647), 21, + STATE(643), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80488,6 +80947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80501,32 +80961,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11649] = 17, + [12142] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1587), 1, + ACTIONS(1611), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -80534,11 +80994,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 3, + ACTIONS(1609), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(851), 21, + STATE(901), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80547,6 +81007,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80560,44 +81021,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11725] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [12219] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1591), 1, + ACTIONS(1615), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1589), 3, + ACTIONS(1613), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(807), 21, + STATE(677), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80606,6 +81067,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80619,32 +81081,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11801] = 17, + [12296] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1595), 1, + ACTIONS(1619), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -80652,11 +81114,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1593), 3, + ACTIONS(1617), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(830), 21, + STATE(853), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80665,6 +81127,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80678,44 +81141,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11877] = 17, - ACTIONS(1237), 1, + [12373] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1599), 1, + ACTIONS(1385), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1597), 3, + ACTIONS(1383), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(774), 21, + STATE(624), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80724,6 +81187,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80737,44 +81201,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11953] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [12450] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1603), 1, + ACTIONS(1623), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1601), 3, + ACTIONS(1621), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(876), 21, + STATE(735), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80783,6 +81247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80796,32 +81261,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12029] = 17, + [12527] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1607), 1, + ACTIONS(1627), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -80829,11 +81294,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 3, + ACTIONS(1625), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(896), 21, + STATE(897), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80842,6 +81307,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80855,48 +81321,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12105] = 19, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [12604] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1611), 1, + ACTIONS(1631), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, - STATE(795), 1, - sym_call_expression, - STATE(796), 1, - sym_method_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 3, + ACTIONS(1629), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(959), 19, + STATE(689), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80905,55 +81367,58 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, + sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12185] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [12681] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1613), 3, + ACTIONS(1633), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(910), 21, + STATE(664), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80962,6 +81427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -80975,44 +81441,92 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12261] = 17, - ACTIONS(835), 1, + [12758] = 5, + ACTIONS(1639), 1, + aux_sym_identifier_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1637), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(1641), 13, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1643), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [12811] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1619), 1, + ACTIONS(1647), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 3, + ACTIONS(1645), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(815), 21, + STATE(640), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81021,6 +81535,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81034,44 +81549,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12337] = 17, - ACTIONS(1089), 1, + [12888] = 19, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1623), 1, + ACTIONS(1651), 1, sym_integer_literal, - STATE(193), 1, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(662), 1, + sym_call_expression, + STATE(663), 1, + sym_method_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1621), 3, + ACTIONS(1649), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(501), 21, + STATE(935), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81080,57 +81599,56 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, - sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12413] = 17, - ACTIONS(1203), 1, + [12969] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1627), 1, + ACTIONS(1655), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1625), 3, + ACTIONS(1653), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(668), 21, + STATE(891), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81139,6 +81657,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81152,32 +81671,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12489] = 17, + [13046] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1631), 1, + ACTIONS(1659), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -81185,11 +81704,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1629), 3, + ACTIONS(1657), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(913), 21, + STATE(565), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81198,6 +81717,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81211,44 +81731,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12565] = 17, - ACTIONS(1089), 1, + [13123] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1635), 1, + ACTIONS(1663), 1, sym_integer_literal, - STATE(193), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1633), 3, + ACTIONS(1661), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(487), 21, + STATE(652), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81257,6 +81777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81270,44 +81791,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12641] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [13200] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1639), 1, + ACTIONS(1667), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1637), 3, + ACTIONS(1665), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(914), 21, + STATE(651), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81316,6 +81837,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81329,44 +81851,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12717] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [13277] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1643), 1, + ACTIONS(1671), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1641), 3, + ACTIONS(1669), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(916), 21, + STATE(646), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81375,6 +81897,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81388,44 +81911,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12793] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [13354] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1647), 1, + ACTIONS(1675), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1645), 3, + ACTIONS(1673), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(883), 21, + STATE(661), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81434,6 +81957,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81447,44 +81971,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12869] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [13431] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1147), 1, + anon_sym_BANG2, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1155), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1651), 1, + ACTIONS(1679), 1, sym_integer_literal, - STATE(514), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1649), 3, + ACTIONS(1677), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(928), 21, + STATE(705), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81493,6 +82017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81506,32 +82031,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12945] = 17, + [13508] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1655), 1, + ACTIONS(1683), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -81539,11 +82064,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1653), 3, + ACTIONS(1681), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(923), 21, + STATE(793), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81552,6 +82077,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81565,44 +82091,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13021] = 17, - ACTIONS(1203), 1, + [13585] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1659), 1, + ACTIONS(1687), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 3, + ACTIONS(1685), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(654), 21, + STATE(791), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81611,6 +82137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81624,44 +82151,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13097] = 17, - ACTIONS(1237), 1, + [13662] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1663), 1, + ACTIONS(1691), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 3, + ACTIONS(1689), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(753), 21, + STATE(806), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81670,6 +82197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81683,48 +82211,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13173] = 19, + [13739] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1667), 1, + ACTIONS(1695), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(659), 1, - sym_call_expression, - STATE(662), 1, - sym_method_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1665), 3, + ACTIONS(1693), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(936), 19, + STATE(849), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81733,55 +82257,58 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, + sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13253] = 17, - ACTIONS(881), 1, + [13816] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1671), 1, + ACTIONS(1699), 1, sym_integer_literal, - STATE(154), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1669), 3, + ACTIONS(1697), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(314), 21, + STATE(471), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81790,6 +82317,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81803,44 +82331,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13329] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [13893] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1675), 1, + ACTIONS(1703), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1673), 3, + ACTIONS(1701), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(919), 21, + STATE(795), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81849,6 +82377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81862,44 +82391,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13405] = 17, - ACTIONS(1203), 1, + [13970] = 19, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1679), 1, + ACTIONS(1707), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(734), 1, + sym_call_expression, + STATE(736), 1, + sym_method_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1677), 3, + ACTIONS(1705), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(658), 21, + STATE(928), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81908,57 +82441,56 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, - sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13481] = 17, - ACTIONS(1203), 1, + [14051] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1683), 1, + ACTIONS(1711), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1681), 3, + ACTIONS(1709), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(665), 21, + STATE(847), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81967,6 +82499,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -81980,44 +82513,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13557] = 17, - ACTIONS(1203), 1, + [14128] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1687), 1, + ACTIONS(1715), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 3, + ACTIONS(1713), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(632), 21, + STATE(832), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82026,6 +82559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82039,89 +82573,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13633] = 15, - ACTIONS(1693), 1, - anon_sym_QMARK, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_DOT2, - ACTIONS(1705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1707), 1, - anon_sym_AMP_AMP, - ACTIONS(1709), 1, - anon_sym_DOT_DOT, - ACTIONS(1713), 1, - anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1701), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1697), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1691), 4, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1703), 4, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(1711), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1689), 12, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [13705] = 17, + [14205] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, ACTIONS(1719), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82133,7 +82610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_float_literal, sym_register, - STATE(912), 21, + STATE(824), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82142,6 +82619,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82155,44 +82633,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13781] = 17, + [14282] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1723), 1, + ACTIONS(1651), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(704), 1, + sym_method_expression, + STATE(706), 1, + sym_call_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1721), 3, + ACTIONS(1649), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(895), 21, + STATE(935), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82201,45 +82683,44 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, - sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13857] = 17, + [14363] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1727), 1, + ACTIONS(1723), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82247,11 +82728,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1725), 3, + ACTIONS(1721), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(892), 21, + STATE(880), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82260,6 +82741,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82273,32 +82755,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13933] = 17, + [14440] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1731), 1, + ACTIONS(1727), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82306,11 +82788,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1725), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(829), 21, + STATE(878), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82319,6 +82801,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82332,36 +82815,36 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14009] = 19, + [14517] = 19, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1611), 1, + ACTIONS(1707), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(730), 1, + STATE(782), 1, sym_call_expression, - STATE(738), 1, + STATE(783), 1, sym_method_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82369,11 +82852,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 3, + ACTIONS(1705), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(959), 19, + STATE(928), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82382,6 +82865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82393,44 +82877,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14089] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [14598] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1735), 1, + ACTIONS(1731), 1, sym_integer_literal, - STATE(514), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1729), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(831), 21, + STATE(482), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82439,6 +82923,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82452,32 +82937,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14165] = 17, + [14675] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1739), 1, + ACTIONS(1735), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82485,11 +82970,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 3, + ACTIONS(1733), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(833), 21, + STATE(862), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82498,6 +82983,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82511,44 +82997,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14241] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [14752] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1497), 1, + ACTIONS(1739), 1, sym_integer_literal, - STATE(514), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(838), 21, + STATE(323), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82557,6 +83043,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82570,48 +83057,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14317] = 19, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [14829] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1667), 1, + ACTIONS(1743), 1, sym_integer_literal, - STATE(514), 1, + STATE(183), 1, sym__curly_braces_name_expression, - STATE(652), 1, - sym_call_expression, - STATE(653), 1, - sym_method_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1665), 3, + ACTIONS(1741), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(936), 19, + STATE(497), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82620,43 +83103,46 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, + sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14397] = 17, + [14906] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1743), 1, + ACTIONS(1747), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82664,11 +83150,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1741), 3, + ACTIONS(1745), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(926), 21, + STATE(879), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82677,6 +83163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82690,89 +83177,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14473] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1747), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1745), 28, - sym__scope_dict, - sym_scope, - sym_string_literal, + [14983] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, + ACTIONS(1101), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [14521] = 17, - ACTIONS(1089), 1, - anon_sym_a_COLON, - ACTIONS(1091), 1, - anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, ACTIONS(1751), 1, sym_integer_literal, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1749), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(461), 21, + STATE(498), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82781,6 +83223,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82794,44 +83237,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14597] = 17, - ACTIONS(1089), 1, + [15060] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, + ACTIONS(1113), 1, anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1121), 1, anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_scope, ACTIONS(1755), 1, sym_integer_literal, - STATE(193), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1753), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(462), 21, + STATE(499), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82840,6 +83283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82853,81 +83297,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14673] = 7, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1713), 1, - anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_DASH_GT, - ACTIONS(1761), 1, - anon_sym_DOT2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1759), 10, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1757), 25, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [14729] = 17, + [15137] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1766), 1, + ACTIONS(1759), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82935,11 +83330,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1764), 3, + ACTIONS(1757), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(865), 21, + STATE(860), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82948,6 +83343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -82961,32 +83357,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14805] = 17, + [15214] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1770), 1, + ACTIONS(1763), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -82994,11 +83390,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1768), 3, + ACTIONS(1761), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(882), 21, + STATE(863), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83007,6 +83403,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83020,44 +83417,90 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14881] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, + [15291] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1767), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, anon_sym_BANG2, - ACTIONS(853), 1, + sym_integer_literal, + ACTIONS(1765), 28, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [15340] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1774), 1, + ACTIONS(1771), 1, sym_integer_literal, - STATE(514), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1772), 3, + ACTIONS(1769), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(841), 21, + STATE(490), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83066,6 +83509,68 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [15417] = 18, + ACTIONS(1099), 1, + anon_sym_a_COLON, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + aux_sym_identifier_token1, + ACTIONS(1105), 1, + anon_sym_AMP, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1119), 1, + anon_sym_LBRACK, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, + sym__scope_dict, + ACTIONS(1125), 1, + sym_scope, + ACTIONS(1771), 1, + sym_integer_literal, + STATE(183), 1, + sym__curly_braces_name_expression, + STATE(502), 1, + sym_identifier, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1109), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1769), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(490), 21, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83079,14 +83584,22 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14957] = 3, + [15496] = 7, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1779), 1, + anon_sym_DOT2, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1778), 11, + ACTIONS(1775), 11, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_DOT2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -83095,14 +83608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1776), 28, + ACTIONS(1773), 25, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, @@ -83110,6 +83621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -83120,48 +83632,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [15005] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [15553] = 17, + ACTIONS(1099), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1103), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1105), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1119), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1125), 1, sym_scope, - ACTIONS(1782), 1, + ACTIONS(1788), 1, sym_integer_literal, - STATE(514), 1, + STATE(183), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 3, + ACTIONS(1786), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(850), 21, + STATE(503), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83170,6 +83680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83183,13 +83694,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15081] = 3, + [15630] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1786), 11, + ACTIONS(1792), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -83199,13 +83711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1784), 28, + ACTIONS(1790), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -83214,6 +83725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -83228,44 +83740,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [15129] = 17, + [15679] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(885), 1, - aux_sym_identifier_token1, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1790), 1, + ACTIONS(1796), 1, sym_integer_literal, - STATE(154), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1788), 3, + ACTIONS(1794), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(372), 21, + STATE(826), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83274,6 +83786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83287,53 +83800,99 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15205] = 18, - ACTIONS(1203), 1, - anon_sym_a_COLON, - ACTIONS(1205), 1, - anon_sym_LBRACE, - ACTIONS(1207), 1, + [15756] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1800), 12, aux_sym_identifier_token1, - ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1211), 1, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1798), 28, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1215), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(1225), 1, + anon_sym_DASH_GT, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + [15805] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1794), 1, + ACTIONS(1804), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(656), 1, - sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1792), 3, + ACTIONS(1802), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(635), 20, + STATE(844), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83347,44 +83906,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15283] = 17, - ACTIONS(881), 1, + [15882] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1798), 1, + ACTIONS(1808), 1, sym_integer_literal, - STATE(154), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1796), 3, + ACTIONS(1806), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(380), 21, + STATE(375), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83393,6 +83952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83406,44 +83966,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15359] = 17, - ACTIONS(1089), 1, + [15959] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1555), 1, + ACTIONS(1812), 1, sym_integer_literal, - STATE(193), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 3, + ACTIONS(1810), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(464), 21, + STATE(852), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83452,6 +84012,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83465,44 +84026,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15435] = 17, + [16036] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(885), 1, - aux_sym_identifier_token1, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1802), 1, + ACTIONS(1816), 1, sym_integer_literal, - STATE(154), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1800), 3, + ACTIONS(1814), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(384), 21, + STATE(856), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83511,6 +84072,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83524,44 +84086,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15511] = 17, - ACTIONS(881), 1, + [16113] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1806), 1, + ACTIONS(1820), 1, sym_integer_literal, - STATE(154), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1804), 3, + ACTIONS(1818), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(385), 21, + STATE(695), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83570,6 +84132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83583,77 +84146,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15587] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1810), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1808), 28, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [15635] = 17, + [16190] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1814), 1, + ACTIONS(1651), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -83661,11 +84179,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1812), 3, + STATE(693), 2, + sym_call_expression, + sym_method_expression, + ACTIONS(1649), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(849), 21, + STATE(935), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83674,57 +84195,56 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, - sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15711] = 17, - ACTIONS(1237), 1, + [16269] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1818), 1, + ACTIONS(1824), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1816), 3, + ACTIONS(1822), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(646), 21, + STATE(882), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83733,6 +84253,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83746,44 +84267,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15787] = 17, - ACTIONS(1237), 1, + [16346] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1822), 1, + ACTIONS(1828), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1820), 3, + ACTIONS(1826), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(811), 21, + STATE(904), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83792,6 +84313,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83805,32 +84327,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15863] = 17, + [16423] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1826), 1, + ACTIONS(1832), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -83838,11 +84360,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1824), 3, + ACTIONS(1830), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(864), 21, + STATE(877), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83851,6 +84373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83864,44 +84387,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15939] = 17, - ACTIONS(1203), 1, + [16500] = 17, + ACTIONS(1129), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(1133), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1211), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1157), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(1159), 1, sym_scope, - ACTIONS(1830), 1, + ACTIONS(1836), 1, sym_integer_literal, - STATE(543), 1, + STATE(550), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(1141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1828), 3, + ACTIONS(1834), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(689), 21, + STATE(686), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83910,6 +84433,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -83923,32 +84447,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16015] = 18, + [16577] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1667), 1, + ACTIONS(1840), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -83956,14 +84480,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(690), 2, - sym_call_expression, - sym_method_expression, - ACTIONS(1665), 3, + ACTIONS(1838), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(936), 19, + STATE(887), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -83972,88 +84493,46 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, + sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16093] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1834), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1832), 28, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [16141] = 17, + [16654] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1838), 1, + ACTIONS(1844), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84061,11 +84540,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1836), 3, + ACTIONS(1842), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(868), 21, + STATE(827), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84074,6 +84553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84087,32 +84567,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16217] = 17, + [16731] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1842), 1, + ACTIONS(1848), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84120,11 +84600,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1840), 3, + ACTIONS(1846), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(877), 21, + STATE(589), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84133,6 +84613,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84146,52 +84627,54 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16293] = 17, - ACTIONS(1203), 1, - anon_sym_a_COLON, - ACTIONS(1205), 1, + [16808] = 18, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1846), 1, + ACTIONS(1599), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, + STATE(590), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 3, + ACTIONS(1597), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(705), 21, + STATE(591), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84205,32 +84688,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16369] = 17, + [16887] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1850), 1, + ACTIONS(1599), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84238,11 +84721,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1848), 3, + ACTIONS(1597), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(846), 21, + STATE(591), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84251,6 +84734,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84264,32 +84748,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16445] = 17, + [16964] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1391), 1, + ACTIONS(1852), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84297,11 +84781,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, + ACTIONS(1850), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(611), 21, + STATE(829), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84310,6 +84794,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84323,32 +84808,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16521] = 17, + [17041] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1854), 1, + ACTIONS(1856), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84356,11 +84841,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 3, + ACTIONS(1854), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(592), 21, + STATE(594), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84369,6 +84854,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84382,53 +84868,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16597] = 18, + [17118] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1858), 1, + ACTIONS(1860), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(593), 1, - sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1856), 3, + ACTIONS(1858), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(594), 20, + STATE(595), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84442,32 +84928,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16675] = 17, + [17195] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1858), 1, + ACTIONS(1864), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84475,11 +84961,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1856), 3, + ACTIONS(1862), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(594), 21, + STATE(596), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84488,6 +84974,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84501,44 +84988,105 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16751] = 17, - ACTIONS(835), 1, + [17272] = 18, + ACTIONS(1129), 1, + anon_sym_a_COLON, + ACTIONS(1131), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_identifier_token1, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(843), 1, + ACTIONS(1143), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, anon_sym_BANG2, - ACTIONS(853), 1, + ACTIONS(1153), 1, + anon_sym_LBRACK, + ACTIONS(1155), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(1157), 1, + sym__scope_dict, + ACTIONS(1159), 1, + sym_scope, + ACTIONS(1587), 1, + sym_integer_literal, + STATE(550), 1, + sym__curly_braces_name_expression, + STATE(692), 1, + sym_identifier, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1585), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(654), 21, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [17351] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1862), 1, + ACTIONS(1868), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1860), 3, + ACTIONS(1866), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(867), 21, + STATE(730), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84547,6 +85095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84560,44 +85109,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16827] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [17428] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1011), 1, + anon_sym_BANG2, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1019), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1866), 1, + ACTIONS(1872), 1, sym_integer_literal, - STATE(514), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1864), 3, + ACTIONS(1870), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(598), 21, + STATE(383), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84606,6 +85155,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84619,32 +85169,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16903] = 17, + [17505] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1870), 1, + ACTIONS(1876), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84652,11 +85202,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 3, + ACTIONS(1874), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(597), 21, + STATE(869), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84665,6 +85215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84678,44 +85229,103 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16979] = 17, - ACTIONS(1203), 1, + [17582] = 16, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_DASH_GT, + ACTIONS(1882), 1, + anon_sym_QMARK, + ACTIONS(1886), 1, + anon_sym_DOT2, + ACTIONS(1892), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1894), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1896), 1, + anon_sym_AMP_AMP, + ACTIONS(1898), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1884), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1880), 4, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1890), 4, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1900), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1878), 12, + sym__scope_dict, + sym_scope, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(1205), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + sym_float_literal, + sym_register, + anon_sym_POUND_LBRACE, + [17657] = 17, + ACTIONS(995), 1, + anon_sym_a_COLON, + ACTIONS(997), 1, + anon_sym_LBRACE, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(1211), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1874), 1, + ACTIONS(1904), 1, sym_integer_literal, - STATE(543), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 3, + ACTIONS(1902), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(636), 21, + STATE(386), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84724,6 +85334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84737,44 +85348,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17055] = 17, - ACTIONS(1237), 1, + [17734] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1878), 1, + ACTIONS(1908), 1, sym_integer_literal, - STATE(563), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1876), 3, + ACTIONS(1906), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(813), 21, + STATE(653), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84783,6 +85394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84796,53 +85408,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17131] = 18, - ACTIONS(1237), 1, + [17811] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1882), 1, + ACTIONS(1912), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(812), 1, - sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1880), 3, + ACTIONS(1910), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(805), 20, + STATE(839), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84856,32 +85468,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17209] = 17, + [17888] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1886), 1, + ACTIONS(1916), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -84889,11 +85501,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1884), 3, + ACTIONS(1914), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(823), 21, + STATE(846), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -84902,6 +85514,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -84915,103 +85528,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17285] = 17, - ACTIONS(1237), 1, - anon_sym_a_COLON, - ACTIONS(1239), 1, - anon_sym_LBRACE, - ACTIONS(1241), 1, - aux_sym_identifier_token1, - ACTIONS(1243), 1, - anon_sym_AMP, - ACTIONS(1245), 1, + [17965] = 17, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, - anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(843), 1, anon_sym_BANG2, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, - sym__scope_dict, - ACTIONS(1263), 1, - sym_scope, - ACTIONS(1882), 1, - sym_integer_literal, - STATE(563), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1247), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1880), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(805), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [17361] = 17, - ACTIONS(1089), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1890), 1, + ACTIONS(1920), 1, sym_integer_literal, - STATE(193), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1888), 3, + ACTIONS(1918), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(466), 21, + STATE(864), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85020,6 +85574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85033,44 +85588,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17437] = 17, - ACTIONS(1237), 1, + [18042] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1894), 1, + ACTIONS(1541), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1892), 3, + ACTIONS(1539), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(630), 21, + STATE(886), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85079,6 +85634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85092,79 +85648,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17513] = 5, - ACTIONS(1898), 1, - aux_sym_identifier_token1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1896), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(1900), 12, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(1902), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [17565] = 18, + [18119] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1611), 1, + ACTIONS(1924), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -85172,14 +85681,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(733), 2, - sym_call_expression, - sym_method_expression, - ACTIONS(1609), 3, + ACTIONS(1922), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(959), 19, + STATE(803), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85188,55 +85694,58 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, + sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17643] = 17, - ACTIONS(1237), 1, + [18196] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1906), 1, + ACTIONS(1928), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 3, + ACTIONS(1926), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(722), 21, + STATE(896), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85245,6 +85754,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85258,32 +85768,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17719] = 17, + [18273] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1910), 1, + ACTIONS(1932), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -85291,11 +85801,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1908), 3, + ACTIONS(1930), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(893), 21, + STATE(893), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85304,6 +85814,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85317,32 +85828,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17795] = 17, + [18350] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1914), 1, + ACTIONS(1936), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -85350,11 +85861,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1912), 3, + ACTIONS(1934), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(870), 21, + STATE(881), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85363,6 +85874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85376,44 +85888,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17871] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [18427] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1918), 1, + ACTIONS(1940), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1916), 3, + ACTIONS(1938), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(927), 21, + STATE(801), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85422,6 +85934,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85435,32 +85948,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17947] = 17, + [18504] = 18, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1922), 1, + ACTIONS(1707), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -85468,11 +85981,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1920), 3, + STATE(798), 2, + sym_call_expression, + sym_method_expression, + ACTIONS(1705), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(547), 21, + STATE(928), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85481,57 +85997,56 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, - sym_method_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18023] = 17, - ACTIONS(1237), 1, + [18583] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1926), 1, + ACTIONS(1944), 1, sym_integer_literal, - STATE(563), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 3, + ACTIONS(1942), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(810), 21, + STATE(394), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85540,6 +86055,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85553,268 +86069,78 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18099] = 17, - ACTIONS(1237), 1, - anon_sym_a_COLON, - ACTIONS(1239), 1, - anon_sym_LBRACE, - ACTIONS(1241), 1, - aux_sym_identifier_token1, - ACTIONS(1243), 1, - anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, - anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, - sym__scope_dict, - ACTIONS(1263), 1, - sym_scope, - ACTIONS(1930), 1, - sym_integer_literal, - STATE(563), 1, - sym__curly_braces_name_expression, + [18660] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1928), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(720), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [18175] = 17, - ACTIONS(1237), 1, - anon_sym_a_COLON, - ACTIONS(1239), 1, - anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1948), 12, aux_sym_identifier_token1, - ACTIONS(1243), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, - anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, - sym__scope_dict, - ACTIONS(1263), 1, - sym_scope, - ACTIONS(1934), 1, - sym_integer_literal, - STATE(563), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1247), 2, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(1932), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(642), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [18251] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, + sym_integer_literal, + ACTIONS(1946), 28, sym__scope_dict, - ACTIONS(939), 1, sym_scope, - ACTIONS(1938), 1, - sym_integer_literal, - STATE(514), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1936), 3, sym_string_literal, - sym_float_literal, - sym_register, - STATE(897), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [18327] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, anon_sym_a_COLON, - ACTIONS(917), 1, anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, - sym__scope_dict, - ACTIONS(939), 1, - sym_scope, - ACTIONS(1942), 1, - sym_integer_literal, - STATE(514), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1940), 3, - sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, - STATE(884), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [18403] = 17, + anon_sym_POUND_LBRACE, + [18709] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1946), 1, + ACTIONS(1952), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -85822,11 +86148,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1944), 3, + ACTIONS(1950), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(888), 21, + STATE(903), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85835,6 +86161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85848,13 +86175,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18479] = 3, + [18786] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1950), 11, + ACTIONS(1956), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -85864,13 +86192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1948), 28, + ACTIONS(1954), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -85879,6 +86206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -85893,32 +86221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [18527] = 17, + [18835] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1954), 1, + ACTIONS(1960), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -85926,11 +86254,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1952), 3, + ACTIONS(1958), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(890), 21, + STATE(875), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -85939,6 +86267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -85952,13 +86281,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18603] = 3, + [18912] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1958), 11, + ACTIONS(1964), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -85968,13 +86298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1956), 28, + ACTIONS(1962), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -85983,6 +86312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -85997,13 +86327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [18651] = 3, + [18961] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1962), 11, + ACTIONS(1968), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -86013,13 +86344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1960), 28, + ACTIONS(1966), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -86028,6 +86358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -86042,13 +86373,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [18699] = 3, + [19010] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(1972), 1, + sym_integer_literal, + STATE(522), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(837), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1970), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(870), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19087] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1966), 11, + ACTIONS(1976), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -86058,13 +86450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1964), 28, + ACTIONS(1974), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -86073,6 +86464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -86087,13 +86479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [18747] = 3, + [19136] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1970), 11, + ACTIONS(1980), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -86103,13 +86496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1968), 28, + ACTIONS(1978), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -86118,6 +86510,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -86132,21 +86525,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [18795] = 7, - ACTIONS(1695), 1, + [19185] = 17, + ACTIONS(1197), 1, + anon_sym_a_COLON, + ACTIONS(1199), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_identifier_token1, + ACTIONS(1203), 1, + anon_sym_AMP, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1713), 1, + ACTIONS(1209), 1, + anon_sym_DOLLAR, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1715), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, + sym__scope_dict, + ACTIONS(1223), 1, + sym_scope, + ACTIONS(1984), 1, + sym_integer_literal, + STATE(583), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1982), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(752), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19262] = 7, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, anon_sym_DASH_GT, - ACTIONS(1976), 1, + ACTIONS(1990), 1, anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1974), 10, + ACTIONS(1988), 11, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -86155,13 +86609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1972), 25, + ACTIONS(1986), 25, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, @@ -86169,6 +86622,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -86181,52 +86635,54 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [18851] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [19319] = 18, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1981), 1, + ACTIONS(1995), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, + STATE(753), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1979), 3, + ACTIONS(1993), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(879), 21, + STATE(754), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86240,44 +86696,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18927] = 17, - ACTIONS(1237), 1, + [19398] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1985), 1, + ACTIONS(1995), 1, sym_integer_literal, - STATE(563), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1983), 3, + ACTIONS(1993), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(759), 21, + STATE(754), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86286,6 +86742,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86299,44 +86756,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19003] = 17, - ACTIONS(1237), 1, + [19475] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1989), 1, + ACTIONS(1999), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1987), 3, + ACTIONS(1997), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(716), 21, + STATE(815), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86345,6 +86802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86358,44 +86816,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19079] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [19552] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1993), 1, + ACTIONS(2003), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1991), 3, + ACTIONS(2001), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(905), 21, + STATE(756), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86404,6 +86862,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86417,44 +86876,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19155] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [19629] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(1997), 1, + ACTIONS(2007), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1995), 3, + ACTIONS(2005), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(906), 21, + STATE(759), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86463,6 +86922,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86476,44 +86936,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19231] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [19706] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(2001), 1, + ACTIONS(2011), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1999), 3, + ACTIONS(2009), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(911), 21, + STATE(761), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86522,6 +86982,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86535,44 +86996,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19307] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [19783] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(2005), 1, + ACTIONS(2015), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2003), 3, + ACTIONS(2013), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(922), 21, + STATE(725), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86581,6 +87042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86594,25 +87056,26 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19383] = 8, - ACTIONS(1695), 1, + [19860] = 8, + ACTIONS(1777), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_DOT2, - ACTIONS(1713), 1, + ACTIONS(1782), 1, anon_sym_LBRACK, - ACTIONS(1715), 1, + ACTIONS(1784), 1, anon_sym_DASH_GT, + ACTIONS(1886), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1697), 3, + ACTIONS(1884), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(1974), 10, + ACTIONS(1988), 11, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -86621,17 +87084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1972), 22, + ACTIONS(1986), 22, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -86644,106 +87107,48 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [19441] = 17, - ACTIONS(835), 1, + [19919] = 10, + ACTIONS(1777), 1, anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1782), 1, anon_sym_LBRACK, - ACTIONS(937), 1, - sym__scope_dict, - ACTIONS(939), 1, - sym_scope, - ACTIONS(2009), 1, - sym_integer_literal, - STATE(514), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2007), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(932), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [19517] = 10, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1784), 1, + anon_sym_DASH_GT, + ACTIONS(1886), 1, anon_sym_DOT2, - ACTIONS(1709), 1, + ACTIONS(1898), 1, anon_sym_DOT_DOT, - ACTIONS(1713), 1, - anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1701), 2, + ACTIONS(1888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 3, + ACTIONS(1884), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(1974), 8, + ACTIONS(1988), 9, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1972), 21, + ACTIONS(1986), 21, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -86755,44 +87160,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [19579] = 17, - ACTIONS(881), 1, + [19982] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(2013), 1, + ACTIONS(2019), 1, sym_integer_literal, - STATE(154), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2011), 3, + ACTIONS(2017), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(419), 21, + STATE(423), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86801,6 +87206,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86814,153 +87220,102 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19655] = 13, - ACTIONS(1695), 1, + [20059] = 15, + ACTIONS(1777), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_DOT2, - ACTIONS(1707), 1, - anon_sym_AMP_AMP, - ACTIONS(1709), 1, - anon_sym_DOT_DOT, - ACTIONS(1713), 1, + ACTIONS(1782), 1, anon_sym_LBRACK, - ACTIONS(1715), 1, + ACTIONS(1784), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1701), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1697), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1703), 4, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(1974), 4, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(1711), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1972), 14, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, + ACTIONS(1882), 1, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [19723] = 12, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1886), 1, anon_sym_DOT2, - ACTIONS(1709), 1, + ACTIONS(1894), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1896), 1, + anon_sym_AMP_AMP, + ACTIONS(1898), 1, anon_sym_DOT_DOT, - ACTIONS(1713), 1, - anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1701), 2, + ACTIONS(1888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 3, + ACTIONS(1884), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(1703), 4, + ACTIONS(1890), 4, anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1974), 4, + ACTIONS(2023), 4, aux_sym_identifier_token1, anon_sym_AMP, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1711), 6, + ACTIONS(1900), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1972), 15, + ACTIONS(2021), 13, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [19789] = 17, - ACTIONS(1237), 1, + [20132] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(2017), 1, + ACTIONS(2027), 1, sym_integer_literal, - STATE(563), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2015), 3, + ACTIONS(2025), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(804), 21, + STATE(794), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -86969,6 +87324,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -86982,32 +87338,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19865] = 17, + [20209] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2021), 1, + ACTIONS(2031), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87015,11 +87371,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2019), 3, + ACTIONS(2029), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(819), 21, + STATE(836), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87028,6 +87384,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87041,32 +87398,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19941] = 17, + [20286] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2025), 1, + ACTIONS(2035), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87074,11 +87431,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2023), 3, + ACTIONS(2033), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(903), 21, + STATE(841), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87087,6 +87444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87100,44 +87458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20017] = 17, - ACTIONS(1237), 1, + [20363] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(1245), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, + ACTIONS(1211), 1, anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, + ACTIONS(1219), 1, anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(2029), 1, + ACTIONS(2039), 1, sym_integer_literal, - STATE(563), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2027), 3, + ACTIONS(2037), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(786), 21, + STATE(799), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87146,6 +87504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87159,32 +87518,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20093] = 17, + [20440] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2033), 1, + ACTIONS(2043), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87192,11 +87551,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2031), 3, + ACTIONS(2041), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(825), 21, + STATE(843), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87205,6 +87564,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87218,77 +87578,92 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20169] = 3, + [20517] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(2047), 1, + sym_integer_literal, + STATE(522), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2037), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(837), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2035), 28, - sym__scope_dict, - sym_scope, + ACTIONS(2045), 3, sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, - anon_sym_POUND_LBRACE, - [20217] = 17, + STATE(848), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [20594] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2041), 1, + ACTIONS(2051), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87296,11 +87671,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2039), 3, + ACTIONS(2049), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(921), 21, + STATE(850), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87309,6 +87684,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87322,134 +87698,155 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20293] = 3, + [20671] = 13, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_DASH_GT, + ACTIONS(1886), 1, + anon_sym_DOT2, + ACTIONS(1896), 1, + anon_sym_AMP_AMP, + ACTIONS(1898), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2045), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(1888), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, + ACTIONS(1884), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1890), 4, + anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, + ACTIONS(1988), 5, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2043), 28, + ACTIONS(1900), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1986), 14, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [20341] = 3, + [20740] = 12, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_DASH_GT, + ACTIONS(1886), 1, + anon_sym_DOT2, + ACTIONS(1898), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2049), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(1888), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, + ACTIONS(1884), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1890), 4, + anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, + ACTIONS(1988), 5, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2047), 28, + ACTIONS(1900), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1986), 15, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [20389] = 17, - ACTIONS(1203), 1, + [20807] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2053), 1, + ACTIONS(2055), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2051), 3, + ACTIONS(2053), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(666), 21, + STATE(902), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87458,6 +87855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87471,32 +87869,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20465] = 17, + [20884] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2057), 1, + ACTIONS(2059), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87504,11 +87902,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2055), 3, + ACTIONS(2057), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(553), 21, + STATE(876), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87517,6 +87915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87530,32 +87929,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20541] = 17, + [20961] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2061), 1, + ACTIONS(2063), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87563,11 +87962,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2059), 3, + ACTIONS(2061), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(920), 21, + STATE(872), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87576,6 +87975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87589,44 +87989,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20617] = 17, - ACTIONS(1203), 1, + [21038] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1205), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1207), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1209), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1229), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2065), 1, + ACTIONS(2067), 1, sym_integer_literal, - STATE(543), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2063), 3, + ACTIONS(2065), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(664), 21, + STATE(871), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87635,6 +88035,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87648,32 +88049,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20693] = 17, + [21115] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2069), 1, + ACTIONS(2071), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87681,11 +88082,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 3, + ACTIONS(2069), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(902), 21, + STATE(867), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87694,6 +88095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87707,44 +88109,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20769] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + [21192] = 17, + ACTIONS(1197), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(1201), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(1203), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1223), 1, sym_scope, - ACTIONS(2073), 1, + ACTIONS(2075), 1, sym_integer_literal, - STATE(514), 1, + STATE(583), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2071), 3, + ACTIONS(2073), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(899), 21, + STATE(779), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87753,6 +88155,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87766,32 +88169,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20845] = 17, + [21269] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2077), 1, + ACTIONS(2079), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87799,11 +88202,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2075), 3, + ACTIONS(2077), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(817), 21, + STATE(866), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87812,6 +88215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87825,13 +88229,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20921] = 3, + [21346] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2081), 11, + ACTIONS(2083), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -87841,13 +88246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2079), 28, + ACTIONS(2081), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -87856,6 +88260,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -87870,13 +88275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [20969] = 3, + [21395] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2085), 11, + ACTIONS(2087), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -87886,13 +88292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2083), 28, + ACTIONS(2085), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -87901,6 +88306,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -87915,32 +88321,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [21017] = 17, + [21444] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2089), 1, + ACTIONS(2091), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -87948,11 +88354,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2087), 3, + ACTIONS(2089), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(771), 21, + STATE(865), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -87961,6 +88367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -87974,32 +88381,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21093] = 17, + [21521] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2093), 1, + ACTIONS(2095), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -88007,11 +88414,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2091), 3, + ACTIONS(2093), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(915), 21, + STATE(820), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88020,6 +88427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88033,32 +88441,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21169] = 17, + [21598] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2097), 1, + ACTIONS(2099), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -88066,11 +88474,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2095), 3, + ACTIONS(2097), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(904), 21, + STATE(859), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88079,6 +88487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88092,32 +88501,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21245] = 17, + [21675] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2101), 1, + ACTIONS(2103), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -88125,11 +88534,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2099), 3, + ACTIONS(2101), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(818), 21, + STATE(828), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88138,6 +88547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88151,32 +88561,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21321] = 17, + [21752] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2105), 1, + ACTIONS(2107), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -88184,11 +88594,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2103), 3, + ACTIONS(2105), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(828), 21, + STATE(823), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88197,6 +88607,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88210,32 +88621,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21397] = 17, + [21829] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2109), 1, + ACTIONS(2111), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -88243,11 +88654,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2107), 3, + ACTIONS(2109), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(843), 21, + STATE(833), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88256,6 +88667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88269,72 +88681,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21473] = 17, - ACTIONS(1203), 1, - anon_sym_a_COLON, - ACTIONS(1205), 1, - anon_sym_LBRACE, - ACTIONS(1207), 1, - aux_sym_identifier_token1, - ACTIONS(1209), 1, - anon_sym_AMP, - ACTIONS(1211), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, - anon_sym_DOLLAR, - ACTIONS(1217), 1, - anon_sym_BANG2, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1227), 1, - sym__scope_dict, - ACTIONS(1229), 1, - sym_scope, - ACTIONS(1794), 1, - sym_integer_literal, - STATE(543), 1, - sym__curly_braces_name_expression, + [21906] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1213), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1792), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(635), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [21549] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2113), 11, + ACTIONS(2115), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -88344,13 +88698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2111), 28, + ACTIONS(2113), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -88359,6 +88712,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -88373,44 +88727,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [21597] = 17, + [21955] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, ACTIONS(881), 1, anon_sym_a_COLON, ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(885), 1, - aux_sym_identifier_token1, ACTIONS(887), 1, - anon_sym_AMP, + aux_sym_identifier_token1, ACTIONS(889), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, - anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(905), 1, - anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2117), 1, + ACTIONS(2119), 1, sym_integer_literal, - STATE(154), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2115), 3, + ACTIONS(2117), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(441), 21, + STATE(822), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88419,6 +88773,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88432,72 +88787,60 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21673] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, - sym__scope_dict, - ACTIONS(939), 1, - sym_scope, - ACTIONS(2121), 1, - sym_integer_literal, - STATE(514), 1, - sym__curly_braces_name_expression, + [22032] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(2123), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2119), 3, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2121), 28, + sym__scope_dict, + sym_scope, sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, - STATE(858), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [21749] = 3, + anon_sym_POUND_LBRACE, + [22081] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 11, + ACTIONS(2127), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -88507,13 +88850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2123), 28, + ACTIONS(2125), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -88522,6 +88864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -88536,13 +88879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [21797] = 3, + [22130] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2129), 11, + ACTIONS(2131), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -88552,13 +88896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2127), 28, + ACTIONS(2129), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -88567,6 +88910,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -88581,58 +88925,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [21845] = 3, + [22179] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(2135), 1, + sym_integer_literal, + STATE(522), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2133), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(837), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2131), 28, - sym__scope_dict, - sym_scope, + ACTIONS(2133), 3, sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, - anon_sym_POUND_LBRACE, - [21893] = 3, + STATE(818), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22256] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2137), 11, + ACTIONS(2139), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -88642,13 +89002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2135), 28, + ACTIONS(2137), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -88657,6 +89016,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -88671,53 +89031,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [21941] = 18, + [22305] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(923), 1, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(1858), 1, + ACTIONS(2143), 1, sym_integer_literal, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - aux_sym_identifier_token1, - STATE(504), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(533), 1, - sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1856), 3, + ACTIONS(2141), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(594), 20, + STATE(588), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88731,186 +89091,44 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22019] = 10, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_DOT2, - ACTIONS(1709), 1, - anon_sym_DOT_DOT, - ACTIONS(1713), 1, - anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1701), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1697), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2145), 8, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2143), 21, - sym__scope_dict, - sym_scope, - sym_string_literal, + [22382] = 17, + ACTIONS(995), 1, anon_sym_a_COLON, + ACTIONS(997), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [22081] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2149), 11, + ACTIONS(999), 1, aux_sym_identifier_token1, + ACTIONS(1001), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2147), 28, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1003), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1007), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [22129] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2153), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, + ACTIONS(1011), 1, anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2151), 28, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - sym_float_literal, + ACTIONS(1017), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [22177] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(2157), 1, + ACTIONS(2147), 1, sym_integer_literal, - STATE(514), 1, + STATE(162), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 3, + ACTIONS(2145), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(866), 21, + STATE(434), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88919,6 +89137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88932,32 +89151,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22253] = 17, + [22459] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2161), 1, + ACTIONS(2151), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -88965,11 +89184,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2159), 3, + ACTIONS(2149), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(852), 21, + STATE(816), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -88978,6 +89197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -88991,13 +89211,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22329] = 3, + [22536] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 11, + ACTIONS(2155), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89007,13 +89228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1321), 28, + ACTIONS(2153), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89022,6 +89242,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89036,13 +89257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22377] = 3, + [22585] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2165), 11, + ACTIONS(2159), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89052,13 +89274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2163), 28, + ACTIONS(2157), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89067,6 +89288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89081,44 +89303,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22425] = 17, - ACTIONS(1237), 1, + [22634] = 10, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_DASH_GT, + ACTIONS(1886), 1, + anon_sym_DOT2, + ACTIONS(1898), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1884), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2163), 9, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2161), 21, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + sym_register, + anon_sym_POUND_LBRACE, + [22697] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2169), 1, + ACTIONS(2167), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2167), 3, + ACTIONS(2165), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(766), 21, + STATE(797), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89127,6 +89402,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89140,32 +89416,78 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22501] = 17, + [22774] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1349), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1343), 28, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [22823] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2173), 1, + ACTIONS(2171), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -89173,11 +89495,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2171), 3, + ACTIONS(2169), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(853), 21, + STATE(808), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89186,6 +89508,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89199,32 +89522,78 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22577] = 17, + [22900] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2175), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2173), 28, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [22949] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2177), 1, + ACTIONS(2179), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -89232,11 +89601,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 3, + ACTIONS(2177), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(854), 21, + STATE(809), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89245,6 +89614,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89258,13 +89628,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22653] = 3, + [23026] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2181), 11, + ACTIONS(2183), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89274,13 +89645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2179), 28, + ACTIONS(2181), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89289,6 +89659,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89303,13 +89674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22701] = 3, + [23075] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2185), 11, + ACTIONS(2187), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89319,13 +89691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2183), 28, + ACTIONS(2185), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89334,6 +89705,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89348,32 +89720,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22749] = 17, + [23124] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2189), 1, + ACTIONS(2191), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -89381,11 +89753,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2187), 3, + ACTIONS(2189), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(857), 21, + STATE(564), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89394,6 +89766,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89407,13 +89780,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22825] = 3, + [23201] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2193), 11, + ACTIONS(2195), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89423,13 +89797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2191), 28, + ACTIONS(2193), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89438,6 +89811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89452,13 +89826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22873] = 3, + [23250] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2197), 11, + ACTIONS(2199), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89468,13 +89843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2195), 28, + ACTIONS(2197), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89483,6 +89857,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89497,58 +89872,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22921] = 3, + [23299] = 14, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1782), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_DASH_GT, + ACTIONS(1886), 1, + anon_sym_DOT2, + ACTIONS(1894), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1896), 1, + anon_sym_AMP_AMP, + ACTIONS(1898), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2201), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(1888), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, + ACTIONS(1884), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1890), 4, + anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, + ACTIONS(2203), 5, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2199), 28, + ACTIONS(1900), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2201), 13, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_QMARK_QMARK, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [22969] = 3, + [23370] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2205), 11, + ACTIONS(2207), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89558,13 +89946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2203), 28, + ACTIONS(2205), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89573,6 +89960,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89587,44 +89975,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23017] = 17, - ACTIONS(1237), 1, + [23419] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1239), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1243), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1251), 1, - anon_sym_BANG2, - ACTIONS(1257), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1261), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1263), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2209), 1, + ACTIONS(2211), 1, sym_integer_literal, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1247), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2207), 3, + ACTIONS(2209), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(645), 21, + STATE(889), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89633,6 +90021,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89646,13 +90035,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23093] = 3, + [23496] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2213), 11, + ACTIONS(2215), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89662,13 +90052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2211), 28, + ACTIONS(2213), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89677,6 +90066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89691,32 +90081,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23141] = 17, + [23545] = 17, + ACTIONS(1197), 1, + anon_sym_a_COLON, + ACTIONS(1199), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_identifier_token1, + ACTIONS(1203), 1, + anon_sym_AMP, + ACTIONS(1205), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, + anon_sym_DOLLAR, + ACTIONS(1211), 1, + anon_sym_BANG2, + ACTIONS(1217), 1, + anon_sym_LBRACK, + ACTIONS(1219), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1221), 1, + sym__scope_dict, + ACTIONS(1223), 1, + sym_scope, + ACTIONS(2219), 1, + sym_integer_literal, + STATE(583), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2217), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(768), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [23622] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2217), 1, + ACTIONS(2223), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -89724,11 +90174,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2215), 3, + ACTIONS(2221), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(863), 21, + STATE(807), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89737,6 +90187,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89750,13 +90201,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23217] = 3, + [23699] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2221), 11, + ACTIONS(2227), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -89766,13 +90218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2219), 28, + ACTIONS(2225), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -89781,6 +90232,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -89795,159 +90247,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23265] = 17, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_BANG2, - ACTIONS(853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(915), 1, - anon_sym_a_COLON, - ACTIONS(917), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, - aux_sym_identifier_token1, - ACTIONS(923), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(937), 1, - sym__scope_dict, - ACTIONS(939), 1, - sym_scope, - ACTIONS(2225), 1, - sym_integer_literal, - STATE(514), 1, - sym__curly_braces_name_expression, + [23748] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(837), 2, + ACTIONS(2231), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2223), 3, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2229), 28, + sym__scope_dict, + sym_scope, sym_string_literal, - sym_float_literal, - sym_register, - STATE(917), 21, - sym_scope_dict, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_index_expression, - sym_slice_expression, - sym_field_expression, - sym_call_expression, - sym_method_expression, - sym_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [23341] = 14, - ACTIONS(1695), 1, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_DOT2, - ACTIONS(1705), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(1707), 1, anon_sym_AMP_AMP, - ACTIONS(1709), 1, anon_sym_DOT_DOT, - ACTIONS(1713), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(1715), 1, anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [23797] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1701), 2, + ACTIONS(2235), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1697), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1703), 4, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(2229), 4, - aux_sym_identifier_token1, - anon_sym_AMP, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1711), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2227), 13, + ACTIONS(2233), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23411] = 17, - ACTIONS(1089), 1, + [23846] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(1091), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(1093), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(1095), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(1097), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(1103), 1, - anon_sym_BANG2, - ACTIONS(1109), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1113), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(1115), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2233), 1, + ACTIONS(2239), 1, sym_integer_literal, - STATE(193), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1099), 2, + ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2231), 3, + ACTIONS(2237), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(476), 21, + STATE(838), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -89956,6 +90385,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -89969,32 +90399,32 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23487] = 17, + [23923] = 17, ACTIONS(835), 1, anon_sym_LPAREN, ACTIONS(843), 1, anon_sym_BANG2, ACTIONS(853), 1, anon_sym_POUND_LBRACE, - ACTIONS(915), 1, + ACTIONS(881), 1, anon_sym_a_COLON, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(887), 1, aux_sym_identifier_token1, - ACTIONS(923), 1, + ACTIONS(889), 1, anon_sym_AMP, - ACTIONS(927), 1, + ACTIONS(893), 1, anon_sym_DOLLAR, - ACTIONS(933), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(903), 1, sym__scope_dict, - ACTIONS(939), 1, + ACTIONS(905), 1, sym_scope, - ACTIONS(2237), 1, + ACTIONS(2243), 1, sym_integer_literal, - STATE(514), 1, + STATE(522), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, @@ -90002,11 +90432,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2235), 3, + ACTIONS(2241), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(565), 21, + STATE(890), 22, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -90015,6 +90445,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -90028,13 +90459,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23563] = 3, + [24000] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2241), 11, + ACTIONS(2247), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90044,13 +90476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2239), 28, + ACTIONS(2245), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90059,6 +90490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90073,13 +90505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23611] = 3, + [24049] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2245), 11, + ACTIONS(2251), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90089,13 +90522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2243), 28, + ACTIONS(2249), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90104,6 +90536,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90118,13 +90551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23659] = 3, + [24098] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2249), 11, + ACTIONS(2255), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90134,13 +90568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2247), 28, + ACTIONS(2253), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90149,6 +90582,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90163,13 +90597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23707] = 3, + [24147] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2253), 11, + ACTIONS(2259), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90179,13 +90614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2251), 28, + ACTIONS(2257), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90194,6 +90628,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90208,46 +90643,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23755] = 18, - ACTIONS(881), 1, + [24196] = 18, + ACTIONS(995), 1, anon_sym_a_COLON, - ACTIONS(883), 1, + ACTIONS(997), 1, anon_sym_LBRACE, - ACTIONS(885), 1, + ACTIONS(999), 1, aux_sym_identifier_token1, - ACTIONS(887), 1, + ACTIONS(1001), 1, anon_sym_AMP, - ACTIONS(889), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(1007), 1, anon_sym_DOLLAR, - ACTIONS(897), 1, + ACTIONS(1011), 1, anon_sym_BANG2, - ACTIONS(903), 1, + ACTIONS(1017), 1, anon_sym_LBRACK, - ACTIONS(905), 1, + ACTIONS(1019), 1, anon_sym_POUND_LBRACE, - ACTIONS(907), 1, + ACTIONS(1021), 1, sym__scope_dict, - ACTIONS(909), 1, + ACTIONS(1023), 1, sym_scope, - ACTIONS(1798), 1, + ACTIONS(1872), 1, sym_integer_literal, - STATE(154), 1, + STATE(162), 1, sym__curly_braces_name_expression, - STATE(445), 1, + STATE(446), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(891), 2, + ACTIONS(1005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1796), 3, + ACTIONS(1870), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(380), 20, + STATE(383), 21, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -90255,6 +90690,7 @@ static const uint16_t ts_small_parse_table[] = { sym__variable, sym__expression, sym_ternary_expression, + sym_falsy_expression, sym_binary_operation, sym_unary_operation, sym_list, @@ -90268,13 +90704,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23833] = 3, + [24275] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2257), 11, + ACTIONS(2263), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90284,13 +90721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2255), 28, + ACTIONS(2261), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90299,6 +90735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90313,13 +90750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23881] = 3, + [24324] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2261), 11, + ACTIONS(2267), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90329,13 +90767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2259), 28, + ACTIONS(2265), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90344,6 +90781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90358,13 +90796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23929] = 3, + [24373] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2265), 11, + ACTIONS(2271), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90374,13 +90813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2263), 28, + ACTIONS(2269), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90389,6 +90827,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90403,13 +90842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [23977] = 3, + [24422] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2269), 11, + ACTIONS(2275), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90419,13 +90859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2267), 28, + ACTIONS(2273), 28, sym__scope_dict, sym_scope, sym_string_literal, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -90434,6 +90873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90448,13 +90888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24025] = 3, + [24471] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2249), 11, + ACTIONS(2279), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90464,20 +90905,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2247), 27, - sym__newline_or_pipe, + ACTIONS(2277), 28, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90492,13 +90934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24072] = 3, + [24520] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2213), 11, + ACTIONS(2283), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90508,20 +90951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2211), 27, - sym__newline_or_pipe, + ACTIONS(2281), 28, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90536,13 +90980,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24119] = 3, + [24569] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, + aux_sym_identifier_token1, + ACTIONS(889), 1, + anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(2287), 1, + sym_integer_literal, + STATE(522), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 11, + ACTIONS(837), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2285), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(817), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [24646] = 17, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(843), 1, + anon_sym_BANG2, + ACTIONS(853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(881), 1, + anon_sym_a_COLON, + ACTIONS(883), 1, + anon_sym_LBRACE, + ACTIONS(887), 1, aux_sym_identifier_token1, + ACTIONS(889), 1, anon_sym_AMP, + ACTIONS(893), 1, + anon_sym_DOLLAR, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + sym__scope_dict, + ACTIONS(905), 1, + sym_scope, + ACTIONS(2291), 1, + sym_integer_literal, + STATE(522), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(837), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2289), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(851), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [24723] = 17, + ACTIONS(1099), 1, + anon_sym_a_COLON, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + aux_sym_identifier_token1, + ACTIONS(1105), 1, + anon_sym_AMP, + ACTIONS(1107), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR, + ACTIONS(1113), 1, + anon_sym_BANG2, + ACTIONS(1119), 1, + anon_sym_LBRACK, + ACTIONS(1121), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1123), 1, + sym__scope_dict, + ACTIONS(1125), 1, + sym_scope, + ACTIONS(2295), 1, + sym_integer_literal, + STATE(183), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1109), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2293), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(460), 22, + sym_scope_dict, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym__variable, + sym__expression, + sym_ternary_expression, + sym_falsy_expression, + sym_binary_operation, + sym_unary_operation, + sym_list, + sym_index_expression, + sym_slice_expression, + sym_field_expression, + sym_call_expression, + sym_method_expression, + sym_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [24800] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2231), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90552,7 +91177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2123), 27, + ACTIONS(2229), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90560,12 +91185,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90580,14 +91205,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24166] = 3, + [24848] = 7, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2299), 1, + anon_sym_DOT2, + ACTIONS(2302), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2085), 11, + ACTIONS(1775), 11, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_DOT2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -90596,7 +91229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2083), 27, + ACTIONS(1773), 24, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90604,12 +91237,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90620,17 +91252,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, + sym_register, + anon_sym_POUND_LBRACE, + [24904] = 16, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2302), 1, anon_sym_LBRACK, + ACTIONS(2304), 1, anon_sym_DASH_GT, + ACTIONS(2306), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, + anon_sym_DOT2, + ACTIONS(2316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2318), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2320), 1, + anon_sym_AMP_AMP, + ACTIONS(2322), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2312), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2308), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1880), 4, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2314), 4, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2324), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1878), 11, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_DOLLAR, + sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [24213] = 3, + [24978] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2081), 11, + ACTIONS(1349), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90640,7 +91329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2079), 27, + ACTIONS(1343), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90648,12 +91337,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90668,13 +91357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24260] = 3, + [25026] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2049), 11, + ACTIONS(2131), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90684,7 +91374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2047), 27, + ACTIONS(2129), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90692,12 +91382,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90712,13 +91402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24307] = 3, + [25074] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2045), 11, + ACTIONS(2283), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90728,7 +91419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2043), 27, + ACTIONS(2281), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90736,12 +91427,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90756,13 +91447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24354] = 3, + [25122] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2037), 11, + ACTIONS(2259), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -90772,7 +91464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2035), 27, + ACTIONS(2257), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90780,12 +91472,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -90800,45 +91492,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24401] = 12, - ACTIONS(2271), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2281), 1, - anon_sym_DOT_DOT, - ACTIONS(2285), 1, - anon_sym_LBRACK, - ACTIONS(2287), 1, - anon_sym_DASH_GT, + [25170] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2273), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 4, + ACTIONS(2255), 12, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2279), 4, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(2283), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1972), 14, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2253), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90846,54 +91517,44 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [24466] = 13, - ACTIONS(2271), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2281), 1, anon_sym_DOT_DOT, - ACTIONS(2285), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(2287), 1, anon_sym_DASH_GT, - ACTIONS(2289), 1, - anon_sym_AMP_AMP, + sym_register, + anon_sym_POUND_LBRACE, + [25218] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2273), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 4, + ACTIONS(2235), 12, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2279), 4, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(2283), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1972), 13, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2233), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90901,43 +91562,44 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [24533] = 10, - ACTIONS(2271), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2281), 1, + anon_sym_AMP_AMP, anon_sym_DOT_DOT, - ACTIONS(2285), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(2287), 1, anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [25266] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2273), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 8, + ACTIONS(2227), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1972), 20, + ACTIONS(2225), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90945,10 +91607,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -90956,27 +91623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [24594] = 8, - ACTIONS(2271), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2285), 1, anon_sym_LBRACK, - ACTIONS(2287), 1, anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [25314] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2273), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 10, + ACTIONS(2215), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -90985,7 +91644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1972), 21, + ACTIONS(2213), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -90993,8 +91652,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91005,15 +91668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24651] = 3, + [25362] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2245), 11, + ACTIONS(2207), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91023,7 +91689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2243), 27, + ACTIONS(2205), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91031,12 +91697,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91051,30 +91717,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24698] = 7, - ACTIONS(2271), 1, + [25410] = 14, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2285), 1, + ACTIONS(2302), 1, anon_sym_LBRACK, - ACTIONS(2287), 1, + ACTIONS(2304), 1, anon_sym_DASH_GT, - ACTIONS(2291), 1, + ACTIONS(2310), 1, anon_sym_DOT2, + ACTIONS(2318), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2320), 1, + anon_sym_AMP_AMP, + ACTIONS(2322), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1974), 10, - aux_sym_identifier_token1, - anon_sym_AMP, + ACTIONS(2312), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, + ACTIONS(2308), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2314), 4, + anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, + ACTIONS(2203), 5, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1972), 24, + ACTIONS(2324), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2201), 12, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91082,30 +91768,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_QMARK_QMARK, sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [24753] = 3, + [25480] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1970), 11, + ACTIONS(2199), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91115,7 +91790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1968), 27, + ACTIONS(2197), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91123,12 +91798,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91143,13 +91818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24800] = 3, + [25528] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 11, + ACTIONS(2195), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91159,7 +91835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2151), 27, + ACTIONS(2193), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91167,12 +91843,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91187,13 +91863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24847] = 3, + [25576] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1834), 11, + ACTIONS(2279), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91203,7 +91880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1832), 27, + ACTIONS(2277), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91211,12 +91888,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91231,13 +91908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24894] = 3, + [25624] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2269), 11, + ACTIONS(2275), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91247,7 +91925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2267), 27, + ACTIONS(2273), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91255,12 +91933,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91275,13 +91953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24941] = 3, + [25672] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2265), 11, + ACTIONS(2187), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91291,7 +91970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2263), 27, + ACTIONS(2185), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91299,12 +91978,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91319,13 +91998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [24988] = 3, + [25720] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1747), 11, + ACTIONS(2159), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91335,7 +92015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1745), 27, + ACTIONS(2157), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91343,12 +92023,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91363,13 +92043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25035] = 3, + [25768] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1966), 11, + ACTIONS(2183), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91379,7 +92060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1964), 27, + ACTIONS(2181), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91387,12 +92068,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91407,13 +92088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25082] = 3, + [25816] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2261), 11, + ACTIONS(2247), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91423,7 +92105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2259), 27, + ACTIONS(2245), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91431,12 +92113,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91451,13 +92133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25129] = 3, + [25864] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1962), 11, + ACTIONS(2175), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91467,7 +92150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1960), 27, + ACTIONS(2173), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91475,12 +92158,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91495,21 +92178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25176] = 7, - ACTIONS(2271), 1, - anon_sym_LPAREN, - ACTIONS(2285), 1, - anon_sym_LBRACK, - ACTIONS(2287), 1, - anon_sym_DASH_GT, - ACTIONS(2294), 1, - anon_sym_DOT2, + [25912] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1759), 10, + ACTIONS(1559), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -91518,7 +92195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1757), 24, + ACTIONS(1557), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91526,11 +92203,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91541,25 +92219,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25231] = 3, + [25960] = 10, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2302), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_DASH_GT, + ACTIONS(2310), 1, + anon_sym_DOT2, + ACTIONS(2322), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2257), 11, + ACTIONS(2312), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2308), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2163), 9, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, + anon_sym_QMARK, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2255), 27, + ACTIONS(2161), 20, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91567,15 +92262,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -91583,17 +92273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25278] = 3, + [26022] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1958), 11, + ACTIONS(2271), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91603,7 +92292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1956), 27, + ACTIONS(2269), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91611,12 +92300,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91631,13 +92320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25325] = 3, + [26070] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 11, + ACTIONS(2155), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91647,7 +92337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1321), 27, + ACTIONS(2153), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91655,12 +92345,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91675,13 +92365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25372] = 3, + [26118] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2181), 11, + ACTIONS(2139), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91691,7 +92382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2179), 27, + ACTIONS(2137), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91699,12 +92390,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91719,13 +92410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25419] = 3, + [26166] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1950), 11, + ACTIONS(2127), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91735,7 +92427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1948), 27, + ACTIONS(2125), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91743,12 +92435,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91763,59 +92455,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25466] = 5, - ACTIONS(1898), 1, - aux_sym_identifier_token1, + [26214] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1896), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - ACTIONS(1900), 12, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(2123), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1902), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2121), 27, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + sym_float_literal, anon_sym_LBRACK, anon_sym_DASH_GT, - [25517] = 3, + sym_register, + anon_sym_POUND_LBRACE, + [26262] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2149), 11, + ACTIONS(2115), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91825,7 +92517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2147), 27, + ACTIONS(2113), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91833,12 +92525,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91853,13 +92545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25564] = 3, + [26310] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2185), 11, + ACTIONS(1956), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -91869,7 +92562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2183), 27, + ACTIONS(1954), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91877,12 +92570,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91897,14 +92590,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25611] = 3, + [26358] = 8, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2302), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_DASH_GT, + ACTIONS(2310), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2193), 11, + ACTIONS(2308), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 11, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_DOT2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -91913,7 +92618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2191), 27, + ACTIONS(1986), 21, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -91921,12 +92626,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -91937,85 +92638,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25658] = 3, + [26416] = 5, + ACTIONS(1639), 1, + aux_sym_identifier_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2197), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2195), 27, + ACTIONS(1637), 5, sym__newline_or_pipe, sym__scope_dict, - sym_scope, - sym_string_literal, sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, + ACTIONS(1641), 13, + anon_sym_EQ, anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_DOLLAR, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_STAR2, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1643), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - sym_float_literal, anon_sym_LBRACK, anon_sym_DASH_GT, - sym_register, - anon_sym_POUND_LBRACE, - [25705] = 10, - ACTIONS(2271), 1, + [26468] = 10, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2281), 1, - anon_sym_DOT_DOT, - ACTIONS(2285), 1, + ACTIONS(2302), 1, anon_sym_LBRACK, - ACTIONS(2287), 1, + ACTIONS(2304), 1, anon_sym_DASH_GT, + ACTIONS(2310), 1, + anon_sym_DOT2, + ACTIONS(2322), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2277), 2, + ACTIONS(2312), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2273), 3, + ACTIONS(2308), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2145), 8, + ACTIONS(1988), 9, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2143), 20, + ACTIONS(1986), 20, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92023,8 +92726,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92036,13 +92739,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [25766] = 3, + [26530] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2165), 11, + ACTIONS(2087), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92052,7 +92756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2163), 27, + ACTIONS(2085), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92060,12 +92764,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92080,13 +92784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25813] = 3, + [26578] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1810), 11, + ACTIONS(2083), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92096,7 +92801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1808), 27, + ACTIONS(2081), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92104,12 +92809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92124,13 +92829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25860] = 3, + [26626] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2241), 11, + ACTIONS(1964), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92140,7 +92846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2239), 27, + ACTIONS(1962), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92148,12 +92854,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92168,13 +92874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25907] = 3, + [26674] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1778), 11, + ACTIONS(1767), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92184,7 +92891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1776), 27, + ACTIONS(1765), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92192,12 +92899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92212,23 +92919,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [25954] = 3, + [26722] = 12, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2302), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_DASH_GT, + ACTIONS(2310), 1, + anon_sym_DOT2, + ACTIONS(2322), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2137), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(2312), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, + ACTIONS(2308), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2314), 4, + anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, + ACTIONS(1988), 5, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2135), 27, + ACTIONS(2324), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1986), 14, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92236,71 +92966,113 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + sym_float_literal, + sym_register, + anon_sym_POUND_LBRACE, + [26788] = 13, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2302), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_DASH_GT, + ACTIONS(2310), 1, + anon_sym_DOT2, + ACTIONS(2320), 1, + anon_sym_AMP_AMP, + ACTIONS(2322), 1, anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2312), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2308), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2314), 4, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1988), 5, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(2324), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + ACTIONS(1986), 13, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26001] = 15, - ACTIONS(2271), 1, + [26856] = 15, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2281), 1, - anon_sym_DOT_DOT, - ACTIONS(2285), 1, + ACTIONS(2302), 1, anon_sym_LBRACK, - ACTIONS(2287), 1, + ACTIONS(2304), 1, anon_sym_DASH_GT, - ACTIONS(2289), 1, - anon_sym_AMP_AMP, - ACTIONS(2297), 1, + ACTIONS(2306), 1, anon_sym_QMARK, - ACTIONS(2299), 1, + ACTIONS(2310), 1, + anon_sym_DOT2, + ACTIONS(2318), 1, anon_sym_PIPE_PIPE, + ACTIONS(2320), 1, + anon_sym_AMP_AMP, + ACTIONS(2322), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2277), 2, + ACTIONS(2312), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2273), 3, + ACTIONS(2308), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(1691), 4, + ACTIONS(2023), 4, aux_sym_identifier_token1, anon_sym_AMP, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2279), 4, + ACTIONS(2314), 4, anon_sym_LT2, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(2283), 6, + ACTIONS(2324), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1689), 11, + ACTIONS(2021), 12, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92309,16 +93081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_DOLLAR, + anon_sym_QMARK_QMARK, sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [26072] = 3, + [26928] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2133), 11, + ACTIONS(1800), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92328,7 +93102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2131), 27, + ACTIONS(1798), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92336,12 +93110,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92356,13 +93130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26119] = 3, + [26976] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2129), 11, + ACTIONS(1968), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92372,7 +93147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2127), 27, + ACTIONS(1966), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92380,12 +93155,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92400,13 +93175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26166] = 3, + [27024] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1786), 11, + ACTIONS(2251), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92416,7 +93192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(1784), 27, + ACTIONS(2249), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92424,12 +93200,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92444,14 +93220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26213] = 3, + [27072] = 7, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2302), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_DASH_GT, + ACTIONS(2326), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2201), 11, + ACTIONS(1988), 11, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_DOT2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_LT2, anon_sym_DASH, @@ -92460,7 +93244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2199), 27, + ACTIONS(1986), 24, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92468,12 +93252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92484,17 +93267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, - anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26260] = 3, + [27128] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2253), 11, + ACTIONS(2267), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92504,7 +93286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2251), 27, + ACTIONS(2265), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92512,12 +93294,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92532,13 +93314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26307] = 3, + [27176] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2205), 11, + ACTIONS(1948), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92548,7 +93331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2203), 27, + ACTIONS(1946), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92556,12 +93339,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92576,13 +93359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26354] = 3, + [27224] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2113), 11, + ACTIONS(2263), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92592,7 +93376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2111), 27, + ACTIONS(2261), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92600,12 +93384,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92620,49 +93404,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26401] = 14, - ACTIONS(2271), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_DOT2, - ACTIONS(2281), 1, - anon_sym_DOT_DOT, - ACTIONS(2285), 1, - anon_sym_LBRACK, - ACTIONS(2287), 1, - anon_sym_DASH_GT, - ACTIONS(2289), 1, - anon_sym_AMP_AMP, - ACTIONS(2299), 1, - anon_sym_PIPE_PIPE, + [27272] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2273), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2229), 4, + ACTIONS(1980), 12, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_BANG2, - sym_integer_literal, - ACTIONS(2279), 4, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(2283), 6, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1978), 27, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2227), 12, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, + sym_register, + anon_sym_POUND_LBRACE, + [27320] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1976), 12, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_BANG2, + sym_integer_literal, + ACTIONS(1974), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92670,18 +93474,34 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK, + anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26470] = 3, + [27368] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2221), 11, + ACTIONS(1792), 12, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, @@ -92691,7 +93511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_BANG2, sym_integer_literal, - ACTIONS(2219), 27, + ACTIONS(1790), 27, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -92699,12 +93519,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -92719,20 +93539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_register, anon_sym_POUND_LBRACE, - [26517] = 6, - ACTIONS(2305), 1, + [27416] = 6, + ACTIONS(2333), 1, anon_sym_custom, - ACTIONS(2307), 1, + ACTIONS(2335), 1, anon_sym_customlist, - STATE(1558), 1, + STATE(1608), 1, sym__command_attribute_completion_behavior, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2303), 2, + ACTIONS(2331), 2, anon_sym_file2, anon_sym_tag, - ACTIONS(2301), 32, + ACTIONS(2329), 32, anon_sym_arglist, anon_sym_augroup, anon_sym_buffer2, @@ -92765,19 +93585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tag_listfiles, anon_sym_user, anon_sym_var, - [26569] = 6, - ACTIONS(2309), 1, + [27468] = 6, + ACTIONS(2337), 1, anon_sym_LBRACE2, - ACTIONS(2311), 1, + ACTIONS(2340), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(505), 2, + STATE(511), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(983), 12, + ACTIONS(921), 13, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -92789,7 +93610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(981), 20, + ACTIONS(919), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92798,8 +93619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92810,19 +93631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [26620] = 6, - ACTIONS(2309), 1, + [27520] = 6, + ACTIONS(2343), 1, anon_sym_LBRACE2, - ACTIONS(2313), 1, + ACTIONS(2345), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(506), 2, + STATE(511), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(991), 12, + ACTIONS(913), 13, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -92834,7 +93656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(989), 20, + ACTIONS(911), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92843,8 +93665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92855,19 +93677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [26671] = 6, - ACTIONS(2315), 1, + [27572] = 6, + ACTIONS(2343), 1, anon_sym_LBRACE2, - ACTIONS(2318), 1, + ACTIONS(2347), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(506), 2, + STATE(512), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 12, + ACTIONS(985), 13, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -92879,7 +93702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(995), 20, + ACTIONS(983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92888,8 +93711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92900,13 +93723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [26722] = 3, + [27624] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 13, + ACTIONS(1313), 14, aux_sym_identifier_token2, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -92918,7 +93742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1317), 21, + ACTIONS(1311), 21, anon_sym_LBRACE2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -92928,8 +93752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92940,27 +93764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [26765] = 8, - ACTIONS(2321), 1, - anon_sym_EQ, - ACTIONS(2325), 1, - anon_sym_EQ_LT_LT, - STATE(374), 1, - sym__let_operator, - STATE(2745), 1, - sym__let_heredoc, + [27668] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2323), 7, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - ACTIONS(2329), 10, + ACTIONS(1305), 14, + aux_sym_identifier_token2, + anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -92971,9 +93782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2327), 13, - anon_sym_QMARK, + anon_sym_isnot, + ACTIONS(1303), 21, + anon_sym_LBRACE2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92982,22 +93803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [26818] = 8, - ACTIONS(2321), 1, + [27712] = 8, + ACTIONS(2349), 1, anon_sym_EQ, - ACTIONS(2325), 1, + ACTIONS(2353), 1, anon_sym_EQ_LT_LT, - STATE(374), 1, + STATE(381), 1, sym__let_operator, - STATE(2745), 1, + STATE(2775), 1, sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2323), 7, + ACTIONS(2351), 7, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93005,7 +93825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, - ACTIONS(2333), 10, + ACTIONS(2355), 11, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93016,9 +93837,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 13, - anon_sym_QMARK, + ACTIONS(2357), 13, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93030,13 +93851,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [26871] = 3, + [27766] = 8, + ACTIONS(2349), 1, + anon_sym_EQ, + ACTIONS(2353), 1, + anon_sym_EQ_LT_LT, + STATE(381), 1, + sym__let_operator, + STATE(2775), 1, + sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 13, - aux_sym_identifier_token2, - anon_sym_EQ, + ACTIONS(2351), 7, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + ACTIONS(2359), 11, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93047,19 +93883,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(1301), 21, - anon_sym_LBRACE2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, + ACTIONS(2361), 13, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93068,88 +93894,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [26914] = 30, - ACTIONS(2339), 1, - anon_sym_list, - ACTIONS(2341), 1, - anon_sym_clear, - ACTIONS(2343), 1, - anon_sym_case, - ACTIONS(2345), 1, - anon_sym_match, - ACTIONS(2347), 1, - anon_sym_spell, - ACTIONS(2349), 1, - anon_sym_foldlevel, - ACTIONS(2351), 1, - anon_sym_iskeyword, - ACTIONS(2353), 1, - anon_sym_conceal, - ACTIONS(2355), 1, - anon_sym_keyword, - ACTIONS(2357), 1, - anon_sym_region, - ACTIONS(2359), 1, - anon_sym_cluster, - ACTIONS(2361), 1, - anon_sym_include, + [27820] = 8, ACTIONS(2363), 1, - anon_sym_sync, - STATE(2452), 1, - sym__syn_clear, - STATE(2491), 1, - sym__syn_list, - STATE(2492), 1, - sym__syn_sync, - STATE(2493), 1, - sym__syn_include, - STATE(2500), 1, - sym__syn_cluster, - STATE(2502), 1, - sym__syn_region, - STATE(2504), 1, - sym__syn_match, - STATE(2505), 1, - sym__syn_keyword, - STATE(2509), 1, - sym__syn_conceal, - STATE(2511), 1, - sym__syn_iskeyword, - STATE(2512), 1, - sym__syn_foldlevel, - STATE(2514), 1, - sym__syn_spell, - STATE(2515), 1, - sym__syn_case, - STATE(2516), 1, - sym__syn_enable, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2337), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2335), 4, - anon_sym_on, - anon_sym_off, - anon_sym_enable, - anon_sym_reset, - [27011] = 8, - ACTIONS(2365), 1, anon_sym_EQ, - ACTIONS(2369), 1, + ACTIONS(2367), 1, anon_sym_EQ_LT_LT, - STATE(297), 1, + STATE(292), 1, sym__let_operator, - STATE(2350), 1, + STATE(2494), 1, sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2367), 7, + ACTIONS(2365), 7, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93157,7 +93917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, - ACTIONS(2329), 10, + ACTIONS(2359), 11, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93168,9 +93929,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2327), 13, - anon_sym_QMARK, + ACTIONS(2361), 13, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93182,19 +93943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27064] = 8, - ACTIONS(2365), 1, + [27874] = 8, + ACTIONS(2363), 1, anon_sym_EQ, - ACTIONS(2369), 1, + ACTIONS(2367), 1, anon_sym_EQ_LT_LT, - STATE(297), 1, + STATE(292), 1, sym__let_operator, - STATE(2350), 1, + STATE(2494), 1, sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2367), 7, + ACTIONS(2365), 7, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93202,7 +93963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, - ACTIONS(2333), 10, + ACTIONS(2355), 11, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93213,9 +93975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 13, - anon_sym_QMARK, + ACTIONS(2357), 13, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93227,28 +93989,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27117] = 6, - ACTIONS(2371), 1, + [27928] = 6, + ACTIONS(2369), 1, anon_sym_LBRACE2, - ACTIONS(2373), 1, + ACTIONS(2372), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(517), 2, + STATE(520), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(983), 6, + ACTIONS(921), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(981), 23, + ACTIONS(919), 23, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -93257,6 +94019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -93269,28 +94032,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [27165] = 6, - ACTIONS(2375), 1, + [27977] = 30, + ACTIONS(2379), 1, + anon_sym_list, + ACTIONS(2381), 1, + anon_sym_clear, + ACTIONS(2383), 1, + anon_sym_case, + ACTIONS(2385), 1, + anon_sym_match, + ACTIONS(2387), 1, + anon_sym_spell, + ACTIONS(2389), 1, + anon_sym_foldlevel, + ACTIONS(2391), 1, + anon_sym_iskeyword, + ACTIONS(2393), 1, + anon_sym_conceal, + ACTIONS(2395), 1, + anon_sym_keyword, + ACTIONS(2397), 1, + anon_sym_region, + ACTIONS(2399), 1, + anon_sym_cluster, + ACTIONS(2401), 1, + anon_sym_include, + ACTIONS(2403), 1, + anon_sym_sync, + STATE(2287), 1, + sym__syn_conceal, + STATE(2533), 1, + sym__syn_enable, + STATE(2535), 1, + sym__syn_case, + STATE(2536), 1, + sym__syn_spell, + STATE(2538), 1, + sym__syn_foldlevel, + STATE(2554), 1, + sym__syn_iskeyword, + STATE(2563), 1, + sym__syn_keyword, + STATE(2567), 1, + sym__syn_match, + STATE(2568), 1, + sym__syn_region, + STATE(2575), 1, + sym__syn_cluster, + STATE(2587), 1, + sym__syn_include, + STATE(2588), 1, + sym__syn_sync, + STATE(2590), 1, + sym__syn_list, + STATE(2591), 1, + sym__syn_clear, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2377), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2375), 4, + anon_sym_on, + anon_sym_off, + anon_sym_enable, + anon_sym_reset, + [28074] = 6, + ACTIONS(2405), 1, anon_sym_LBRACE2, - ACTIONS(2378), 1, + ACTIONS(2407), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(515), 2, + STATE(523), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 6, + ACTIONS(985), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(995), 23, + ACTIONS(983), 23, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -93299,6 +94129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -93311,94 +94142,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [27213] = 30, - ACTIONS(2383), 1, - anon_sym_list, - ACTIONS(2385), 1, - anon_sym_clear, - ACTIONS(2387), 1, - anon_sym_case, - ACTIONS(2389), 1, - anon_sym_match, - ACTIONS(2391), 1, - anon_sym_spell, - ACTIONS(2393), 1, - anon_sym_foldlevel, - ACTIONS(2395), 1, - anon_sym_iskeyword, - ACTIONS(2397), 1, - anon_sym_conceal, - ACTIONS(2399), 1, - anon_sym_keyword, - ACTIONS(2401), 1, - anon_sym_region, - ACTIONS(2403), 1, - anon_sym_cluster, + [28123] = 6, ACTIONS(2405), 1, - anon_sym_include, - ACTIONS(2407), 1, - anon_sym_sync, - STATE(2630), 1, - sym__syn_include, - STATE(2807), 1, - sym__syn_enable, - STATE(2808), 1, - sym__syn_case, - STATE(2811), 1, - sym__syn_spell, - STATE(2814), 1, - sym__syn_foldlevel, - STATE(2815), 1, - sym__syn_iskeyword, - STATE(2816), 1, - sym__syn_conceal, - STATE(2817), 1, - sym__syn_keyword, - STATE(2821), 1, - sym__syn_match, - STATE(2823), 1, - sym__syn_region, - STATE(2824), 1, - sym__syn_cluster, - STATE(2826), 1, - sym__syn_sync, - STATE(2830), 1, - sym__syn_list, - STATE(2832), 1, - sym__syn_clear, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2337), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2381), 4, - anon_sym_on, - anon_sym_off, - anon_sym_enable, - anon_sym_reset, - [27309] = 6, - ACTIONS(2371), 1, anon_sym_LBRACE2, ACTIONS(2409), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(515), 2, + STATE(520), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(991), 6, + ACTIONS(913), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(989), 23, + ACTIONS(911), 23, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -93407,6 +94172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -93419,34 +94185,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [27357] = 3, + [28172] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1834), 6, + ACTIONS(2271), 12, anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_STAR2, anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(1832), 26, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(2269), 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PERCENT, - anon_sym_SEMI, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -93455,24 +94223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_GT, - [27398] = 5, - ACTIONS(2411), 1, - anon_sym_EQ, + [28214] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2413), 8, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - ACTIONS(1958), 10, + ACTIONS(2251), 12, + anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93483,9 +94241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(1956), 13, - anon_sym_QMARK, + ACTIONS(2249), 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93497,13 +94263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27443] = 5, - ACTIONS(2415), 1, + [28256] = 5, + ACTIONS(2411), 1, anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2417), 8, + ACTIONS(2413), 8, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93512,7 +94278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - ACTIONS(2081), 10, + ACTIONS(1964), 11, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93523,9 +94290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2079), 13, - anon_sym_QMARK, + ACTIONS(1962), 13, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93537,69 +94304,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27488] = 3, + [28302] = 30, + ACTIONS(2417), 1, + anon_sym_list, + ACTIONS(2419), 1, + anon_sym_clear, + ACTIONS(2421), 1, + anon_sym_case, + ACTIONS(2423), 1, + anon_sym_match, + ACTIONS(2425), 1, + anon_sym_spell, + ACTIONS(2427), 1, + anon_sym_foldlevel, + ACTIONS(2429), 1, + anon_sym_iskeyword, + ACTIONS(2431), 1, + anon_sym_conceal, + ACTIONS(2433), 1, + anon_sym_keyword, + ACTIONS(2435), 1, + anon_sym_region, + ACTIONS(2437), 1, + anon_sym_cluster, + ACTIONS(2439), 1, + anon_sym_include, + ACTIONS(2441), 1, + anon_sym_sync, + STATE(2813), 1, + sym__syn_enable, + STATE(2816), 1, + sym__syn_case, + STATE(2818), 1, + sym__syn_spell, + STATE(2823), 1, + sym__syn_foldlevel, + STATE(2824), 1, + sym__syn_iskeyword, + STATE(2826), 1, + sym__syn_conceal, + STATE(2828), 1, + sym__syn_keyword, + STATE(2829), 1, + sym__syn_match, + STATE(2830), 1, + sym__syn_region, + STATE(2834), 1, + sym__syn_cluster, + STATE(2835), 1, + sym__syn_include, + STATE(2839), 1, + sym__syn_sync, + STATE(2841), 1, + sym__syn_list, + STATE(2843), 1, + sym__syn_clear, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2241), 11, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_STAR2, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2239), 21, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [27529] = 3, + ACTIONS(2377), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2415), 4, + anon_sym_on, + anon_sym_off, + anon_sym_enable, + anon_sym_reset, + [28398] = 5, + ACTIONS(2443), 1, + aux_sym_argument_token1, + ACTIONS(2445), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2269), 6, - anon_sym_EQ, + ACTIONS(1349), 8, + aux_sym_identifier_token1, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2267), 26, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_LT_LT, - anon_sym_QMARK, + anon_sym_isnot, + ACTIONS(1343), 23, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -93609,16 +94409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_isnot, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_GT, - [27570] = 3, + [28444] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2257), 11, + ACTIONS(2159), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93629,7 +94428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2255), 21, + ACTIONS(2157), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93638,8 +94437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93651,13 +94450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27611] = 5, - ACTIONS(2419), 1, + [28486] = 5, + ACTIONS(2447), 1, anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2421), 8, + ACTIONS(2449), 8, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93666,7 +94465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - ACTIONS(1778), 10, + ACTIONS(2123), 11, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93677,9 +94477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(1776), 13, - anon_sym_QMARK, + ACTIONS(2121), 13, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93691,12 +94491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27656] = 3, + [28532] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 11, + ACTIONS(2267), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93707,7 +94508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2151), 21, + ACTIONS(2265), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93716,10 +94517,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [28574] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2275), 7, + anon_sym_EQ, anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2273), 26, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_LT_LT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -93728,13 +94567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - [27697] = 3, + [28616] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2261), 11, + ACTIONS(2279), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93745,7 +94586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2259), 21, + ACTIONS(2277), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93754,8 +94595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93767,75 +94608,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27738] = 5, - ACTIONS(2423), 1, - aux_sym_argument_token1, - ACTIONS(2425), 1, - aux_sym_argument_token2, + [28658] = 5, + ACTIONS(2451), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 7, - aux_sym_identifier_token1, + ACTIONS(2453), 8, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + ACTIONS(1792), 11, + anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_STAR2, anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(1321), 23, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1790), 13, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27783] = 3, + [28704] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2249), 11, + ACTIONS(2279), 7, anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, + anon_sym_QMARK, anon_sym_DOT2, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2247), 21, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, + ACTIONS(2277), 26, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -93844,13 +94686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - [27824] = 3, + [28746] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2265), 11, + ACTIONS(1559), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93861,7 +94705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2263), 21, + ACTIONS(1557), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93870,8 +94714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93883,12 +94727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27865] = 3, + [28788] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2269), 11, + ACTIONS(2275), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93899,7 +94744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2267), 21, + ACTIONS(2273), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93908,8 +94753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93921,23 +94766,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27906] = 3, + [28830] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2265), 6, + ACTIONS(2271), 7, anon_sym_EQ, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2263), 26, + ACTIONS(2269), 26, anon_sym_COLON, anon_sym_in, anon_sym_RBRACE, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -93946,6 +94791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -93959,12 +94805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [27947] = 3, + [28872] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 11, + ACTIONS(2247), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -93975,7 +94822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2123), 21, + ACTIONS(2245), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93984,8 +94831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93997,12 +94844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [27988] = 3, + [28914] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2245), 11, + ACTIONS(2131), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -94013,7 +94861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(2243), 21, + ACTIONS(2129), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94022,8 +94870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -94035,12 +94883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [28029] = 3, + [28956] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1834), 11, + ACTIONS(2263), 12, anon_sym_EQ, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -94051,7 +94900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_GT2, anon_sym_is, - ACTIONS(1832), 21, + ACTIONS(2261), 21, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94060,8 +94909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -94073,33 +94922,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [28070] = 5, - ACTIONS(2427), 1, + [28998] = 5, + ACTIONS(2443), 1, aux_sym_argument_token1, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 6, + ACTIONS(1349), 8, + aux_sym_identifier_token1, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1321), 23, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(1343), 22, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94110,36 +94961,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_GT, - [28114] = 5, - ACTIONS(2423), 1, - aux_sym_argument_token1, - ACTIONS(2425), 1, - aux_sym_argument_token2, + [29043] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 7, - aux_sym_identifier_token1, + ACTIONS(1305), 8, + aux_sym_identifier_token2, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1321), 22, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1303), 24, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACE2, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94150,24 +94998,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - [28158] = 3, + [29084] = 5, + ACTIONS(2455), 1, + aux_sym_argument_token1, + ACTIONS(2457), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 7, - aux_sym_identifier_token2, + ACTIONS(1349), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1317), 24, + ACTIONS(1343), 23, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACE2, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94176,6 +95027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94188,23 +95040,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28198] = 3, + [29129] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 7, + ACTIONS(1313), 8, aux_sym_identifier_token2, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1301), 24, + ACTIONS(1311), 24, anon_sym_COLON, anon_sym_RBRACE, anon_sym_LBRACE2, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94213,6 +95065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94225,72 +95078,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28238] = 5, - STATE(909), 1, - sym__syn_pattern_offset, + [29170] = 5, + ACTIONS(1639), 1, + aux_sym_identifier_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2433), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2435), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - ACTIONS(2431), 20, + ACTIONS(1637), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [28281] = 6, - ACTIONS(2437), 1, - anon_sym_LBRACE2, - ACTIONS(2439), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(545), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 6, + ACTIONS(2355), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(989), 20, - anon_sym_QMARK, + ACTIONS(2357), 17, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94302,33 +95117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [28326] = 5, - ACTIONS(1898), 1, - aux_sym_identifier_token1, + [29214] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1896), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2329), 6, + ACTIONS(1349), 8, + aux_sym_identifier_token1, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(2327), 17, - anon_sym_QMARK, + ACTIONS(1343), 23, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94340,62 +95154,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [28369] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2443), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2441), 27, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - anon_sym_end, - [28408] = 6, - ACTIONS(2437), 1, + [29254] = 6, + ACTIONS(2459), 1, anon_sym_LBRACE2, - ACTIONS(2445), 1, + ACTIONS(2462), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(540), 2, + STATE(548), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(983), 6, + ACTIONS(921), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(981), 20, - anon_sym_QMARK, + ACTIONS(919), 20, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -94404,6 +95182,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94415,23 +95194,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [28453] = 3, + [29300] = 6, + ACTIONS(2465), 1, + anon_sym_LBRACE2, + ACTIONS(2467), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 7, - aux_sym_identifier_token1, + STATE(548), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1321), 23, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(911), 20, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -94440,6 +95222,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94451,26 +95234,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [28492] = 6, - ACTIONS(2447), 1, + [29346] = 6, + ACTIONS(2465), 1, anon_sym_LBRACE2, - ACTIONS(2450), 1, + ACTIONS(2469), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(545), 2, + STATE(549), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 6, + ACTIONS(985), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(995), 20, - anon_sym_QMARK, + ACTIONS(983), 20, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -94479,6 +95262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94490,20 +95274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [28537] = 3, + [29392] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 5, + ACTIONS(2183), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2123), 24, + ACTIONS(2181), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94512,6 +95296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94525,62 +95310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28575] = 10, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, + [29431] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2145), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2143), 16, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(2139), 6, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_RBRACK, - [28627] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2205), 5, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2203), 24, + ACTIONS(2137), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94589,6 +95332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94602,20 +95346,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28665] = 3, + [29470] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2213), 5, + ACTIONS(1792), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2211), 24, + ACTIONS(1790), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94624,6 +95368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94637,20 +95382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28703] = 3, + [29509] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2221), 5, + ACTIONS(1800), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2219), 24, + ACTIONS(1798), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94659,6 +95404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94672,20 +95418,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28741] = 3, + [29548] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2081), 5, + ACTIONS(2159), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2079), 24, + ACTIONS(2157), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94694,6 +95440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94707,30 +95454,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [28779] = 3, + [29587] = 6, + ACTIONS(2471), 1, + anon_sym_LBRACE2, + ACTIONS(2473), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 7, - aux_sym_identifier_token1, + STATE(572), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1321), 22, + ACTIONS(911), 19, sym__newline_or_pipe, - sym__scope_dict, sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94742,44 +95493,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [28817] = 13, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, + [29632] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2131), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2227), 7, + ACTIONS(2129), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PERCENT, anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2473), 7, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -94787,78 +95526,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [28875] = 13, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(938), 1, - sym__syn_pattern_offset, - STATE(1032), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2475), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - ACTIONS(2489), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [28933] = 6, - ACTIONS(2491), 1, - anon_sym_LBRACE2, - ACTIONS(2494), 1, - aux_sym_identifier_token2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + [29671] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(555), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(997), 6, + ACTIONS(2207), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(995), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(2205), 24, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94868,22 +95561,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - [28977] = 3, + [29710] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2049), 5, + ACTIONS(2283), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2047), 24, + ACTIONS(2281), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94892,6 +95587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94905,20 +95601,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29015] = 3, + [29749] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1747), 5, + ACTIONS(1948), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1745), 24, + ACTIONS(1946), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94927,6 +95623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94940,20 +95637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29053] = 3, + [29788] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1810), 5, + ACTIONS(2263), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1808), 24, + ACTIONS(2261), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94962,6 +95659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -94975,20 +95673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29091] = 3, + [29827] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2045), 5, + ACTIONS(2247), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2043), 24, + ACTIONS(2245), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -94997,6 +95695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95010,65 +95709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29129] = 13, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(950), 1, - sym__syn_pattern_offset, - STATE(1043), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, + [29866] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2497), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - ACTIONS(2489), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [29187] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1327), 5, + ACTIONS(2175), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1321), 24, + ACTIONS(2173), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95077,6 +95731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95090,21 +95745,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29225] = 3, + [29905] = 7, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2477), 1, + anon_sym_DOT2, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2261), 5, - anon_sym_DOT2, + ACTIONS(1775), 5, + anon_sym_QMARK, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2259), 24, + ACTIONS(1773), 21, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PERCENT, @@ -95112,6 +95773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95122,36 +95784,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, anon_sym_RBRACK, + [29952] = 10, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [29263] = 6, - ACTIONS(2499), 1, - anon_sym_LBRACE2, - ACTIONS(2501), 1, - aux_sym_identifier_token2, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(578), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 6, - anon_sym_DOT2, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2163), 4, + anon_sym_QMARK, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, + ACTIONS(2161), 16, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_isnot, - ACTIONS(981), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_RBRACK, + [30005] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2155), 6, anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2153), 24, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95161,22 +95860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - [29307] = 3, + [30044] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 5, + ACTIONS(1349), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2151), 24, + ACTIONS(1343), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95185,6 +95886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95198,27 +95900,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29345] = 7, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2503), 1, - anon_sym_DOT2, + [30083] = 5, + STATE(922), 1, + sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1759), 4, + ACTIONS(2494), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2496), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + ACTIONS(2492), 20, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [30126] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1559), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1757), 21, + ACTIONS(1557), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PERCENT, @@ -95226,6 +95960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95236,21 +95971,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + anon_sym_LBRACK, anon_sym_RBRACK, - [29391] = 3, + anon_sym_DASH_GT, + [30165] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2197), 5, + ACTIONS(1956), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2195), 24, + ACTIONS(1954), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95259,6 +95996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95272,20 +96010,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29429] = 3, + [30204] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2257), 5, + ACTIONS(1964), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2255), 24, + ACTIONS(1962), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95294,6 +96032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95307,20 +96046,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29467] = 3, + [30243] = 6, + ACTIONS(2498), 1, + anon_sym_LBRACE2, + ACTIONS(2501), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(572), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 7, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(919), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [30288] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1778), 5, + ACTIONS(2215), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1776), 24, + ACTIONS(2213), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95329,6 +96107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95342,20 +96121,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29505] = 3, + [30327] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2249), 5, + ACTIONS(1968), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2247), 24, + ACTIONS(1966), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95364,6 +96143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95377,20 +96157,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29543] = 3, + [30366] = 5, + ACTIONS(1639), 1, + aux_sym_identifier_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1637), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + ACTIONS(2355), 7, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2357), 17, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [30409] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1950), 5, + ACTIONS(1976), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1948), 24, + ACTIONS(1974), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95399,6 +96217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95412,20 +96231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29581] = 3, + [30448] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1958), 5, + ACTIONS(2187), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1956), 24, + ACTIONS(2185), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95434,6 +96253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95447,20 +96267,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29619] = 3, + [30487] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1349), 8, + aux_sym_identifier_token1, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1343), 22, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [30526] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1786), 5, + ACTIONS(2127), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1784), 24, + ACTIONS(2125), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95469,6 +96325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95482,20 +96339,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29657] = 3, + [30565] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2193), 5, + ACTIONS(2227), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2191), 24, + ACTIONS(2225), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95504,6 +96361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95517,20 +96375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29695] = 3, + [30604] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1962), 5, + ACTIONS(2123), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1960), 24, + ACTIONS(2121), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95539,6 +96397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95552,20 +96411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29733] = 3, + [30643] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2181), 5, + ACTIONS(1767), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2179), 24, + ACTIONS(1765), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95574,6 +96433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95587,28 +96447,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29771] = 3, + [30682] = 6, + ACTIONS(2471), 1, + anon_sym_LBRACE2, + ACTIONS(2504), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1966), 5, + STATE(556), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1964), 24, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_isnot, + ACTIONS(983), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95618,24 +96484,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_isnot, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_GT, - [29809] = 3, + [30727] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2201), 5, + ACTIONS(2115), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2199), 24, + ACTIONS(2113), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95644,6 +96508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95657,33 +96522,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29847] = 6, - ACTIONS(2499), 1, - anon_sym_LBRACE2, - ACTIONS(2506), 1, - aux_sym_identifier_token2, + [30766] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(555), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 6, + ACTIONS(2087), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(989), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(2085), 24, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95693,22 +96554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - [29891] = 3, + [30805] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2253), 5, + ACTIONS(2231), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2251), 24, + ACTIONS(2229), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95717,6 +96580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95730,20 +96594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29929] = 3, + [30844] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2129), 5, + ACTIONS(1980), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2127), 24, + ACTIONS(1978), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95752,6 +96616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95765,21 +96630,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [29967] = 3, + [30883] = 14, + ACTIONS(2203), 1, + anon_sym_QMARK, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2133), 5, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2201), 7, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_RBRACK, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [30944] = 7, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2514), 1, anon_sym_DOT2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1988), 5, + anon_sym_QMARK, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2131), 24, + ACTIONS(1986), 21, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PERCENT, @@ -95787,6 +96705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95797,23 +96716,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DASH_GT, - [30005] = 3, + [30991] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2137), 5, + ACTIONS(2251), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2135), 24, + ACTIONS(2249), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95822,6 +96739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95835,28 +96753,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30043] = 3, + [31030] = 8, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2185), 5, - anon_sym_DOT2, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 5, + anon_sym_QMARK, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2183), 24, + ACTIONS(1986), 18, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PERCENT, anon_sym_SEMI, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95867,23 +96793,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, anon_sym_RBRACK, + [31079] = 10, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [30081] = 3, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 4, + anon_sym_QMARK, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(1986), 16, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_RBRACK, + [31132] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2241), 5, + ACTIONS(2195), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2239), 24, + ACTIONS(2193), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95892,6 +96859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95905,26 +96873,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30119] = 5, - STATE(956), 1, - sym__syn_pattern_offset, + [31171] = 14, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2021), 7, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_RBRACK, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [31232] = 13, + ACTIONS(1988), 1, + anon_sym_QMARK, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + ACTIONS(1986), 8, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [31291] = 12, + ACTIONS(1988), 1, + anon_sym_QMARK, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + ACTIONS(1986), 9, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + [31348] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2433), 2, + ACTIONS(2521), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2508), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - ACTIONS(2431), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(2519), 27, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -95941,21 +97039,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, anon_sym_end, - [30161] = 3, + [31387] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2165), 5, + ACTIONS(2199), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2163), 24, + ACTIONS(2197), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95964,6 +97069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -95977,20 +97083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30199] = 3, + [31426] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2037), 5, + ACTIONS(2267), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2035), 24, + ACTIONS(2265), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -95999,6 +97105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96012,20 +97119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30237] = 3, + [31465] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2085), 5, + ACTIONS(2259), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2083), 24, + ACTIONS(2257), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -96034,6 +97141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96047,20 +97155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30275] = 3, + [31504] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2149), 5, + ACTIONS(2083), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2147), 24, + ACTIONS(2081), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -96069,6 +97177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96082,20 +97191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30313] = 3, + [31543] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1970), 5, + ACTIONS(2255), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1968), 24, + ACTIONS(2253), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -96104,6 +97213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96117,96 +97227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30351] = 5, - ACTIONS(1898), 1, - aux_sym_identifier_token1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1896), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - ACTIONS(2329), 6, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2327), 17, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [30393] = 7, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2510), 1, - anon_sym_DOT2, + [31582] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1974), 4, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1972), 21, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(2235), 6, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PERCENT, - anon_sym_SEMI, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_RBRACK, - [30439] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2245), 5, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2243), 24, + ACTIONS(2233), 24, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, @@ -96215,6 +97249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96228,68 +97263,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DASH_GT, - [30477] = 8, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, + [31621] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 4, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1972), 18, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(1305), 8, + aux_sym_identifier_token2, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_RBRACK, - [30525] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2113), 5, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2111), 24, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_isnot, + ACTIONS(1303), 21, + anon_sym_LBRACE2, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96299,154 +97296,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_GT, - [30563] = 10, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(1974), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1972), 16, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_RBRACK, - [30615] = 11, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, + [31659] = 13, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, + anon_sym_contained, + ACTIONS(2533), 1, + anon_sym_contains, + STATE(954), 1, + sym__syn_pattern_offset, + STATE(1037), 1, + aux_sym__syn_match_repeat1, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - ACTIONS(1972), 9, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - [30669] = 12, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, + ACTIONS(2531), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2523), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2535), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + ACTIONS(2537), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [31717] = 5, + ACTIONS(2539), 1, + aux_sym_argument_token1, + ACTIONS(2541), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - ACTIONS(1972), 8, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(1349), 7, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [30725] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1319), 7, - aux_sym_identifier_token2, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1317), 21, - anon_sym_LBRACE2, - anon_sym_QMARK, + ACTIONS(1343), 20, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -96455,6 +97368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96466,32 +97380,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [30762] = 3, + [31759] = 13, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, + anon_sym_contained, + ACTIONS(2533), 1, + anon_sym_contains, + STATE(984), 1, + sym__syn_pattern_offset, + STATE(1025), 1, + aux_sym__syn_match_repeat1, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2443), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2441), 26, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2543), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, + ACTIONS(2537), 7, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -96499,54 +97425,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - anon_sym_end, - [30799] = 5, - ACTIONS(2513), 1, - anon_sym_COMMA, - STATE(601), 1, - aux_sym_hl_groups_repeat1, + [31817] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2518), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2516), 23, + ACTIONS(1313), 8, + aux_sym_identifier_token2, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1311), 21, + anon_sym_LBRACE2, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_add, - anon_sym_remove, - anon_sym_end, - [30840] = 5, - STATE(983), 1, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [31855] = 5, + STATE(949), 1, sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2520), 3, + ACTIONS(2494), 2, anon_sym_conceal, anon_sym_contained, - anon_sym_skip, - ACTIONS(2435), 7, + ACTIONS(2545), 7, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -96554,7 +97477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - ACTIONS(2522), 17, + ACTIONS(2492), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -96572,73 +97497,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [30881] = 13, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(1001), 1, - sym__syn_pattern_offset, - STATE(1061), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2475), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2530), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2524), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2534), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - ACTIONS(2536), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [30938] = 3, + [31897] = 5, + ACTIONS(2547), 1, + aux_sym_argument_token1, + ACTIONS(2549), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 7, - aux_sym_identifier_token2, + ACTIONS(1349), 7, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, anon_sym_isnot, - ACTIONS(1301), 21, - anon_sym_LBRACE2, - anon_sym_QMARK, + ACTIONS(1343), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96650,19 +97533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_LBRACK, anon_sym_DASH_GT, - [30975] = 5, - ACTIONS(2538), 1, + [31938] = 5, + ACTIONS(2551), 1, anon_sym_COMMA, - STATE(601), 1, + STATE(615), 1, aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2542), 3, + ACTIONS(2555), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(2540), 23, + ACTIONS(2553), 23, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -96686,31 +97569,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_add, anon_sym_remove, anon_sym_end, - [31016] = 5, - ACTIONS(2544), 1, - aux_sym_argument_token1, - ACTIONS(2546), 1, - aux_sym_argument_token2, + [31979] = 6, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2559), 1, + anon_sym_DASH_GT, + STATE(2295), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 6, + ACTIONS(1641), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, + ACTIONS(1643), 19, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_isnot, - ACTIONS(1321), 20, + anon_sym_LBRACK, + [32022] = 6, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, + anon_sym_DASH_GT, + STATE(2293), 1, + aux_sym_parameters_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1641), 6, anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(1643), 19, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96720,45 +97641,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - anon_sym_DASH_GT, - [31057] = 13, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(991), 1, - sym__syn_pattern_offset, - STATE(1056), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + [32065] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2497), 2, + ACTIONS(2521), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2519), 26, sym__newline_or_pipe, sym_comment, - ACTIONS(2530), 2, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2524), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - ACTIONS(2536), 7, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -96766,19 +97676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - [31114] = 5, - ACTIONS(2538), 1, + anon_sym_end, + [32102] = 5, + ACTIONS(2551), 1, anon_sym_COMMA, - STATE(605), 1, + STATE(627), 1, aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2550), 3, + ACTIONS(2567), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(2548), 23, + ACTIONS(2565), 23, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -96802,31 +97713,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_add, anon_sym_remove, anon_sym_end, - [31155] = 6, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - STATE(2590), 1, - aux_sym_parameters_repeat2, + [32143] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1900), 5, + ACTIONS(1305), 8, + aux_sym_identifier_token2, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1902), 19, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_isnot, + ACTIONS(1303), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LBRACE2, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96836,48 +97745,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_LBRACK, - [31197] = 17, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, + [32180] = 6, ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2559), 1, anon_sym_COMMA, - ACTIONS(2561), 1, - anon_sym_SEMI, - ACTIONS(2563), 1, - anon_sym_RBRACK, - STATE(2139), 1, - aux_sym_list_repeat1, + ACTIONS(2569), 1, + anon_sym_DASH_GT, + STATE(2426), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(1641), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(1643), 19, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -96885,43 +97783,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [31261] = 14, - ACTIONS(2453), 1, + anon_sym_LBRACK, + [32223] = 18, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2574), 1, + anon_sym_SEMI, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2578), 1, + anon_sym_RBRACK, + STATE(2216), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2565), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -96929,31 +97833,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [31319] = 6, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - STATE(2499), 1, - aux_sym_parameters_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1900), 5, - anon_sym_DOT2, + [32290] = 13, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1005), 1, + sym__syn_pattern_offset, + STATE(1080), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2543), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2580), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2590), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + ACTIONS(2592), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [32347] = 13, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1015), 1, + sym__syn_pattern_offset, + STATE(1072), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2523), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2580), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2590), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + ACTIONS(2592), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [32404] = 18, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2574), 1, + anon_sym_SEMI, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2594), 1, + anon_sym_COMMA, + ACTIONS(2596), 1, + anon_sym_RBRACK, + STATE(2284), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [32471] = 6, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_DASH_GT, + STATE(2290), 1, + aux_sym_parameters_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1641), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1902), 19, + ACTIONS(1643), 19, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -96965,46 +98007,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, - [31361] = 17, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + [32514] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1313), 8, + aux_sym_identifier_token2, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2461), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2463), 1, + anon_sym_GT2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(1311), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LBRACE2, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + [32551] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2561), 1, - anon_sym_SEMI, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_RBRACK, - STATE(2197), 1, - aux_sym_list_repeat1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2601), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97012,79 +98087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [31425] = 18, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2582), 1, - anon_sym_contains, - ACTIONS(2586), 1, - anon_sym_matchgroup, - ACTIONS(2590), 1, - anon_sym_skip, - ACTIONS(2592), 1, - anon_sym_end, - STATE(618), 1, - aux_sym__syn_region_repeat1, - STATE(669), 1, - sym__syn_region_end, - STATE(740), 1, - sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(1973), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2578), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [31491] = 6, - ACTIONS(2552), 1, + [32612] = 6, + ACTIONS(2557), 1, anon_sym_COMMA, - ACTIONS(2594), 1, + ACTIONS(2603), 1, anon_sym_DASH_GT, - STATE(2598), 1, + STATE(2292), 1, aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1900), 5, + ACTIONS(1641), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1902), 19, + ACTIONS(1643), 19, anon_sym_COLON, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97096,223 +98124,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, - [31533] = 18, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2582), 1, - anon_sym_contains, - ACTIONS(2586), 1, - anon_sym_matchgroup, - ACTIONS(2590), 1, - anon_sym_skip, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(739), 1, - sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1969), 1, - aux_sym__syn_region_repeat2, + [32655] = 5, + STATE(987), 1, + sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, + ACTIONS(2606), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2578), 2, + anon_sym_skip, + ACTIONS(2496), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + ACTIONS(2608), 17, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2580), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2584), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [31599] = 18, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2582), 1, - anon_sym_contains, - ACTIONS(2586), 1, anon_sym_matchgroup, - ACTIONS(2590), 1, - anon_sym_skip, - ACTIONS(2597), 1, - anon_sym_end, - STATE(725), 1, - sym__syn_region_skip, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(2086), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2578), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2588), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [31665] = 18, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2582), 1, - anon_sym_contains, - ACTIONS(2586), 1, - anon_sym_matchgroup, - ACTIONS(2590), 1, - anon_sym_skip, - ACTIONS(2592), 1, anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(754), 1, - sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(2017), 1, - aux_sym__syn_region_repeat2, + [32696] = 5, + ACTIONS(2610), 1, + anon_sym_COMMA, + STATE(627), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, + ACTIONS(2615), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2578), 2, + anon_sym_skip, + ACTIONS(2613), 23, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2580), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2584), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [31731] = 18, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2582), 1, - anon_sym_contains, - ACTIONS(2586), 1, anon_sym_matchgroup, - ACTIONS(2590), 1, - anon_sym_skip, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(788), 1, - sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(2099), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2578), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2588), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [31797] = 6, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(2599), 1, - anon_sym_DASH_GT, - STATE(2428), 1, - aux_sym_parameters_repeat2, + anon_sym_add, + anon_sym_remove, + anon_sym_end, + [32737] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1900), 5, + ACTIONS(1792), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1902), 19, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(1790), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97324,63 +98228,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, - [31839] = 5, - STATE(1031), 1, - sym__syn_pattern_offset, + anon_sym_DASH_GT, + [32773] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2617), 1, + anon_sym_RPAREN, + STATE(2529), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2602), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2435), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - ACTIONS(2604), 17, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [31879] = 3, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [32837] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 7, - aux_sym_identifier_token2, + ACTIONS(2275), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(1317), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, - anon_sym_QMARK, + ACTIONS(2273), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97390,80 +98306,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [31915] = 18, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2582), 1, - anon_sym_contains, - ACTIONS(2586), 1, - anon_sym_matchgroup, - ACTIONS(2590), 1, - anon_sym_skip, - ACTIONS(2597), 1, - anon_sym_end, - STATE(617), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(783), 1, - sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2069), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2578), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [31981] = 5, - ACTIONS(2606), 1, - aux_sym_argument_token1, - ACTIONS(2608), 1, - aux_sym_argument_token2, + [32873] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 6, + ACTIONS(1956), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(1321), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(1954), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97473,36 +98339,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32021] = 6, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(2610), 1, + [32909] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - STATE(2609), 1, - aux_sym_parameters_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1900), 5, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1902), 19, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2619), 1, + anon_sym_RPAREN, + STATE(2316), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97510,77 +98389,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - [32063] = 18, - ACTIONS(2576), 1, + [32973] = 18, + ACTIONS(2623), 1, anon_sym_cchar, - ACTIONS(2582), 1, + ACTIONS(2629), 1, anon_sym_contains, - ACTIONS(2586), 1, + ACTIONS(2633), 1, anon_sym_matchgroup, - ACTIONS(2590), 1, + ACTIONS(2637), 1, anon_sym_skip, - ACTIONS(2592), 1, + ACTIONS(2639), 1, anon_sym_end, - STATE(616), 1, + STATE(658), 1, aux_sym__syn_region_repeat1, - STATE(669), 1, + STATE(773), 1, sym__syn_region_end, - STATE(721), 1, + STATE(804), 1, sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, + STATE(919), 1, sym__syn_arguments_match, - STATE(872), 1, + STATE(927), 1, sym__syn_arguments_region, - STATE(1959), 1, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2035), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, + ACTIONS(2621), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2578), 2, + ACTIONS(2625), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2588), 2, + ACTIONS(2635), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2580), 4, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2584), 5, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [32129] = 3, + [33039] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 7, - aux_sym_identifier_token2, + ACTIONS(1964), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - anon_sym_isnot, - ACTIONS(1301), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, - anon_sym_QMARK, + ACTIONS(1962), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97590,145 +98467,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32165] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2518), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2516), 24, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_add, - anon_sym_remove, - anon_sym_end, - [32201] = 18, - ACTIONS(2576), 1, + [33075] = 18, + ACTIONS(2623), 1, anon_sym_cchar, - ACTIONS(2582), 1, + ACTIONS(2629), 1, anon_sym_contains, - ACTIONS(2586), 1, + ACTIONS(2633), 1, anon_sym_matchgroup, - ACTIONS(2590), 1, + ACTIONS(2637), 1, anon_sym_skip, - ACTIONS(2597), 1, + ACTIONS(2641), 1, anon_sym_end, - STATE(619), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, + STATE(883), 1, sym__syn_region_end, - STATE(735), 1, + STATE(894), 1, sym__syn_region_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, + STATE(919), 1, sym__syn_arguments_match, - STATE(872), 1, + STATE(927), 1, sym__syn_arguments_region, - STATE(2121), 1, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(943), 1, + aux_sym__syn_region_repeat1, + STATE(2062), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, + ACTIONS(2621), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2578), 2, + ACTIONS(2625), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2588), 2, + ACTIONS(2635), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2580), 4, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2584), 5, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [32267] = 15, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_DOT2, - ACTIONS(2625), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, - anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, - STATE(19), 1, - sym__cmd_separator, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2621), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2637), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2623), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2631), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [32326] = 3, + [33141] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2269), 5, + ACTIONS(1968), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2267), 21, - anon_sym_QMARK, + ACTIONS(1966), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -97737,6 +98538,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97749,61 +98551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32361] = 14, - ACTIONS(2639), 1, - anon_sym_QMARK, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_DOT2, - ACTIONS(2653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, - anon_sym_AMP_AMP, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2647), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2643), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2649), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2651), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [32418] = 3, + [33177] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1786), 5, + ACTIONS(1800), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1784), 21, - anon_sym_QMARK, + ACTIONS(1798), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -97812,6 +98571,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97824,18 +98584,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32453] = 3, + [33213] = 18, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2629), 1, + anon_sym_contains, + ACTIONS(2633), 1, + anon_sym_matchgroup, + ACTIONS(2637), 1, + anon_sym_skip, + ACTIONS(2639), 1, + anon_sym_end, + STATE(717), 1, + aux_sym__syn_region_repeat1, + STATE(773), 1, + sym__syn_region_end, + STATE(805), 1, + sym__syn_region_skip, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(1970), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2625), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [33279] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1778), 5, + ACTIONS(1976), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1776), 21, - anon_sym_QMARK, + ACTIONS(1974), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -97844,6 +98652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97856,62 +98665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32488] = 8, - ACTIONS(2641), 1, + [33315] = 7, + ACTIONS(2643), 1, anon_sym_LPAREN, ACTIONS(2645), 1, anon_sym_DOT2, - ACTIONS(2661), 1, + ACTIONS(2648), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2643), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 4, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1972), 15, + ACTIONS(1775), 5, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [32533] = 7, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, - ACTIONS(2665), 1, - anon_sym_DOT2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1759), 4, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1757), 18, - anon_sym_QMARK, + ACTIONS(1773), 18, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, @@ -97919,6 +98691,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97929,18 +98702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [32576] = 3, + [33359] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1810), 5, + ACTIONS(1980), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1808), 21, - anon_sym_QMARK, + ACTIONS(1978), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -97949,6 +98722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97961,18 +98735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32611] = 3, + [33395] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1747), 5, + ACTIONS(1767), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1745), 21, - anon_sym_QMARK, + ACTIONS(1765), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -97981,6 +98755,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -97993,43 +98768,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [32646] = 15, - ACTIONS(2613), 1, + [33431] = 16, + ACTIONS(2652), 1, anon_sym_QMARK, - ACTIONS(2615), 1, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2668), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - STATE(9), 1, + STATE(12), 1, sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2668), 2, + ACTIONS(2678), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2617), 3, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98037,29 +98814,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [32705] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1950), 5, + [33493] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1948), 21, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2680), 1, + anon_sym_RPAREN, + STATE(2586), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98067,31 +98861,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [33557] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [32740] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1958), 5, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1956), 21, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2682), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98099,45 +98908,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [33621] = 15, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2648), 1, anon_sym_LBRACK, + ACTIONS(2650), 1, anon_sym_DASH_GT, - [32775] = 15, - ACTIONS(2613), 1, + ACTIONS(2684), 1, anon_sym_QMARK, - ACTIONS(2615), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2688), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2700), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, - STATE(10), 1, - sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2670), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2694), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98145,44 +98953,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [32834] = 16, - ACTIONS(2453), 1, + [33681] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2672), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2706), 1, anon_sym_COMMA, - ACTIONS(2674), 1, + ACTIONS(2708), 1, anon_sym_RBRACK, - STATE(2307), 1, + STATE(2402), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98190,26 +99000,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [32895] = 3, + [33745] = 6, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2710), 1, + anon_sym_DASH_GT, + STATE(2309), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1962), 5, + ACTIONS(1641), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1960), 21, - anon_sym_QMARK, + ACTIONS(1643), 18, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -98221,44 +99036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, - anon_sym_DASH_GT, - [32930] = 15, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [33787] = 7, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_DOT2, - ACTIONS(2625), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, - anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2648), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, - STATE(7), 1, - sym__cmd_separator, + ACTIONS(2713), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2676), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(1988), 5, + anon_sym_QMARK, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(1986), 18, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98266,43 +99073,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [32989] = 15, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [33831] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, - STATE(26), 1, - sym__cmd_separator, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2716), 1, + anon_sym_RPAREN, + STATE(2384), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2678), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98310,43 +99120,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33048] = 15, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [33895] = 15, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, + anon_sym_DASH_GT, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2700), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, - STATE(21), 1, - sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2680), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2718), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98354,73 +99165,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33107] = 15, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [33955] = 15, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, + anon_sym_DASH_GT, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2700), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, - STATE(44), 1, - sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2682), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2631), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [33166] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1966), 5, - anon_sym_DOT2, + ACTIONS(2692), 3, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1964), 21, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2720), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98428,46 +99210,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [33201] = 16, - ACTIONS(2453), 1, + [34015] = 16, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(2361), 1, - aux_sym_list_repeat1, + STATE(38), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2722), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98475,26 +99256,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33262] = 3, + [34077] = 8, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, + anon_sym_DASH_GT, + ACTIONS(2688), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1970), 5, - anon_sym_DOT2, + ACTIONS(2686), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 5, + anon_sym_QMARK, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1968), 21, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1986), 15, anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -98505,62 +99294,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [33297] = 4, + [34123] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2686), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2333), 5, + ACTIONS(2131), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(2129), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [33334] = 4, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2686), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2333), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -98573,35 +99327,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [33371] = 7, - ACTIONS(2641), 1, + [34159] = 10, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2648), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, ACTIONS(2688), 1, anon_sym_DOT2, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1974), 4, + ACTIONS(2690), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2686), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 4, + anon_sym_QMARK, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1972), 18, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1986), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98609,44 +99367,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33414] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + [34209] = 5, + STATE(1050), 1, + sym__syn_pattern_offset, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2724), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2496), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + ACTIONS(2726), 17, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [34249] = 18, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2629), 1, + anon_sym_contains, + ACTIONS(2633), 1, + anon_sym_matchgroup, + ACTIONS(2637), 1, + anon_sym_skip, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(899), 1, + sym__syn_region_skip, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(943), 1, + aux_sym__syn_region_repeat1, + STATE(2015), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2625), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [34315] = 14, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2698), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2700), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_RPAREN, - STATE(2339), 1, - aux_sym_list_repeat1, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2021), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98654,29 +99494,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33475] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2245), 5, + [34373] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2243), 21, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2728), 1, + anon_sym_COMMA, + ACTIONS(2730), 1, + anon_sym_RBRACK, + STATE(2621), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98684,87 +99541,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [33510] = 14, - ACTIONS(2698), 1, - anon_sym_cchar, - ACTIONS(2707), 1, - anon_sym_contains, - ACTIONS(2713), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2695), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2701), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2716), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2693), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_end, - ACTIONS(2704), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2710), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [33567] = 14, - ACTIONS(2639), 1, + [34437] = 16, + ACTIONS(2652), 1, anon_sym_QMARK, - ACTIONS(2641), 1, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2645), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2653), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, + ACTIONS(2668), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2661), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, + STATE(18), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2732), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2719), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98772,27 +99587,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33624] = 4, + [34499] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2721), 3, + ACTIONS(2734), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2333), 5, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(2361), 18, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -98805,38 +99621,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [33661] = 10, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_DOT2, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, + [34537] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(1974), 3, + ACTIONS(2734), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2359), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2643), 3, + ACTIONS(2361), 18, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, + anon_sym_PLUS, anon_sym_STAR2, - ACTIONS(1972), 13, - anon_sym_QMARK, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98844,44 +99653,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33710] = 16, - ACTIONS(2453), 1, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [34575] = 16, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RPAREN, - STATE(2300), 1, - aux_sym_list_repeat1, + STATE(2), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2736), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98889,27 +99701,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33771] = 4, + [34637] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2721), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2333), 5, + ACTIONS(2159), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(2157), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -98922,30 +99734,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [33808] = 6, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(2725), 1, - anon_sym_DASH_GT, - STATE(2503), 1, - aux_sym_parameters_repeat2, + [34673] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1900), 5, + ACTIONS(1349), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1902), 18, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(1343), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -98957,40 +99766,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_isnot, anon_sym_LBRACK, - [33849] = 12, - ACTIONS(2641), 1, + anon_sym_DASH_GT, + [34709] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2615), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(2613), 24, + anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_add, + anon_sym_remove, + anon_sym_end, + [34745] = 13, + ACTIONS(1988), 1, + anon_sym_QMARK, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2645), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, + anon_sym_DASH_GT, + ACTIONS(2688), 1, anon_sym_DOT2, - ACTIONS(2655), 1, + ACTIONS(2700), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(1972), 5, - anon_sym_QMARK, + ACTIONS(1986), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(2659), 7, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98998,42 +99843,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33902] = 14, - ACTIONS(2639), 1, - anon_sym_QMARK, - ACTIONS(2641), 1, + [34801] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2645), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2653), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2738), 1, + anon_sym_RPAREN, + STATE(2450), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [34865] = 15, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2648), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP_AMP, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2728), 3, + ACTIONS(2740), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99041,39 +99935,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [33959] = 11, - ACTIONS(2641), 1, + [34925] = 12, + ACTIONS(1988), 1, + anon_sym_QMARK, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_DOT2, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, + ACTIONS(2648), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(1972), 6, - anon_sym_QMARK, + ACTIONS(1986), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2659), 7, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99081,18 +99977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [34010] = 3, + [34979] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2037), 5, + ACTIONS(2083), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2035), 21, - anon_sym_QMARK, + ACTIONS(2081), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99101,6 +99997,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99113,42 +100010,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34045] = 14, - ACTIONS(2639), 1, - anon_sym_QMARK, - ACTIONS(2641), 1, + [35015] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2645), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2653), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2594), 1, + anon_sym_COMMA, + ACTIONS(2742), 1, + anon_sym_RBRACK, + STATE(2430), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2730), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99156,87 +100057,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [34102] = 14, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(682), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2732), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_end, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [34159] = 16, - ACTIONS(2453), 1, + [35079] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2570), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2744), 1, anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_RPAREN, - STATE(2486), 1, + ACTIONS(2746), 1, + anon_sym_RBRACK, + STATE(2543), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99244,29 +100104,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [34220] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2045), 5, + [35143] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2043), 21, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2748), 1, + anon_sym_RPAREN, + STATE(2437), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99274,46 +100151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [35207] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [34255] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2570), 1, + ACTIONS(2572), 1, anon_sym_COMMA, - ACTIONS(2742), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2750), 1, anon_sym_RPAREN, - STATE(2406), 1, + STATE(2372), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99321,29 +100198,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [34316] = 3, + [35271] = 16, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, + anon_sym_LBRACK, + ACTIONS(2676), 1, + anon_sym_DASH_GT, + STATE(50), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2049), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2047), 21, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2752), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99351,31 +100244,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [35333] = 16, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, anon_sym_LBRACK, + ACTIONS(2676), 1, anon_sym_DASH_GT, - [34351] = 3, + STATE(5), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2081), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2079), 21, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2754), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99383,63 +100290,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [35395] = 15, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2648), 1, anon_sym_LBRACK, + ACTIONS(2650), 1, anon_sym_DASH_GT, - [34386] = 3, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP_AMP, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2085), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2083), 21, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2690), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [34421] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2113), 5, - anon_sym_DOT2, + ACTIONS(2692), 3, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2111), 21, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2756), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99447,20 +100335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [34456] = 3, + [35455] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 5, + ACTIONS(2087), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2123), 21, - anon_sym_QMARK, + ACTIONS(2085), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99469,6 +100355,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99481,63 +100368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34491] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(2746), 1, - anon_sym_RBRACK, - STATE(2441), 1, - aux_sym_list_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [34552] = 3, + [35491] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2149), 5, + ACTIONS(2115), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2147), 21, - anon_sym_QMARK, + ACTIONS(2113), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99546,6 +100388,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99558,145 +100401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34587] = 10, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_DOT2, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, + [35527] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2145), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2643), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2143), 13, - anon_sym_QMARK, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [34636] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2123), 6, anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2748), 1, - anon_sym_RPAREN, - STATE(2485), 1, - aux_sym_list_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [34697] = 14, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2750), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_end, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [34754] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2165), 5, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2163), 21, - anon_sym_QMARK, + ACTIONS(2121), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99705,6 +100421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99717,18 +100434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34789] = 3, + [35563] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 5, + ACTIONS(2127), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2151), 21, - anon_sym_QMARK, + ACTIONS(2125), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99737,6 +100454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99749,18 +100467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34824] = 3, + [35599] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 5, + ACTIONS(2139), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1321), 21, - anon_sym_QMARK, + ACTIONS(2137), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99769,6 +100487,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99781,18 +100500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34859] = 3, + [35635] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2137), 5, + ACTIONS(2155), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2135), 21, - anon_sym_QMARK, + ACTIONS(2153), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -99801,6 +100520,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99813,61 +100533,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [34894] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2133), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2131), 21, - anon_sym_QMARK, + [35671] = 15, + ACTIONS(2643), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, + ACTIONS(2648), 1, anon_sym_LBRACK, + ACTIONS(2650), 1, anon_sym_DASH_GT, - [34929] = 3, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP_AMP, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2129), 5, - anon_sym_DOT2, + ACTIONS(2690), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2686), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2692), 3, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2127), 21, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2758), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99875,44 +100578,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [35731] = 17, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [34964] = 14, - ACTIONS(2639), 1, - anon_sym_QMARK, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2653), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2760), 1, + anon_sym_RPAREN, + STATE(2510), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2752), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99920,27 +100625,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35021] = 4, + [35795] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2754), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2333), 5, + ACTIONS(2247), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(2245), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -99953,44 +100658,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35058] = 16, - ACTIONS(2453), 1, + [35831] = 10, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2648), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2559), 1, - anon_sym_COMMA, - ACTIONS(2756), 1, - anon_sym_RBRACK, - STATE(2448), 1, - aux_sym_list_repeat1, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2702), 1, + anon_sym_DASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2163), 4, + anon_sym_QMARK, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2161), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -99998,44 +100698,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35119] = 16, - ACTIONS(2453), 1, + [35881] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2758), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2762), 1, anon_sym_COMMA, - ACTIONS(2760), 1, + ACTIONS(2764), 1, anon_sym_RBRACK, - STATE(2412), 1, + STATE(2463), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100043,44 +100745,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35180] = 16, - ACTIONS(2453), 1, + [35945] = 17, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2762), 1, + ACTIONS(2572), 1, anon_sym_COMMA, - ACTIONS(2764), 1, - anon_sym_RBRACK, - STATE(2599), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2766), 1, + anon_sym_RPAREN, + STATE(2445), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100088,44 +100792,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35241] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2766), 1, - anon_sym_RPAREN, - STATE(2453), 1, - aux_sym_list_repeat1, + [36009] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2251), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2249), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100133,26 +100823,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35302] = 3, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [36045] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2253), 5, + ACTIONS(2768), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2251), 21, - anon_sym_QMARK, + ACTIONS(2361), 18, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100165,41 +100859,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35337] = 13, + [36083] = 18, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2629), 1, + anon_sym_contains, + ACTIONS(2633), 1, + anon_sym_matchgroup, + ACTIONS(2637), 1, + anon_sym_skip, ACTIONS(2641), 1, + anon_sym_end, + STATE(698), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(884), 1, + sym__syn_region_skip, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2061), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2625), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [36149] = 15, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2645), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, + anon_sym_DASH_GT, + ACTIONS(2684), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, anon_sym_DOT2, - ACTIONS(2653), 1, + ACTIONS(2696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2698), 1, anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, + ACTIONS(2700), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, + ACTIONS(2690), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2643), 3, + ACTIONS(2686), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2692), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2227), 4, - anon_sym_QMARK, + ACTIONS(2770), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + ACTIONS(2704), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100207,18 +100952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35392] = 3, + [36209] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2221), 5, + ACTIONS(2175), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2219), 21, - anon_sym_QMARK, + ACTIONS(2173), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100227,6 +100972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100239,18 +100985,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35427] = 3, + [36245] = 18, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2629), 1, + anon_sym_contains, + ACTIONS(2633), 1, + anon_sym_matchgroup, + ACTIONS(2637), 1, + anon_sym_skip, + ACTIONS(2641), 1, + anon_sym_end, + STATE(635), 1, + aux_sym__syn_region_repeat1, + STATE(821), 1, + sym__syn_region_skip, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2120), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2625), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [36311] = 18, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2629), 1, + anon_sym_contains, + ACTIONS(2633), 1, + anon_sym_matchgroup, + ACTIONS(2637), 1, + anon_sym_skip, + ACTIONS(2641), 1, + anon_sym_end, + STATE(819), 1, + sym__syn_region_skip, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(943), 1, + aux_sym__syn_region_repeat1, + STATE(2124), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2625), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [36377] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2241), 5, + ACTIONS(1559), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2239), 21, - anon_sym_QMARK, + ACTIONS(1557), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100259,6 +101101,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100271,18 +101114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35462] = 3, + [36413] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2213), 5, + ACTIONS(2183), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2211), 21, - anon_sym_QMARK, + ACTIONS(2181), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100291,6 +101134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100303,18 +101147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35497] = 3, + [36449] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2205), 5, + ACTIONS(2187), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2203), 21, - anon_sym_QMARK, + ACTIONS(2185), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100323,6 +101167,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100335,18 +101180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35532] = 3, + [36485] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2201), 5, + ACTIONS(2195), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2199), 21, - anon_sym_QMARK, + ACTIONS(2193), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100355,6 +101200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100367,18 +101213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35567] = 3, + [36521] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2197), 5, + ACTIONS(2199), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2195), 21, - anon_sym_QMARK, + ACTIONS(2197), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100387,6 +101233,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100399,26 +101246,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35602] = 3, + [36557] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2193), 5, + ACTIONS(2772), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2191), 21, - anon_sym_QMARK, + ACTIONS(2361), 18, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100431,26 +101280,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35637] = 3, + [36595] = 14, + ACTIONS(2203), 1, + anon_sym_QMARK, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2648), 1, + anon_sym_LBRACK, + ACTIONS(2650), 1, + anon_sym_DASH_GT, + ACTIONS(2688), 1, + anon_sym_DOT2, + ACTIONS(2698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP_AMP, + ACTIONS(2702), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2690), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2686), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2692), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2201), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_QMARK_QMARK, + ACTIONS(2704), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [36653] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2185), 5, + ACTIONS(2772), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2183), 21, - anon_sym_QMARK, + ACTIONS(2361), 18, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100463,42 +101358,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35672] = 14, - ACTIONS(2639), 1, + [36691] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2263), 6, anon_sym_QMARK, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, anon_sym_DOT2, - ACTIONS(2653), 1, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2261), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, anon_sym_AMP_AMP, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - ACTIONS(2663), 1, anon_sym_DASH_GT, + [36727] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2643), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2207), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2768), 3, + ACTIONS(2205), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100506,42 +101422,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35729] = 14, - ACTIONS(2639), 1, - anon_sym_QMARK, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_DOT2, - ACTIONS(2653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2655), 1, - anon_sym_AMP_AMP, - ACTIONS(2657), 1, - anon_sym_DASH, - ACTIONS(2661), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, anon_sym_DASH_GT, + [36763] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2647), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2643), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2649), 3, + ACTIONS(2215), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2770), 3, + ACTIONS(2213), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2659), 7, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100549,18 +101455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35786] = 3, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [36799] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2249), 5, + ACTIONS(2227), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2247), 21, - anon_sym_QMARK, + ACTIONS(2225), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100569,6 +101477,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100581,44 +101490,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35821] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2772), 1, - anon_sym_RPAREN, - STATE(2549), 1, - aux_sym_list_repeat1, + [36835] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2231), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2229), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100626,18 +101521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [35882] = 3, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [36871] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2181), 5, + ACTIONS(2235), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2179), 21, - anon_sym_QMARK, + ACTIONS(2233), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100646,6 +101543,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100658,18 +101556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35917] = 3, + [36907] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2257), 5, + ACTIONS(2255), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2255), 21, - anon_sym_QMARK, + ACTIONS(2253), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100678,6 +101576,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100690,18 +101589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35952] = 3, + [36943] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2261), 5, + ACTIONS(2259), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2259), 21, - anon_sym_QMARK, + ACTIONS(2257), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100710,6 +101609,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100722,44 +101622,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [35987] = 16, - ACTIONS(2453), 1, + [36979] = 16, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2774), 1, - anon_sym_RPAREN, - STATE(2283), 1, - aux_sym_list_repeat1, + STATE(44), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2774), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100767,44 +101668,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36048] = 16, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + [37041] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2267), 6, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2461), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2265), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_RPAREN, - STATE(2584), 1, - aux_sym_list_repeat1, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37077] = 18, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2629), 1, + anon_sym_contains, + ACTIONS(2633), 1, + anon_sym_matchgroup, + ACTIONS(2637), 1, + anon_sym_skip, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(858), 1, + sym__syn_region_skip, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(943), 1, + aux_sym__syn_region_repeat1, + STATE(2033), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2625), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [37143] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2283), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2281), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100812,18 +101780,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36109] = 3, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37179] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2265), 5, + ACTIONS(2271), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2263), 21, - anon_sym_QMARK, + ACTIONS(2269), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100832,6 +101802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100844,18 +101815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [36144] = 3, + [37215] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1834), 5, + ACTIONS(2279), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1832), 21, - anon_sym_QMARK, + ACTIONS(2277), 21, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, @@ -100864,6 +101835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100876,41 +101848,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [36179] = 14, - ACTIONS(2613), 1, + [37251] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1948), 6, anon_sym_QMARK, - ACTIONS(2615), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(1946), 21, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - ACTIONS(2635), 1, anon_sym_DASH_GT, + [37287] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2752), 2, + ACTIONS(2271), 6, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2269), 20, sym__newline_or_pipe, sym_comment, - ACTIONS(2617), 3, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, + anon_sym_PLUS, anon_sym_STAR2, - ACTIONS(2623), 3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37322] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1800), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(1798), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100918,25 +101943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36235] = 3, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37357] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2221), 5, + ACTIONS(2131), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2219), 20, + ACTIONS(2129), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -100949,42 +101977,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [36269] = 15, - ACTIONS(2453), 1, + [37392] = 12, + ACTIONS(1988), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2656), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(1986), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2672), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [37445] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2778), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, anon_sym_COLON, - ACTIONS(2780), 1, - anon_sym_RBRACK, + ACTIONS(2778), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -100992,25 +102063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36327] = 3, + [37506] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 5, + ACTIONS(1792), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2123), 20, + ACTIONS(1790), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101023,41 +102095,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [36361] = 14, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [37541] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2780), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2651), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -101065,83 +102140,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36417] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(669), 1, - sym__syn_region_end, - STATE(726), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(1965), 1, - aux_sym__syn_region_repeat2, + [37602] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [36477] = 12, - ACTIONS(2615), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2263), 6, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2627), 1, - anon_sym_AMP_AMP, - ACTIONS(2629), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2633), 1, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2261), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37637] = 7, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, + ACTIONS(2782), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2617), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(1775), 5, + anon_sym_QMARK, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1972), 4, + ACTIONS(1773), 17, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(2631), 7, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -101149,25 +102208,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36529] = 3, + [37680] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1327), 5, + ACTIONS(2267), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1321), 20, + ACTIONS(2265), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101180,262 +102240,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [36563] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2077), 1, - aux_sym__syn_region_repeat2, + [37715] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [36623] = 16, + ACTIONS(1767), 6, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(1765), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37750] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(724), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2081), 1, - aux_sym__syn_region_repeat2, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2785), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [36683] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(669), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2015), 1, - aux_sym__syn_region_repeat2, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [37811] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [36743] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2089), 1, - aux_sym__syn_region_repeat2, + ACTIONS(2772), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2359), 6, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2361), 18, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37848] = 15, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, + anon_sym_LBRACK, + ACTIONS(2676), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [36803] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2093), 1, - aux_sym__syn_region_repeat2, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2740), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2672), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [37907] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [36863] = 15, - ACTIONS(2453), 1, + ACTIONS(2772), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2359), 6, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2361), 18, anon_sym_LPAREN, - ACTIONS(2457), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [37944] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2275), 6, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2461), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2463), 1, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2273), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + [37979] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2782), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, anon_sym_COLON, - ACTIONS(2784), 1, + ACTIONS(2787), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -101443,26 +102504,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [36921] = 4, + [38040] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2686), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2333), 5, + ACTIONS(2279), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(2277), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101475,42 +102536,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [36957] = 15, - ACTIONS(2453), 1, + [38075] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2782), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2789), 1, anon_sym_COLON, - ACTIONS(2786), 1, - anon_sym_RBRACE, + ACTIONS(2791), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -101518,42 +102581,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [37015] = 15, - ACTIONS(2453), 1, + [38136] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2782), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2793), 1, anon_sym_COLON, - ACTIONS(2788), 1, - anon_sym_RBRACE, + ACTIONS(2795), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -101561,26 +102626,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [37073] = 4, + [38197] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2754), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2333), 5, + ACTIONS(1948), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(1946), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101593,111 +102658,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37109] = 14, - ACTIONS(2792), 1, - anon_sym_cchar, - ACTIONS(2798), 1, - anon_sym_contains, - ACTIONS(2802), 1, - anon_sym_matchgroup, - STATE(794), 1, - aux_sym__syn_region_repeat1, - STATE(1037), 1, - sym__syn_arguments_region, - STATE(1038), 1, - sym__syn_arguments_match, - STATE(1040), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2790), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2794), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2804), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2732), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_end, - ACTIONS(2796), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2800), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37165] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(734), 1, - sym__syn_region_end, - STATE(797), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2109), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37225] = 3, + [38232] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 5, + ACTIONS(1559), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2151), 20, + ACTIONS(1557), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101710,73 +102690,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37259] = 19, - ACTIONS(2808), 1, - anon_sym_NONE, - ACTIONS(2810), 1, - anon_sym_term, - ACTIONS(2812), 1, - anon_sym_cterm, - ACTIONS(2818), 1, - anon_sym_gui, - ACTIONS(2822), 1, - anon_sym_font, - ACTIONS(2824), 1, - anon_sym_blend, - STATE(1178), 1, - sym__hl_key_font, - STATE(1181), 1, - sym__hl_key_gui_color, - STATE(1184), 1, - sym__hl_key_gui, - STATE(1185), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1186), 1, - sym__hl_key_start_stop, - STATE(1187), 1, - sym__hl_key_cterm, - STATE(1220), 1, - sym__hl_key_blend, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2814), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2816), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(878), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2806), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2820), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [37325] = 4, + [38267] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2686), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2333), 5, + ACTIONS(2159), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, + ACTIONS(2157), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101789,113 +102722,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37361] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(669), 1, - sym__syn_region_end, - STATE(743), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2038), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37421] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(669), 1, - sym__syn_region_end, - STATE(744), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2016), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37481] = 3, + [38302] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1834), 5, + ACTIONS(1956), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1832), 20, + ACTIONS(1954), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101908,25 +102754,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37515] = 3, + [38337] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2181), 5, + ACTIONS(1964), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2179), 20, + ACTIONS(1962), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -101939,113 +102786,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37549] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(669), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2025), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37609] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(669), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2027), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37669] = 3, + [38372] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2269), 5, + ACTIONS(1968), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2267), 20, + ACTIONS(1966), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102058,58 +102818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37703] = 5, - ACTIONS(2826), 1, - anon_sym_COMMA, - STATE(746), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2831), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2829), 20, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [37741] = 3, + [38407] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2265), 5, + ACTIONS(1976), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2263), 20, + ACTIONS(1974), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102122,25 +102850,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37775] = 3, + [38442] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1747), 5, + ACTIONS(1980), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1745), 20, + ACTIONS(1978), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102153,25 +102882,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37809] = 3, + [38477] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2185), 5, + ACTIONS(2283), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2183), 20, + ACTIONS(2281), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102184,28 +102914,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37843] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2193), 5, + [38512] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2191), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2797), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -102213,27 +102959,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [38573] = 7, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2674), 1, anon_sym_LBRACK, + ACTIONS(2676), 1, anon_sym_DASH_GT, - [37877] = 3, + ACTIONS(2799), 1, + anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2197), 5, - anon_sym_DOT2, + ACTIONS(1988), 5, + anon_sym_QMARK, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2195), 20, + ACTIONS(1986), 17, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102244,27 +102995,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [37911] = 3, + [38616] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2261), 5, + ACTIONS(2251), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2259), 20, + ACTIONS(2249), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102277,31 +103027,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [37945] = 7, - ACTIONS(2615), 1, + [38651] = 8, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2633), 1, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2833), 1, - anon_sym_DOT2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1759), 4, + ACTIONS(2656), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 5, + anon_sym_QMARK, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1757), 17, + ACTIONS(1986), 14, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102312,72 +103064,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [37987] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(669), 1, - sym__syn_region_end, - STATE(758), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2029), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [38047] = 3, + [38696] = 10, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, + anon_sym_LBRACK, + ACTIONS(2676), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2257), 5, - anon_sym_DOT2, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2656), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(1988), 4, + anon_sym_QMARK, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2255), 20, + ACTIONS(1986), 12, sym__newline_or_pipe, sym_comment, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [38745] = 14, + ACTIONS(2652), 1, anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2666), 1, anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, anon_sym_AMP_AMP, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, + anon_sym_LBRACK, + ACTIONS(2676), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2660), 2, + anon_sym_PLUS, anon_sym_DOT_DOT, + ACTIONS(2021), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK_QMARK, + ACTIONS(2656), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -102385,27 +103146,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [38081] = 3, + [38802] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1778), 5, + ACTIONS(2259), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1776), 20, + ACTIONS(2257), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102418,25 +103178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38115] = 3, + [38837] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1786), 5, + ACTIONS(2255), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1784), 20, + ACTIONS(2253), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102449,85 +103210,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38149] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2592), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(669), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2036), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [38209] = 14, - ACTIONS(2613), 1, + [38872] = 13, + ACTIONS(1988), 1, anon_sym_QMARK, - ACTIONS(2615), 1, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2625), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2668), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2719), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(1986), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -102535,42 +103252,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [38265] = 15, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + [38927] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2235), 6, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2461), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2463), 1, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2233), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + [38962] = 15, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2668), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2836), 1, - anon_sym_COLON, - ACTIONS(2838), 1, - anon_sym_RBRACK, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, + anon_sym_LBRACK, + ACTIONS(2676), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2720), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -102578,25 +103328,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [38323] = 3, + [39021] = 14, + ACTIONS(2807), 1, + anon_sym_cchar, + ACTIONS(2816), 1, + anon_sym_contains, + ACTIONS(2822), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2804), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2810), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2825), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2802), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_end, + ACTIONS(2813), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2819), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [39078] = 14, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2828), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_end, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [39135] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2201), 5, + ACTIONS(2231), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2199), 20, + ACTIONS(2229), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102609,25 +103446,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38357] = 3, + [39170] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2205), 5, + ACTIONS(2227), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2203), 20, + ACTIONS(2225), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102640,25 +103478,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38391] = 3, + [39205] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2213), 5, + ACTIONS(2215), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2211), 20, + ACTIONS(2213), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102671,85 +103510,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38425] = 15, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2782), 1, - anon_sym_COLON, - ACTIONS(2840), 1, - anon_sym_RBRACE, + [39240] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2207), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [38483] = 15, - ACTIONS(2453), 1, + ACTIONS(2205), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2842), 1, - anon_sym_COLON, - ACTIONS(2844), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, anon_sym_PERCENT, anon_sym_SLASH, + anon_sym_PLUS, anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -102757,40 +103540,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [38541] = 13, - ACTIONS(2615), 1, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [39275] = 14, + ACTIONS(2203), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2666), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2668), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2227), 3, + ACTIONS(2201), 3, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, - ACTIONS(2617), 3, + anon_sym_QMARK_QMARK, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -102798,25 +103585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [38595] = 3, + [39332] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2253), 5, + ACTIONS(2199), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2251), 20, + ACTIONS(2197), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102829,25 +103617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38629] = 3, + [39367] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2129), 5, + ACTIONS(2195), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2127), 20, + ACTIONS(2193), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102860,25 +103649,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38663] = 3, + [39402] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2133), 5, + ACTIONS(2187), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2131), 20, + ACTIONS(2185), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102891,25 +103681,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38697] = 3, + [39437] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2137), 5, + ACTIONS(2183), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2135), 20, + ACTIONS(2181), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -102922,84 +103713,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38731] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, + [39472] = 14, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(763), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2846), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [38787] = 15, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2836), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_end, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [39529] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1349), 6, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2461), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2463), 1, + anon_sym_GT2, + anon_sym_is, + ACTIONS(1343), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + [39564] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2782), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2838), 1, anon_sym_COLON, - ACTIONS(2848), 1, - anon_sym_RBRACE, + ACTIONS(2840), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103007,83 +103833,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [38845] = 14, - ACTIONS(2853), 1, - anon_sym_cchar, - ACTIONS(2862), 1, - anon_sym_contains, - ACTIONS(2868), 1, - anon_sym_matchgroup, - STATE(773), 1, - aux_sym__syn_region_repeat1, - STATE(1037), 1, - sym__syn_arguments_region, - STATE(1038), 1, - sym__syn_arguments_match, - STATE(1040), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2850), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2856), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2871), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2693), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_end, - ACTIONS(2859), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2865), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [38901] = 14, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [39625] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2842), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2768), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103091,25 +103878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [38957] = 3, + [39686] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1966), 5, + ACTIONS(2247), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1964), 20, + ACTIONS(2245), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103122,25 +103910,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [38991] = 3, + [39721] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1962), 5, + ACTIONS(2175), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1960), 20, + ACTIONS(2173), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103153,41 +103942,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39025] = 14, - ACTIONS(2453), 1, + [39756] = 10, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2874), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2455), 3, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2163), 4, + anon_sym_QMARK, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2161), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103195,25 +103981,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [39081] = 3, + [39805] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1958), 5, + ACTIONS(2155), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1956), 20, + ACTIONS(2153), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103226,159 +104013,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39115] = 3, - ACTIONS(2443), 1, - anon_sym_contained, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2441), 24, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [39149] = 15, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2782), 1, - anon_sym_COLON, - ACTIONS(2876), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [39207] = 15, - ACTIONS(2453), 1, + [39840] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2878), 1, - anon_sym_COLON, - ACTIONS(2880), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [39265] = 15, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2782), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, anon_sym_COLON, - ACTIONS(2882), 1, + ACTIONS(2844), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103386,69 +104058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [39323] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(727), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2085), 1, - aux_sym__syn_region_repeat2, + [39901] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [39383] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2241), 5, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2239), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(2361), 18, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103461,25 +104091,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39417] = 3, + [39938] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2165), 5, + ACTIONS(2734), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2163), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(2361), 18, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103492,37 +104124,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39451] = 10, - ACTIONS(2615), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_DOT2, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, + [39975] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2145), 3, + ACTIONS(2139), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2617), 3, + ACTIONS(2137), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, + anon_sym_PLUS, anon_sym_STAR2, - ACTIONS(2143), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DOT_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103530,25 +104154,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [39499] = 3, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [40010] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2149), 5, + ACTIONS(2127), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2147), 20, + ACTIONS(2125), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103561,69 +104188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39533] = 16, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(728), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2084), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [39593] = 3, + [40045] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2113), 5, + ACTIONS(2123), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2111), 20, + ACTIONS(2121), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103636,25 +104220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39627] = 3, + [40080] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2085), 5, + ACTIONS(2115), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2083), 20, + ACTIONS(2113), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103667,25 +104252,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39661] = 3, + [40115] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2081), 5, + ACTIONS(2087), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2079), 20, + ACTIONS(2085), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -103698,28 +104284,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [39695] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2049), 5, + [40150] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2047), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2846), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103727,30 +104329,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [40211] = 16, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [39729] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2045), 5, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2043), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2793), 1, + anon_sym_COLON, + ACTIONS(2848), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103758,73 +104374,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [40272] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [39763] = 14, - ACTIONS(2792), 1, - anon_sym_cchar, - ACTIONS(2798), 1, - anon_sym_contains, - ACTIONS(2802), 1, - anon_sym_matchgroup, - STATE(773), 1, - aux_sym__syn_region_repeat1, - STATE(1037), 1, - sym__syn_arguments_region, - STATE(1038), 1, - sym__syn_arguments_match, - STATE(1040), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2790), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2794), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2804), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2750), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_end, - ACTIONS(2796), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2800), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [39819] = 4, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2721), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2333), 5, + ACTIONS(2486), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2331), 18, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2850), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103832,31 +104418,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [40331] = 15, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, + anon_sym_DOT2, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, + anon_sym_DASH, + ACTIONS(2674), 1, anon_sym_LBRACK, + ACTIONS(2676), 1, anon_sym_DASH_GT, - [39855] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2721), 2, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2756), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2333), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2331), 18, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103864,105 +104462,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [40390] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [39891] = 16, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2597), 1, - anon_sym_end, - ACTIONS(2736), 1, - anon_sym_contains, - ACTIONS(2738), 1, - anon_sym_matchgroup, - STATE(657), 1, - aux_sym__syn_region_repeat1, - STATE(734), 1, - sym__syn_region_end, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(2083), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2734), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [39951] = 3, + anon_sym_QMARK_QMARK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1950), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1948), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2852), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [39985] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2249), 5, - anon_sym_DOT2, + ACTIONS(2506), 3, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2247), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -103970,39 +104506,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [40019] = 10, - ACTIONS(2615), 1, + [40449] = 15, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2629), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(1974), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2617), 3, + ACTIONS(2718), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(1972), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2662), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104010,42 +104550,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40067] = 15, - ACTIONS(2453), 1, + [40508] = 15, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2842), 1, - anon_sym_COLON, - ACTIONS(2884), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2758), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104053,73 +104594,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40125] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1810), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1808), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + [40567] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [40159] = 15, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2886), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2854), 1, anon_sym_COLON, - ACTIONS(2888), 1, + ACTIONS(2856), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104127,41 +104639,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40217] = 14, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [40628] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2728), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2858), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104169,32 +104683,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40273] = 8, - ACTIONS(2615), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_DOT2, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, + [40687] = 4, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2617), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(1974), 4, + ACTIONS(2768), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2359), 6, + anon_sym_QMARK, + anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(1972), 14, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(2361), 18, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -104205,42 +104714,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40317] = 15, - ACTIONS(2453), 1, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [40724] = 15, + ACTIONS(2652), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_AMP_AMP, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(2782), 1, - anon_sym_COLON, - ACTIONS(2890), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2770), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104248,41 +104760,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40375] = 14, - ACTIONS(2453), 1, + [40783] = 16, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2860), 1, + anon_sym_COLON, + ACTIONS(2862), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2892), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104290,41 +104805,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40431] = 14, - ACTIONS(2613), 1, + [40844] = 15, + ACTIONS(2652), 1, anon_sym_QMARK, - ACTIONS(2615), 1, + ACTIONS(2654), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2658), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2664), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2666), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2668), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, + ACTIONS(2670), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2660), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2770), 2, + ACTIONS(2694), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2617), 3, + ACTIONS(2656), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2662), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2631), 7, + ACTIONS(2672), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104332,25 +104849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40487] = 3, + [40903] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2037), 5, + ACTIONS(2083), 6, + anon_sym_QMARK, anon_sym_DOT2, anon_sym_LT2, anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2035), 20, + ACTIONS(2081), 20, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -104363,38 +104881,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_isnot, anon_sym_LBRACK, anon_sym_DASH_GT, - [40521] = 11, - ACTIONS(2615), 1, + [40938] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_DOT2, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2864), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2617), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(1972), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2631), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104402,70 +104924,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40571] = 14, - ACTIONS(2613), 1, - anon_sym_QMARK, - ACTIONS(2615), 1, + [40996] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(773), 1, + sym__syn_region_end, + STATE(895), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(1961), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [41056] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(773), 1, + sym__syn_region_end, + STATE(854), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2031), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [41116] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2625), 1, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2627), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2629), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(2635), 1, - anon_sym_DASH_GT, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2866), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2621), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2730), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2617), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2623), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2631), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [40627] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2245), 5, - anon_sym_DOT2, + ACTIONS(2506), 3, anon_sym_LT2, - anon_sym_DASH, anon_sym_GT2, anon_sym_is, - ACTIONS(2243), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104473,65 +105055,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - anon_sym_LBRACK, - anon_sym_DASH_GT, - [40661] = 7, - ACTIONS(2615), 1, + [41174] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2633), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2635), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2894), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1974), 4, - anon_sym_LT2, + ACTIONS(2490), 1, anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1972), 17, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [40703] = 3, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2868), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1970), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(1968), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104539,42 +105098,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, + [41232] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [40737] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2897), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2870), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104582,72 +105141,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40792] = 5, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(746), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2903), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2901), 20, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [40829] = 14, - ACTIONS(2453), 1, + [41290] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2905), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2872), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104655,40 +105184,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40884] = 14, - ACTIONS(2453), 1, + [41348] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2907), 1, - anon_sym_RPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2874), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104696,40 +105227,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40939] = 14, - ACTIONS(2453), 1, + [41406] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2909), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2776), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104737,154 +105270,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [40994] = 3, - ACTIONS(2443), 1, - anon_sym_contained, + [41464] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2071), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2441), 23, - sym__newline_or_pipe, - sym_comment, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [41027] = 15, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2911), 1, - anon_sym_start, - ACTIONS(2915), 1, - anon_sym_contains, - ACTIONS(2917), 1, - anon_sym_matchgroup, - STATE(614), 1, - sym__syn_region_start, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(939), 1, - aux_sym__syn_region_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, + ACTIONS(2621), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2588), 2, + ACTIONS(2635), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2913), 2, + ACTIONS(2830), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2580), 4, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2584), 5, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [41084] = 15, - ACTIONS(2576), 1, + [41524] = 5, + ACTIONS(2876), 1, + anon_sym_LPAREN, + STATE(1964), 1, + sym_parameters, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2355), 6, + anon_sym_QMARK, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2357), 17, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + anon_sym_LBRACK, + anon_sym_DASH_GT, + [41562] = 14, + ACTIONS(2880), 1, anon_sym_cchar, - ACTIONS(2911), 1, - anon_sym_start, - ACTIONS(2915), 1, + ACTIONS(2886), 1, anon_sym_contains, - ACTIONS(2917), 1, + ACTIONS(2890), 1, anon_sym_matchgroup, - STATE(629), 1, - sym__syn_region_start, - STATE(832), 1, + STATE(855), 1, + aux_sym__syn_region_repeat1, + STATE(1035), 1, sym__syn_arguments_keyword, - STATE(871), 1, + STATE(1039), 1, sym__syn_arguments_match, - STATE(872), 1, + STATE(1040), 1, sym__syn_arguments_region, - STATE(873), 1, - aux_sym__syn_region_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2574), 2, + ACTIONS(2878), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2913), 2, + ACTIONS(2882), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2580), 4, + ACTIONS(2892), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2828), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_end, + ACTIONS(2884), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2584), 5, + ACTIONS(2888), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [41141] = 14, - ACTIONS(2453), 1, + [41618] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2919), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2894), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104892,72 +105432,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41196] = 5, - ACTIONS(2921), 1, + [41676] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - STATE(1993), 1, - sym_parameters, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2333), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2331), 17, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [41233] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2923), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2896), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -104965,40 +105475,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41288] = 14, - ACTIONS(2453), 1, + [41734] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2925), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2898), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105006,40 +105518,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41343] = 14, - ACTIONS(2453), 1, + [41792] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2900), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105047,40 +105561,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41398] = 14, - ACTIONS(2453), 1, + [41850] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(874), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2068), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [41910] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2929), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2902), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105088,40 +105648,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41453] = 14, - ACTIONS(2453), 1, + [41968] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(883), 1, + sym__syn_region_end, + STATE(892), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2064), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [42028] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2931), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2904), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105129,40 +105735,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41508] = 14, - ACTIONS(2453), 1, + [42086] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2933), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2906), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105170,40 +105778,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41563] = 14, - ACTIONS(2453), 1, + [42144] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2935), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2908), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105211,19 +105821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41618] = 3, + [42202] = 3, + ACTIONS(2521), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2939), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2937), 21, + ACTIONS(2519), 24, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_start, + anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -105237,44 +105845,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [41651] = 14, - ACTIONS(2453), 1, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [42236] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2784), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2910), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105282,40 +105895,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41706] = 14, - ACTIONS(2453), 1, + [42294] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2782), 1, - anon_sym_COLON, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2912), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105323,140 +105938,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41761] = 5, - STATE(1091), 1, - sym_pattern_multi, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2945), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(2941), 13, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [41798] = 11, - ACTIONS(2949), 1, - anon_sym_BSLASH, - ACTIONS(2953), 1, - anon_sym_BSLASH_AMP, - ACTIONS(2955), 1, - anon_sym_LBRACK, - ACTIONS(2957), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1303), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(835), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(958), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(2959), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2951), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - [41847] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2963), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2961), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [41880] = 14, - ACTIONS(2453), 1, + [42352] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2965), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2914), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105464,86 +105981,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [41935] = 19, - ACTIONS(2967), 1, - anon_sym_NONE, - ACTIONS(2969), 1, - anon_sym_term, - ACTIONS(2971), 1, - anon_sym_cterm, - ACTIONS(2977), 1, - anon_sym_gui, - ACTIONS(2981), 1, - anon_sym_font, - ACTIONS(2983), 1, - anon_sym_blend, - STATE(1261), 1, - sym__hl_key_blend, - STATE(1266), 1, - sym__hl_key_font, - STATE(1271), 1, - sym__hl_key_gui_color, - STATE(1298), 1, - sym__hl_key_gui, - STATE(1307), 1, - sym__hl_key_cterm, - STATE(1313), 1, - sym__hl_key_start_stop, - STATE(1315), 1, - sym__hl_key_ctermfg_ctermbg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2806), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2973), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2975), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(935), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2979), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [42000] = 14, - ACTIONS(2453), 1, + [42410] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2985), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2916), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105551,40 +106024,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42055] = 14, - ACTIONS(2453), 1, + [42468] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2987), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2918), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105592,85 +106067,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42110] = 18, - ACTIONS(2991), 1, - anon_sym_term, - ACTIONS(2994), 1, - anon_sym_cterm, - ACTIONS(3003), 1, - anon_sym_gui, - ACTIONS(3009), 1, - anon_sym_font, - ACTIONS(3012), 1, - anon_sym_blend, - STATE(1178), 1, - sym__hl_key_font, - STATE(1181), 1, - sym__hl_key_gui_color, - STATE(1184), 1, - sym__hl_key_gui, - STATE(1185), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1186), 1, - sym__hl_key_start_stop, - STATE(1187), 1, - sym__hl_key_cterm, - STATE(1220), 1, - sym__hl_key_blend, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2997), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3000), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(842), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2989), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3006), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [42173] = 14, - ACTIONS(2453), 1, + [42526] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3015), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2920), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105678,119 +106110,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42228] = 18, - ACTIONS(2810), 1, - anon_sym_term, - ACTIONS(2812), 1, - anon_sym_cterm, - ACTIONS(2818), 1, - anon_sym_gui, - ACTIONS(2822), 1, - anon_sym_font, - ACTIONS(2824), 1, - anon_sym_blend, - STATE(1178), 1, - sym__hl_key_font, - STATE(1181), 1, - sym__hl_key_gui_color, - STATE(1184), 1, - sym__hl_key_gui, - STATE(1185), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1186), 1, - sym__hl_key_start_stop, - STATE(1187), 1, - sym__hl_key_cterm, - STATE(1220), 1, - sym__hl_key_blend, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2814), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2816), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(842), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2820), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - ACTIONS(3017), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [42291] = 7, - ACTIONS(3021), 1, - anon_sym_BSLASH, - ACTIONS(3026), 1, - anon_sym_LBRACK, - ACTIONS(3029), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(845), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3019), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [42332] = 14, - ACTIONS(2453), 1, + [42584] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3032), 1, - anon_sym_COLON, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2922), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105798,100 +106153,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42387] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3036), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3034), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [42420] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3040), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3038), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [42453] = 14, - ACTIONS(2453), 1, + [42642] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3042), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2924), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105899,40 +106196,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42508] = 14, - ACTIONS(2453), 1, + [42700] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3044), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2926), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105940,40 +106239,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42563] = 14, - ACTIONS(2453), 1, + [42758] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3046), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2928), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -105981,40 +106282,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42618] = 14, - ACTIONS(2453), 1, + [42816] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3048), 1, - anon_sym_COLON, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2930), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106022,40 +106325,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42673] = 14, - ACTIONS(2453), 1, + [42874] = 5, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + STATE(1964), 1, + sym_parameters, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2359), 6, + anon_sym_QMARK, anon_sym_DOT2, - ACTIONS(2461), 1, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2463), 1, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2361), 17, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, anon_sym_LBRACK, - ACTIONS(2465), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + [42912] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3050), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2932), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106063,40 +106401,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42728] = 14, - ACTIONS(2453), 1, + [42970] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3052), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2934), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106104,110 +106444,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42783] = 5, - STATE(1085), 1, - sym_pattern_multi, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3054), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(2941), 13, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [42820] = 11, - ACTIONS(3056), 1, - anon_sym_BSLASH, - ACTIONS(3058), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3060), 1, - anon_sym_LBRACK, - ACTIONS(3062), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1270), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(855), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(975), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3064), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2951), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [42869] = 14, - ACTIONS(2453), 1, + [43028] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3066), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2936), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106215,40 +106487,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42924] = 14, - ACTIONS(2453), 1, + [43086] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3068), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2938), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106256,139 +106530,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [42979] = 7, - ACTIONS(3070), 1, - anon_sym_BSLASH, - ACTIONS(3073), 1, + [43144] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(3076), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(859), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [43020] = 5, - ACTIONS(3081), 1, - sym_hl_group, - STATE(847), 1, - sym_hl_groups, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3079), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3083), 19, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [43057] = 6, - ACTIONS(3085), 1, - anon_sym_LBRACE2, - ACTIONS(3088), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(997), 2, - anon_sym_EQ, - sym_command_name, - STATE(861), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(995), 18, - anon_sym_EQ_LT_LT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LPAREN2, + ACTIONS(2482), 1, anon_sym_DASH_GT, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [43096] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3091), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2940), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106396,40 +106573,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43151] = 14, - ACTIONS(2453), 1, + [43202] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3093), 1, - anon_sym_RPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2942), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106437,40 +106616,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43206] = 14, - ACTIONS(2453), 1, + [43260] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2840), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2944), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106478,40 +106659,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43261] = 14, - ACTIONS(2453), 1, + [43318] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3095), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2946), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106519,40 +106702,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43316] = 14, - ACTIONS(2453), 1, + [43376] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3097), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2948), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106560,40 +106745,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43371] = 14, - ACTIONS(2453), 1, + [43434] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3099), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2950), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106601,40 +106788,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43426] = 14, - ACTIONS(2453), 1, + [43492] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3101), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2952), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106642,70 +106831,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43481] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3105), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3103), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [43514] = 14, - ACTIONS(2453), 1, + [43550] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3107), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2954), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106713,206 +106874,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43569] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3111), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3109), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [43602] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3115), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3113), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [43635] = 15, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2911), 1, - anon_sym_start, - ACTIONS(2915), 1, - anon_sym_contains, - ACTIONS(2917), 1, - anon_sym_matchgroup, - STATE(623), 1, - sym__syn_region_start, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(939), 1, - aux_sym__syn_region_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2913), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [43692] = 7, - ACTIONS(3117), 1, - anon_sym_BSLASH, - ACTIONS(3120), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(874), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 12, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [43733] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3128), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3126), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [43766] = 14, - ACTIONS(2453), 1, + [43608] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3130), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2842), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106920,40 +106917,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43821] = 14, - ACTIONS(2453), 1, + [43666] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3132), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2956), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -106961,85 +106960,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43876] = 18, - ACTIONS(2810), 1, - anon_sym_term, - ACTIONS(2812), 1, - anon_sym_cterm, - ACTIONS(2818), 1, - anon_sym_gui, - ACTIONS(2822), 1, - anon_sym_font, - ACTIONS(2824), 1, - anon_sym_blend, - STATE(1178), 1, - sym__hl_key_font, - STATE(1181), 1, - sym__hl_key_gui_color, - STATE(1184), 1, - sym__hl_key_gui, - STATE(1185), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1186), 1, - sym__hl_key_start_stop, - STATE(1187), 1, - sym__hl_key_cterm, - STATE(1220), 1, - sym__hl_key_blend, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2814), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2816), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(842), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2820), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - ACTIONS(3134), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [43939] = 14, - ACTIONS(2453), 1, + [43724] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3136), 1, - anon_sym_COLON, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2958), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107047,40 +107003,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [43994] = 14, - ACTIONS(2453), 1, + [43782] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3138), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2960), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107088,115 +107046,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44049] = 7, - ACTIONS(3140), 1, - anon_sym_BSLASH, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3146), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(881), 1, - aux_sym__pattern_ordinary_atom, + [43840] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(773), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2030), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [43900] = 14, + ACTIONS(2965), 1, + anon_sym_cchar, + ACTIONS(2974), 1, + anon_sym_contains, + ACTIONS(2980), 1, + anon_sym_matchgroup, + STATE(855), 1, + aux_sym__syn_region_repeat1, + STATE(1035), 1, + sym__syn_arguments_keyword, + STATE(1039), 1, + sym__syn_arguments_match, + STATE(1040), 1, + sym__syn_arguments_region, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 8, + ACTIONS(2962), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2968), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2983), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2802), 3, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3019), 12, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [44090] = 14, - ACTIONS(2453), 1, + anon_sym_end, + ACTIONS(2971), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2977), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [43956] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3149), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [44145] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3151), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2787), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107204,40 +107175,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44200] = 14, - ACTIONS(2453), 1, + [44014] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2786), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2986), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107245,114 +107218,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44255] = 15, - ACTIONS(2693), 1, - anon_sym_end, - ACTIONS(2698), 1, + [44072] = 16, + ACTIONS(2623), 1, anon_sym_cchar, - ACTIONS(3156), 1, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, anon_sym_contains, - ACTIONS(3159), 1, + ACTIONS(2834), 1, anon_sym_matchgroup, - ACTIONS(3162), 1, - anon_sym_skip, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, + STATE(773), 1, + sym__syn_region_end, STATE(885), 1, aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2024), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2695), 2, + ACTIONS(2621), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2716), 2, + ACTIONS(2635), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3153), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2704), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2710), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [44312] = 5, - ACTIONS(3081), 1, - sym_hl_group, - STATE(848), 1, - sym_hl_groups, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3164), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3166), 19, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, + ACTIONS(2830), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [44349] = 14, - ACTIONS(2453), 1, + [44132] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3168), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2988), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107360,40 +107305,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44404] = 14, - ACTIONS(2453), 1, + [44190] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3170), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2990), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107401,40 +107348,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44459] = 14, - ACTIONS(2453), 1, + [44248] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3172), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2992), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107442,40 +107391,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44514] = 14, - ACTIONS(2453), 1, + [44306] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3174), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2994), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107483,82 +107434,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44569] = 15, - ACTIONS(2576), 1, - anon_sym_cchar, - ACTIONS(2911), 1, - anon_sym_start, - ACTIONS(2915), 1, - anon_sym_contains, - ACTIONS(2917), 1, - anon_sym_matchgroup, - STATE(626), 1, - sym__syn_region_start, - STATE(821), 1, - aux_sym__syn_region_repeat1, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2574), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2588), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2913), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2580), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2584), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [44626] = 14, - ACTIONS(2453), 1, + [44364] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3176), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2996), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107566,40 +107477,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44681] = 14, - ACTIONS(2453), 1, + [44422] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3178), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2778), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107607,70 +107520,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44736] = 3, + [44480] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2998), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3182), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3180), 21, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_start, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [44769] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3184), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107678,81 +107563,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44824] = 14, - ACTIONS(2453), 1, + [44538] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3186), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [44879] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3188), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3000), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107760,81 +107606,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [44934] = 14, - ACTIONS(2453), 1, + [44596] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3190), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [44989] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3192), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3002), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107842,46 +107649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45044] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3196), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3194), 21, + [44654] = 5, + ACTIONS(3004), 1, anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [45077] = 3, + STATE(868), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3200), 3, + ACTIONS(3009), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3198), 21, - anon_sym_COMMA, + ACTIONS(3007), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -107902,81 +107682,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [45110] = 14, - ACTIONS(2453), 1, + [44692] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [45165] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3204), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3011), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -107984,40 +107725,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45220] = 14, - ACTIONS(2453), 1, + [44750] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3206), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2846), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108025,40 +107768,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45275] = 14, - ACTIONS(2453), 1, + [44808] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3208), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3013), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108066,40 +107811,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45330] = 14, - ACTIONS(2453), 1, + [44866] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3210), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3015), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108107,142 +107854,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45385] = 11, - ACTIONS(3212), 1, - anon_sym_BSLASH, - ACTIONS(3214), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3216), 1, - anon_sym_LBRACK, - ACTIONS(3218), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1244), 1, - aux_sym__pattern_branch_repeat1, + [44924] = 19, + ACTIONS(3019), 1, + anon_sym_NONE, + ACTIONS(3021), 1, + anon_sym_term, + ACTIONS(3023), 1, + anon_sym_cterm, + ACTIONS(3029), 1, + anon_sym_gui, + ACTIONS(3033), 1, + anon_sym_font, + ACTIONS(3035), 1, + anon_sym_blend, + STATE(1212), 1, + sym__hl_key_blend, + STATE(1213), 1, + sym__hl_key_font, + STATE(1214), 1, + sym__hl_key_gui_color, + STATE(1216), 1, + sym__hl_key_gui, + STATE(1227), 1, + sym__hl_key_cterm, + STATE(1231), 1, + sym__hl_key_start_stop, + STATE(1236), 1, + sym__hl_key_ctermfg_ctermbg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, + ACTIONS(3025), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3027), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, STATE(908), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(966), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3220), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - ACTIONS(2951), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [45434] = 5, - STATE(1081), 1, - sym_pattern_multi, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3222), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(2941), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3017), 3, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [45471] = 5, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(816), 1, - aux_sym__syn_match_repeat2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3031), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [44990] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2082), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3226), 2, + ACTIONS(2621), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3224), 20, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_cchar, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [45508] = 14, - ACTIONS(2453), 1, + [45050] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3228), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3037), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108250,40 +107988,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45563] = 14, - ACTIONS(2453), 1, + [45108] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2788), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3039), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108291,40 +108031,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45618] = 14, - ACTIONS(2453), 1, + [45166] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3230), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3041), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108332,40 +108074,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45673] = 14, - ACTIONS(2453), 1, + [45224] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3232), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3043), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108373,40 +108117,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45728] = 14, - ACTIONS(2453), 1, + [45282] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3045), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108414,81 +108160,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45783] = 14, - ACTIONS(2453), 1, + [45340] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [45838] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3238), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3047), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108496,40 +108203,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45893] = 14, - ACTIONS(2453), 1, + [45398] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3240), 1, - anon_sym_RPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3049), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108537,72 +108246,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [45948] = 5, - ACTIONS(2921), 1, + [45456] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - STATE(1993), 1, - sym_parameters, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2329), 5, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2327), 17, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_DASH_GT, - [45985] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2848), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3051), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108610,81 +108289,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46040] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3242), 1, - anon_sym_RBRACE, + [45514] = 14, + ACTIONS(2880), 1, + anon_sym_cchar, + ACTIONS(2886), 1, + anon_sym_contains, + ACTIONS(2890), 1, + anon_sym_matchgroup, + STATE(814), 1, + aux_sym__syn_region_repeat1, + STATE(1035), 1, + sym__syn_arguments_keyword, + STATE(1039), 1, + sym__syn_arguments_match, + STATE(1040), 1, + sym__syn_arguments_region, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [46095] = 14, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2878), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2882), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2892), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2836), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_end, + ACTIONS(2884), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2888), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [45570] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(812), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2127), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [45630] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(773), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2004), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [45690] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3244), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3053), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108692,40 +108462,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46150] = 14, - ACTIONS(2453), 1, + [45748] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3246), 1, - anon_sym_RPAREN, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108733,40 +108505,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46205] = 14, - ACTIONS(2453), 1, + [45806] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(773), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(1994), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [45866] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3248), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3057), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108774,40 +108592,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46260] = 14, - ACTIONS(2453), 1, + [45924] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3250), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3059), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108815,40 +108635,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46315] = 14, - ACTIONS(2453), 1, + [45982] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3252), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3061), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108856,40 +108678,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46370] = 14, - ACTIONS(2453), 1, + [46040] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2089), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [46100] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3254), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2844), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108897,40 +108765,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46425] = 14, - ACTIONS(2453), 1, + [46158] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(883), 1, + sym__syn_region_end, + STATE(900), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2090), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [46218] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(773), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2000), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [46278] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3256), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3063), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108938,40 +108896,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46480] = 14, - ACTIONS(2453), 1, + [46336] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2876), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3065), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -108979,40 +108939,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46535] = 14, - ACTIONS(2453), 1, + [46394] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3258), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3067), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -109020,104 +108982,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46590] = 5, - ACTIONS(3081), 1, - sym_hl_group, - STATE(894), 1, - sym_hl_groups, + [46452] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2639), 1, + anon_sym_end, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(773), 1, + sym__syn_region_end, + STATE(888), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(1999), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3260), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3262), 19, + ACTIONS(2621), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, + [46512] = 16, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(2641), 1, anon_sym_end, - [46627] = 5, - STATE(1079), 1, - sym_pattern_multi, + ACTIONS(2832), 1, + anon_sym_contains, + ACTIONS(2834), 1, + anon_sym_matchgroup, + STATE(762), 1, + aux_sym__syn_region_repeat1, + STATE(883), 1, + sym__syn_region_end, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(2099), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3264), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(2941), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [46664] = 14, - ACTIONS(2453), 1, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2830), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [46572] = 15, + ACTIONS(2475), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_DOT2, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2463), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2482), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(3266), 1, - anon_sym_RBRACE, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3069), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -109125,164 +109113,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46719] = 11, - ACTIONS(3268), 1, - anon_sym_BSLASH, - ACTIONS(3270), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3272), 1, + [46630] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(3274), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1286), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(931), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(962), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3276), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - ACTIONS(2951), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - [46768] = 18, - ACTIONS(2969), 1, - anon_sym_term, - ACTIONS(2971), 1, - anon_sym_cterm, - ACTIONS(2977), 1, - anon_sym_gui, - ACTIONS(2981), 1, - anon_sym_font, - ACTIONS(2983), 1, - anon_sym_blend, - STATE(1261), 1, - sym__hl_key_blend, - STATE(1266), 1, - sym__hl_key_font, - STATE(1271), 1, - sym__hl_key_gui_color, - STATE(1298), 1, - sym__hl_key_gui, - STATE(1307), 1, - sym__hl_key_cterm, - STATE(1313), 1, - sym__hl_key_start_stop, - STATE(1315), 1, - sym__hl_key_ctermfg_ctermbg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2973), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2975), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - ACTIONS(3017), 2, - sym__newline_or_pipe, - sym_comment, - STATE(960), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2979), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [46830] = 18, - ACTIONS(2969), 1, - anon_sym_term, - ACTIONS(2971), 1, - anon_sym_cterm, - ACTIONS(2977), 1, - anon_sym_gui, - ACTIONS(2981), 1, - anon_sym_font, - ACTIONS(2983), 1, - anon_sym_blend, - STATE(1261), 1, - sym__hl_key_blend, - STATE(1266), 1, - sym__hl_key_font, - STATE(1271), 1, - sym__hl_key_gui_color, - STATE(1298), 1, - sym__hl_key_gui, - STATE(1307), 1, - sym__hl_key_cterm, - STATE(1313), 1, - sym__hl_key_start_stop, - STATE(1315), 1, - sym__hl_key_ctermfg_ctermbg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2973), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2975), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - ACTIONS(3134), 2, - sym__newline_or_pipe, - sym_comment, - STATE(960), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2979), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [46892] = 13, - ACTIONS(2457), 1, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2641), 1, - anon_sym_LPAREN, - ACTIONS(2663), 1, - anon_sym_DASH_GT, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3071), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -109290,20 +109156,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [46944] = 5, - ACTIONS(3278), 1, - anon_sym_COMMA, - STATE(944), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2550), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2548), 19, - sym__newline_or_pipe, - sym_comment, + [46688] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3073), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [46746] = 15, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2780), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [46804] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3077), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3075), 21, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -109321,90 +109272,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [46980] = 13, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, + [46837] = 19, + ACTIONS(3079), 1, + anon_sym_NONE, + ACTIONS(3081), 1, + anon_sym_term, + ACTIONS(3083), 1, + anon_sym_cterm, + ACTIONS(3089), 1, + anon_sym_gui, + ACTIONS(3093), 1, + anon_sym_font, + ACTIONS(3095), 1, + anon_sym_blend, + STATE(1241), 1, + sym__hl_key_gui, + STATE(1267), 1, + sym__hl_key_blend, + STATE(1272), 1, + sym__hl_key_font, + STATE(1273), 1, + sym__hl_key_gui_color, + STATE(1288), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1289), 1, + sym__hl_key_start_stop, + STATE(1293), 1, + sym__hl_key_cterm, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3017), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3085), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3087), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(969), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3091), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [46902] = 3, + ACTIONS(2521), 1, anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - ACTIONS(3280), 1, - anon_sym_COMMA, - STATE(951), 1, - aux_sym__syn_match_repeat2, - STATE(1048), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, + ACTIONS(2519), 23, + sym__newline_or_pipe, + sym_comment, + anon_sym_conceal, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3282), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2487), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [47032] = 14, - ACTIONS(2693), 1, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [46935] = 18, + ACTIONS(3021), 1, + anon_sym_term, + ACTIONS(3023), 1, + anon_sym_cterm, + ACTIONS(3029), 1, + anon_sym_gui, + ACTIONS(3033), 1, + anon_sym_font, + ACTIONS(3035), 1, + anon_sym_blend, + STATE(1212), 1, + sym__hl_key_blend, + STATE(1213), 1, + sym__hl_key_font, + STATE(1214), 1, + sym__hl_key_gui_color, + STATE(1216), 1, + sym__hl_key_gui, + STATE(1227), 1, + sym__hl_key_cterm, + STATE(1231), 1, + sym__hl_key_start_stop, + STATE(1236), 1, + sym__hl_key_ctermfg_ctermbg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3025), 2, anon_sym_start, - ACTIONS(2698), 1, - anon_sym_cchar, - ACTIONS(3287), 1, - anon_sym_contains, - ACTIONS(3290), 1, - anon_sym_matchgroup, - STATE(832), 1, - sym__syn_arguments_keyword, - STATE(871), 1, - sym__syn_arguments_match, - STATE(872), 1, - sym__syn_arguments_region, - STATE(939), 1, - aux_sym__syn_region_repeat1, + anon_sym_stop, + ACTIONS(3027), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(937), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3031), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + ACTIONS(3097), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [46998] = 6, + ACTIONS(3099), 1, + anon_sym_LBRACE2, + ACTIONS(3102), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(921), 2, + anon_sym_EQ, + sym_command_name, + STATE(909), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(919), 18, + anon_sym_EQ_LT_LT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_LPAREN2, + anon_sym_DASH_GT, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [47037] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2695), 2, + ACTIONS(3107), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2716), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3284), 2, + anon_sym_skip, + ACTIONS(3105), 21, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2704), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2710), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [47086] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [47070] = 7, + ACTIONS(3111), 1, + anon_sym_BSLASH, + ACTIONS(3116), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(911), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3114), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3109), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [47111] = 7, + ACTIONS(3122), 1, + anon_sym_BSLASH, + ACTIONS(3125), 1, + anon_sym_LBRACK, + ACTIONS(3128), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(912), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 8, + ACTIONS(3114), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -109412,50 +109510,50 @@ static const uint16_t ts_small_parse_table[] = { sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3293), 15, + anon_sym_SLASH2, + ACTIONS(3109), 12, anon_sym_COLON, - anon_sym_BSLASH, anon_sym_COMMA, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [47118] = 9, - ACTIONS(3268), 1, + [47152] = 11, + ACTIONS(3133), 1, anon_sym_BSLASH, - ACTIONS(3272), 1, + ACTIONS(3137), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3274), 1, + ACTIONS(3141), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(1261), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(931), 2, + STATE(914), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(962), 2, + STATE(978), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3276), 3, + ACTIONS(3143), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 5, + ACTIONS(3131), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3299), 8, + ACTIONS(3135), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -109463,19 +109561,52 @@ static const uint16_t ts_small_parse_table[] = { sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - [47162] = 5, - ACTIONS(3301), 1, - sym_hl_group, - STATE(1024), 1, - sym_hl_groups, + anon_sym_SLASH2, + [47201] = 5, + STATE(1086), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3260), 2, + ACTIONS(3149), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(3262), 19, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3145), 11, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [47238] = 5, + ACTIONS(3153), 1, + sym_hl_group, + STATE(930), 1, + sym_hl_groups, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3151), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3155), 19, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -109495,132 +109626,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47198] = 13, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_DASH, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_QMARK, - ACTIONS(3303), 1, - anon_sym_DOT2, - ACTIONS(3305), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2459), 2, - anon_sym_PLUS, - anon_sym_DOT_DOT, - ACTIONS(2455), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2467), 3, - anon_sym_LT2, - anon_sym_GT2, - anon_sym_is, - ACTIONS(2473), 7, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_isnot, - [47250] = 5, - ACTIONS(3278), 1, - anon_sym_COMMA, + [47275] = 15, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(3157), 1, + anon_sym_start, + ACTIONS(3161), 1, + anon_sym_contains, + ACTIONS(3163), 1, + anon_sym_matchgroup, + STATE(697), 1, + sym__syn_region_start, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, STATE(952), 1, - aux_sym_hl_groups_repeat1, + aux_sym__syn_region_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2542), 2, + ACTIONS(2621), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2540), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3159), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [47286] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3019), 15, - anon_sym_COLON, + [47332] = 11, + ACTIONS(3165), 1, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3167), 1, anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [47318] = 9, - ACTIONS(3212), 1, - anon_sym_BSLASH, - ACTIONS(3216), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(3218), 1, + ACTIONS(3171), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(1280), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(908), 2, + STATE(920), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(966), 2, + STATE(953), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3220), 3, + ACTIONS(3173), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 5, + ACTIONS(3131), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3299), 8, + ACTIONS(3135), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -109628,80 +109705,79 @@ static const uint16_t ts_small_parse_table[] = { sym__global, sym__call, anon_sym_BANG, - anon_sym_SLASH2, - [47362] = 13, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - ACTIONS(3280), 1, - anon_sym_COMMA, - STATE(1009), 1, - aux_sym__syn_match_repeat1, - STATE(1054), 1, - aux_sym__syn_match_repeat2, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, + anon_sym_QMARK2, + [47381] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3307), 3, + ACTIONS(3177), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3175), 21, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2487), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, [47414] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3309), 15, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + ACTIONS(3181), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3179), 21, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [47447] = 5, + STATE(1103), 1, + sym_pattern_multi, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3183), 4, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [47446] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3295), 8, + ACTIONS(3147), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -109709,115 +109785,66 @@ static const uint16_t ts_small_parse_table[] = { sym__global, sym__call, anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3293), 15, + anon_sym_QMARK2, + ACTIONS(3145), 11, anon_sym_COLON, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_STAR2, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [47478] = 13, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - ACTIONS(3280), 1, + [47484] = 5, + ACTIONS(3185), 1, anon_sym_COMMA, - STATE(947), 1, + STATE(868), 1, aux_sym__syn_match_repeat2, - STATE(1014), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3313), 3, + ACTIONS(3189), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3187), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [47530] = 13, - ACTIONS(2479), 1, anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - ACTIONS(3280), 1, - anon_sym_COMMA, - STATE(1020), 1, - aux_sym__syn_match_repeat1, - STATE(1054), 1, - aux_sym__syn_match_repeat2, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2483), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3315), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2487), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [47582] = 5, - ACTIONS(3317), 1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [47521] = 5, + ACTIONS(3185), 1, anon_sym_COMMA, - STATE(952), 1, - aux_sym_hl_groups_repeat1, + STATE(921), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2518), 2, + ACTIONS(3193), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2516), 19, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3191), 20, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -109835,20 +109862,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47618] = 5, - ACTIONS(3320), 1, - anon_sym_COMMA, - STATE(961), 1, - aux_sym__syn_match_repeat2, + [47558] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2903), 2, + ACTIONS(3197), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2901), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(3195), 21, + anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -109866,38 +109892,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47654] = 13, - ACTIONS(2453), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + [47591] = 11, + ACTIONS(3199), 1, + anon_sym_BSLASH, + ACTIONS(3201), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3203), 1, + anon_sym_LBRACK, + ACTIONS(3205), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1318), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(926), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(983), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3207), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3131), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3135), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [47640] = 7, + ACTIONS(3209), 1, + anon_sym_BSLASH, + ACTIONS(3212), 1, + anon_sym_LBRACK, + ACTIONS(3215), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(925), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3114), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3109), 12, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [47681] = 5, + STATE(1090), 1, + sym_pattern_multi, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3218), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3145), 13, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [47718] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3222), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3220), 21, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [47751] = 14, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2654), 1, + anon_sym_LPAREN, + ACTIONS(2676), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -109905,53 +110067,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [47706] = 6, - ACTIONS(3322), 1, - anon_sym_LBRACE2, - ACTIONS(3324), 1, - aux_sym_identifier_token2, + [47806] = 15, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(3157), 1, + anon_sym_start, + ACTIONS(3161), 1, + anon_sym_contains, + ACTIONS(3163), 1, + anon_sym_matchgroup, + STATE(638), 1, + sym__syn_region_start, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(941), 1, + aux_sym__syn_region_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(991), 2, - anon_sym_EQ, - sym_command_name, - STATE(861), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(989), 17, - anon_sym_EQ_LT_LT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3159), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [47863] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3226), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3224), 21, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_DASH_GT, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [47744] = 5, - ACTIONS(3320), 1, - anon_sym_COMMA, - STATE(953), 1, - aux_sym__syn_match_repeat2, + anon_sym_start, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [47896] = 5, + ACTIONS(3153), 1, + sym_hl_group, + STATE(946), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3226), 2, + ACTIONS(3228), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3230), 19, anon_sym_conceal, - anon_sym_contained, - ACTIONS(3224), 19, - sym__newline_or_pipe, - sym_comment, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -109968,20 +110171,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47780] = 3, + [47933] = 7, + ACTIONS(3232), 1, + anon_sym_BSLASH, + ACTIONS(3235), 1, + anon_sym_LBRACK, + ACTIONS(3238), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(932), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 6, + ACTIONS(3114), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3019), 17, + ACTIONS(3109), 14, anon_sym_COLON, - anon_sym_BSLASH, anon_sym_COMMA, anon_sym_SEMI, anon_sym_BSLASH_AMP, @@ -109989,81 +110199,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [47812] = 9, - ACTIONS(3328), 1, + [47974] = 11, + ACTIONS(3241), 1, anon_sym_BSLASH, - ACTIONS(3333), 1, + ACTIONS(3243), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3245), 1, anon_sym_LBRACK, - ACTIONS(3336), 1, + ACTIONS(3247), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(1275), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(835), 2, + STATE(934), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(958), 2, + STATE(971), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3339), 3, + ACTIONS(3249), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3331), 6, + ACTIONS(3131), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3135), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + [48023] = 5, + STATE(1092), 1, + sym_pattern_multi, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3251), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3326), 7, + ACTIONS(3145), 13, anon_sym_COLON, + anon_sym_BSLASH, anon_sym_COMMA, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [47856] = 13, - ACTIONS(2457), 1, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [48060] = 14, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2486), 1, anon_sym_DOT2, - ACTIONS(2461), 1, + ACTIONS(2490), 1, anon_sym_DASH, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2469), 1, + ACTIONS(2508), 1, anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, + ACTIONS(2510), 1, anon_sym_AMP_AMP, - ACTIONS(2557), 1, + ACTIONS(2517), 1, anon_sym_QMARK, - ACTIONS(2615), 1, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2650), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2459), 2, + ACTIONS(2488), 2, anon_sym_PLUS, anon_sym_DOT_DOT, - ACTIONS(2455), 3, + ACTIONS(2484), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2467), 3, + ACTIONS(2506), 3, anon_sym_LT2, anon_sym_GT2, anon_sym_is, - ACTIONS(2473), 7, + ACTIONS(2512), 7, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -110071,64 +110316,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_isnot, - [47908] = 18, - ACTIONS(3342), 1, + [48115] = 18, + ACTIONS(3021), 1, + anon_sym_term, + ACTIONS(3023), 1, + anon_sym_cterm, + ACTIONS(3029), 1, + anon_sym_gui, + ACTIONS(3033), 1, + anon_sym_font, + ACTIONS(3035), 1, + anon_sym_blend, + STATE(1212), 1, + sym__hl_key_blend, + STATE(1213), 1, + sym__hl_key_font, + STATE(1214), 1, + sym__hl_key_gui_color, + STATE(1216), 1, + sym__hl_key_gui, + STATE(1227), 1, + sym__hl_key_cterm, + STATE(1231), 1, + sym__hl_key_start_stop, + STATE(1236), 1, + sym__hl_key_ctermfg_ctermbg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3025), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3027), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(937), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3031), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + ACTIONS(3253), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [48178] = 18, + ACTIONS(3257), 1, anon_sym_term, - ACTIONS(3345), 1, + ACTIONS(3260), 1, anon_sym_cterm, - ACTIONS(3354), 1, + ACTIONS(3269), 1, anon_sym_gui, - ACTIONS(3360), 1, + ACTIONS(3275), 1, anon_sym_font, - ACTIONS(3363), 1, + ACTIONS(3278), 1, anon_sym_blend, - STATE(1261), 1, + STATE(1212), 1, sym__hl_key_blend, - STATE(1266), 1, + STATE(1213), 1, sym__hl_key_font, - STATE(1271), 1, + STATE(1214), 1, sym__hl_key_gui_color, - STATE(1298), 1, + STATE(1216), 1, sym__hl_key_gui, - STATE(1307), 1, + STATE(1227), 1, sym__hl_key_cterm, - STATE(1313), 1, + STATE(1231), 1, sym__hl_key_start_stop, - STATE(1315), 1, + STATE(1236), 1, sym__hl_key_ctermfg_ctermbg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2989), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3348), 2, + ACTIONS(3263), 2, anon_sym_start, anon_sym_stop, - ACTIONS(3351), 2, + ACTIONS(3266), 2, anon_sym_ctermfg, anon_sym_ctermbg, - STATE(960), 2, + STATE(937), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3357), 3, + ACTIONS(3255), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3272), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [47970] = 5, - ACTIONS(3366), 1, - anon_sym_COMMA, - STATE(961), 1, - aux_sym__syn_match_repeat2, + [48241] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2831), 2, + ACTIONS(3283), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2829), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(3281), 21, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -110146,213 +110436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48006] = 9, - ACTIONS(3369), 1, - anon_sym_BSLASH, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3375), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(931), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(962), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3378), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3331), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - [48050] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3295), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3293), 17, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48082] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3311), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3309), 17, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48114] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 15, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48146] = 9, - ACTIONS(3381), 1, - anon_sym_BSLASH, - ACTIONS(3384), 1, - anon_sym_LBRACK, - ACTIONS(3387), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(908), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(966), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3390), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3331), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [48190] = 9, - ACTIONS(2949), 1, - anon_sym_BSLASH, - ACTIONS(2955), 1, - anon_sym_LBRACK, - ACTIONS(2957), 1, - aux_sym__pattern_ordinary_atom_token2, + [48274] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(835), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(958), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(2959), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3299), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3297), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + ACTIONS(3287), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3285), 21, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [48234] = 5, - ACTIONS(3301), 1, - sym_hl_group, - STATE(1018), 1, - sym_hl_groups, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3164), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3166), 19, - anon_sym_conceal, + anon_sym_start, anon_sym_cchar, - anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -110369,297 +110466,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48270] = 6, - ACTIONS(3322), 1, - anon_sym_LBRACE2, - ACTIONS(3393), 1, - aux_sym_identifier_token2, + [48307] = 15, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(3157), 1, + anon_sym_start, + ACTIONS(3161), 1, + anon_sym_contains, + ACTIONS(3163), 1, + anon_sym_matchgroup, + STATE(694), 1, + sym__syn_region_start, + STATE(916), 1, + aux_sym__syn_region_repeat1, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(983), 2, - anon_sym_EQ, - sym_command_name, - STATE(955), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(981), 17, - anon_sym_EQ_LT_LT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_DASH_GT, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [48308] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3311), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3309), 15, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48340] = 5, - ACTIONS(3301), 1, - sym_hl_group, - STATE(1008), 1, - sym_hl_groups, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3079), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3083), 19, + ACTIONS(2621), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3159), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2627), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2631), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, + [48364] = 15, + ACTIONS(2623), 1, + anon_sym_cchar, + ACTIONS(3157), 1, + anon_sym_start, + ACTIONS(3161), 1, + anon_sym_contains, + ACTIONS(3163), 1, anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [48376] = 9, - ACTIONS(3056), 1, - anon_sym_BSLASH, - ACTIONS(3060), 1, - anon_sym_LBRACK, - ACTIONS(3062), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(855), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(975), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3064), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3299), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3297), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [48420] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3311), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3309), 17, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48452] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3295), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3293), 17, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48484] = 9, - ACTIONS(3395), 1, - anon_sym_BSLASH, - ACTIONS(3398), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - aux_sym__pattern_ordinary_atom_token2, + STATE(633), 1, + sym__syn_region_start, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(952), 1, + aux_sym__syn_region_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(855), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(975), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3404), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3331), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3326), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [48528] = 3, + ACTIONS(2621), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2635), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3159), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2627), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2631), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [48421] = 5, + ACTIONS(3153), 1, + sym_hl_group, + STATE(944), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 17, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + ACTIONS(3289), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48560] = 8, - ACTIONS(3409), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(3414), 1, - anon_sym_LT, - ACTIONS(3417), 1, - anon_sym_BSLASH2, - STATE(977), 1, - aux_sym__map_lhs_repeat1, - STATE(1063), 1, - sym__immediate_keycode, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3412), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3407), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [48601] = 4, - ACTIONS(3081), 1, - sym_hl_group, - STATE(894), 1, - sym_hl_groups, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3262), 20, + ACTIONS(3291), 19, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -110678,161 +110581,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - anon_sym_skip, anon_sym_end, - [48634] = 5, - STATE(1125), 1, - sym_pattern_multi, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3420), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(2941), 9, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48669] = 11, - ACTIONS(3422), 1, - anon_sym_BSLASH, - ACTIONS(3424), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(3428), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1389), 1, - aux_sym__pattern_branch_repeat1, + [48458] = 15, + ACTIONS(2802), 1, + anon_sym_end, + ACTIONS(2807), 1, + anon_sym_cchar, + ACTIONS(3296), 1, + anon_sym_contains, + ACTIONS(3299), 1, + anon_sym_matchgroup, + ACTIONS(3302), 1, + anon_sym_skip, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(943), 1, + aux_sym__syn_region_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2947), 2, - anon_sym_COLON, - anon_sym_BSLASH_PIPE, - STATE(979), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1035), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3430), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2951), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - [48716] = 11, - ACTIONS(3432), 1, - anon_sym_BSLASH, - ACTIONS(3434), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3436), 1, - anon_sym_LBRACK, - ACTIONS(3438), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1390), 1, - aux_sym__pattern_branch_repeat1, + ACTIONS(2804), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2825), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3293), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2813), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2819), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [48515] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1003), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1034), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3440), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 4, - anon_sym_COLON, + ACTIONS(3306), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3304), 21, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2951), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - [48763] = 13, - ACTIONS(2526), 1, + anon_sym_start, anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - ACTIONS(3442), 1, - anon_sym_COMMA, - STATE(1057), 1, - aux_sym__syn_match_repeat1, - STATE(1092), 1, - aux_sym__syn_match_repeat2, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2530), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3307), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [48814] = 5, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(993), 1, - aux_sym__syn_match_repeat2, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [48548] = 14, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3308), 1, + anon_sym_DOT2, + ACTIONS(3310), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [48603] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3444), 3, + ACTIONS(3314), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3446), 17, + ACTIONS(3312), 21, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -110850,18 +110725,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48849] = 3, + [48636] = 14, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_DOT2, + ACTIONS(2490), 1, + anon_sym_DASH, + ACTIONS(2508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2510), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_QMARK, + ACTIONS(2576), 1, + anon_sym_QMARK_QMARK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3196), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3194), 20, + ACTIONS(2488), 2, + anon_sym_PLUS, + anon_sym_DOT_DOT, + ACTIONS(2484), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2506), 3, + anon_sym_LT2, + anon_sym_GT2, + anon_sym_is, + ACTIONS(2512), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_isnot, + [48691] = 5, + ACTIONS(3316), 1, + sym_hl_group, + STATE(1033), 1, + sym_hl_groups, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3289), 2, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, + ACTIONS(3291), 19, + anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -110878,17 +110797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48880] = 3, + [48727] = 5, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(965), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3200), 2, + ACTIONS(3193), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3198), 20, + ACTIONS(3191), 19, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -110906,78 +110828,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48911] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1303), 2, - anon_sym_EQ, - sym_command_name, - ACTIONS(1301), 20, - anon_sym_LBRACE2, - aux_sym_identifier_token2, - anon_sym_EQ_LT_LT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LPAREN2, - anon_sym_DASH_GT, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [48942] = 7, - ACTIONS(3448), 1, + [48763] = 9, + ACTIONS(3133), 1, anon_sym_BSLASH, - ACTIONS(3451), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3141), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(987), 1, - aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 6, + STATE(914), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(978), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3143), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3320), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3322), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3019), 12, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [48981] = 5, - STATE(1117), 1, - sym_pattern_multi, + anon_sym_SLASH2, + [48807] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3457), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 8, + ACTIONS(3326), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -110986,258 +110876,185 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(2941), 9, + ACTIONS(3324), 15, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49016] = 8, - ACTIONS(735), 1, - anon_sym_LT, - ACTIONS(737), 1, - anon_sym_BSLASH2, - ACTIONS(3461), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(977), 1, - aux_sym__map_lhs_repeat1, - STATE(1063), 1, - sym__immediate_keycode, + [48839] = 14, + ACTIONS(2802), 1, + anon_sym_start, + ACTIONS(2807), 1, + anon_sym_cchar, + ACTIONS(3331), 1, + anon_sym_contains, + ACTIONS(3334), 1, + anon_sym_matchgroup, + STATE(919), 1, + sym__syn_arguments_match, + STATE(927), 1, + sym__syn_arguments_region, + STATE(939), 1, + sym__syn_arguments_keyword, + STATE(952), 1, + aux_sym__syn_region_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3463), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3459), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49057] = 5, - STATE(1141), 1, - sym_pattern_multi, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3465), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(2941), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [49092] = 13, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, + ACTIONS(2804), 2, + anon_sym_conceal, anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - ACTIONS(3442), 1, - anon_sym_COMMA, - STATE(982), 1, - aux_sym__syn_match_repeat2, - STATE(1059), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2530), 2, + ACTIONS(2825), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3328), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3313), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, + ACTIONS(2813), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + ACTIONS(2819), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49143] = 8, - ACTIONS(735), 1, - anon_sym_LT, - ACTIONS(737), 1, - anon_sym_BSLASH2, - ACTIONS(3469), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(989), 1, - aux_sym__map_lhs_repeat1, - STATE(1063), 1, - sym__immediate_keycode, + [48893] = 9, + ACTIONS(3339), 1, + anon_sym_BSLASH, + ACTIONS(3344), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3471), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3467), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49184] = 5, - ACTIONS(2899), 1, + STATE(920), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(953), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3350), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3337), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3342), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + [48937] = 13, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, + anon_sym_contained, + ACTIONS(2533), 1, + anon_sym_contains, + ACTIONS(3353), 1, anon_sym_COMMA, - STATE(746), 1, + STATE(981), 1, aux_sym__syn_match_repeat2, + STATE(1023), 1, + aux_sym__syn_match_repeat1, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3473), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3475), 17, - anon_sym_cchar, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3355), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [49219] = 8, - ACTIONS(735), 1, - anon_sym_LT, - ACTIONS(737), 1, - anon_sym_BSLASH2, - ACTIONS(3461), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(977), 1, - aux_sym__map_lhs_repeat1, - STATE(1063), 1, - sym__immediate_keycode, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3471), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3467), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49260] = 7, - ACTIONS(3477), 1, - anon_sym_BSLASH, - ACTIONS(3480), 1, - anon_sym_LBRACK, - ACTIONS(3483), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(995), 1, - aux_sym__pattern_ordinary_atom, + [48989] = 18, + ACTIONS(3357), 1, + anon_sym_term, + ACTIONS(3360), 1, + anon_sym_cterm, + ACTIONS(3369), 1, + anon_sym_gui, + ACTIONS(3375), 1, + anon_sym_font, + ACTIONS(3378), 1, + anon_sym_blend, + STATE(1241), 1, + sym__hl_key_gui, + STATE(1267), 1, + sym__hl_key_blend, + STATE(1272), 1, + sym__hl_key_font, + STATE(1273), 1, + sym__hl_key_gui_color, + STATE(1288), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1289), 1, + sym__hl_key_start_stop, + STATE(1293), 1, + sym__hl_key_cterm, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 12, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [49299] = 7, - ACTIONS(3486), 1, - anon_sym_BSLASH, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(996), 1, - aux_sym__pattern_ordinary_atom, + ACTIONS(3255), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3363), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3366), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(955), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3372), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [49051] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 8, + ACTIONS(3383), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -111246,100 +111063,67 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3019), 10, + ACTIONS(3381), 15, anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, + anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49338] = 11, - ACTIONS(3495), 1, - anon_sym_BSLASH, - ACTIONS(3497), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3499), 1, - anon_sym_LBRACK, - ACTIONS(3501), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1449), 1, - aux_sym__pattern_branch_repeat1, + [49083] = 5, + ACTIONS(3385), 1, + anon_sym_COMMA, + STATE(957), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2947), 2, - anon_sym_COLON, - anon_sym_BSLASH_PIPE, - STATE(988), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1036), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3503), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2951), 8, + ACTIONS(3009), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3007), 19, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [49385] = 11, - ACTIONS(3505), 1, - anon_sym_BSLASH, - ACTIONS(3507), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3509), 1, - anon_sym_LBRACK, - ACTIONS(3511), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1469), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(990), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1015), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3513), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 4, - anon_sym_COLON, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2951), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [49432] = 3, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49119] = 5, + ACTIONS(3388), 1, + anon_sym_COMMA, + STATE(961), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2518), 2, + ACTIONS(2555), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2516), 20, + ACTIONS(2553), 19, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -111357,94 +111141,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49463] = 13, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - ACTIONS(3442), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym__syn_match_repeat1, - STATE(1092), 1, - aux_sym__syn_match_repeat2, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + [49155] = 5, + ACTIONS(3316), 1, + sym_hl_group, + STATE(1054), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3315), 2, + ACTIONS(3228), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2524), 5, + ACTIONS(3230), 19, anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49514] = 13, - ACTIONS(2526), 1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49191] = 5, + ACTIONS(3316), 1, + sym_hl_group, + STATE(1061), 1, + sym_hl_groups, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3151), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3155), 19, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(2528), 1, anon_sym_contained, - ACTIONS(2532), 1, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, anon_sym_contains, - ACTIONS(3442), 1, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49227] = 5, + ACTIONS(3388), 1, anon_sym_COMMA, - STATE(1000), 1, - aux_sym__syn_match_repeat2, - STATE(1064), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + STATE(962), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3282), 2, + ACTIONS(2567), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2565), 19, sym__newline_or_pipe, sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49565] = 4, - ACTIONS(3081), 1, - sym_hl_group, - STATE(847), 1, - sym_hl_groups, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49263] = 5, + ACTIONS(3390), 1, + anon_sym_COMMA, + STATE(962), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3083), 20, + ACTIONS(2615), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(2613), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -111460,50 +111264,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - anon_sym_skip, anon_sym_end, - [49598] = 5, - STATE(1119), 1, - sym_pattern_multi, + [49299] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3515), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2943), 6, + ACTIONS(3114), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(2941), 11, + ACTIONS(3109), 15, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49633] = 4, + [49331] = 18, ACTIONS(3081), 1, - sym_hl_group, - STATE(848), 1, - sym_hl_groups, + anon_sym_term, + ACTIONS(3083), 1, + anon_sym_cterm, + ACTIONS(3089), 1, + anon_sym_gui, + ACTIONS(3093), 1, + anon_sym_font, + ACTIONS(3095), 1, + anon_sym_blend, + STATE(1241), 1, + sym__hl_key_gui, + STATE(1267), 1, + sym__hl_key_blend, + STATE(1272), 1, + sym__hl_key_font, + STATE(1273), 1, + sym__hl_key_gui_color, + STATE(1288), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1289), 1, + sym__hl_key_start_stop, + STATE(1293), 1, + sym__hl_key_cterm, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3085), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3087), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + ACTIONS(3253), 2, + sym__newline_or_pipe, + sym_comment, + STATE(955), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3091), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [49393] = 5, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(957), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3166), 20, + ACTIONS(3189), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3187), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -111519,21 +111368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - anon_sym_skip, anon_sym_end, - [49666] = 7, - ACTIONS(3517), 1, - anon_sym_BSLASH, - ACTIONS(3520), 1, - anon_sym_LBRACK, - ACTIONS(3523), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1005), 1, - aux_sym__pattern_ordinary_atom, + [49429] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 8, + ACTIONS(3383), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -111542,196 +111382,243 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3019), 10, + ACTIONS(3381), 15, anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, + anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49705] = 8, - ACTIONS(725), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(735), 1, - anon_sym_LT, - ACTIONS(737), 1, - anon_sym_BSLASH2, - STATE(994), 1, - aux_sym__map_lhs_repeat1, - STATE(1063), 1, - sym__immediate_keycode, + [49461] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(727), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(723), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49746] = 9, - ACTIONS(3432), 1, + ACTIONS(3326), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3324), 17, + anon_sym_COLON, anon_sym_BSLASH, - ACTIONS(3436), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, anon_sym_LBRACK, - ACTIONS(3438), 1, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1003), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1034), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 5, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3299), 6, + [49493] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3326), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - [49788] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3036), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3034), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [49818] = 11, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(1049), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, + ACTIONS(3324), 15, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [49525] = 18, + ACTIONS(3081), 1, + anon_sym_term, + ACTIONS(3083), 1, + anon_sym_cterm, + ACTIONS(3089), 1, + anon_sym_gui, + ACTIONS(3093), 1, + anon_sym_font, + ACTIONS(3095), 1, + anon_sym_blend, + STATE(1241), 1, + sym__hl_key_gui, + STATE(1267), 1, + sym__hl_key_blend, + STATE(1272), 1, + sym__hl_key_font, + STATE(1273), 1, + sym__hl_key_gui_color, + STATE(1288), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1289), 1, + sym__hl_key_start_stop, + STATE(1293), 1, + sym__hl_key_cterm, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3526), 3, + ACTIONS(3085), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3087), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + ACTIONS(3097), 2, + sym__newline_or_pipe, + sym_comment, + STATE(955), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3091), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [49587] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3114), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3109), 17, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [49864] = 9, - ACTIONS(3422), 1, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [49619] = 9, + ACTIONS(3393), 1, anon_sym_BSLASH, - ACTIONS(3426), 1, + ACTIONS(3396), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, + ACTIONS(3399), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(979), 2, + STATE(934), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1035), 2, + STATE(971), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3297), 3, + ACTIONS(3402), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3342), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3337), 7, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3430), 3, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [49663] = 9, + ACTIONS(3199), 1, + anon_sym_BSLASH, + ACTIONS(3203), 1, + anon_sym_LBRACK, + ACTIONS(3205), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(926), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(983), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3207), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3299), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3322), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - [49906] = 3, + anon_sym_SLASH2, + ACTIONS(3320), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [49707] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3326), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3309), 13, + anon_sym_SLASH2, + ACTIONS(3324), 17, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, anon_sym_LBRACK, aux_sym_pattern_multi_token1, @@ -111741,11 +111628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49936] = 3, + [49739] = 9, + ACTIONS(3165), 1, + anon_sym_BSLASH, + ACTIONS(3169), 1, + anon_sym_LBRACK, + ACTIONS(3171), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 8, + STATE(920), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(953), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3173), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3320), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3322), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -111754,11 +111663,26 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3019), 13, + [49783] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3383), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3381), 17, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, anon_sym_LBRACK, aux_sym_pattern_multi_token1, @@ -111768,24 +111692,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49966] = 3, + [49815] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3383), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3293), 13, + anon_sym_SLASH2, + ACTIONS(3381), 17, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, anon_sym_LBRACK, aux_sym_pattern_multi_token1, @@ -111795,88 +111721,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49996] = 11, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(1049), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, + [49847] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3307), 3, + ACTIONS(3114), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3109), 15, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [50042] = 9, - ACTIONS(3528), 1, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [49879] = 9, + ACTIONS(3405), 1, anon_sym_BSLASH, - ACTIONS(3531), 1, + ACTIONS(3408), 1, anon_sym_LBRACK, - ACTIONS(3534), 1, + ACTIONS(3411), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(990), 2, + STATE(914), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1015), 2, + STATE(978), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3537), 3, + ACTIONS(3414), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 5, + ACTIONS(3337), 5, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3331), 6, + ACTIONS(3342), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - [50084] = 3, + [49923] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 6, + ACTIONS(3114), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3293), 15, + ACTIONS(3109), 17, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, @@ -111890,266 +111814,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50114] = 3, + [49955] = 6, + ACTIONS(3417), 1, + anon_sym_LBRACE2, + ACTIONS(3419), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3309), 15, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(913), 2, + anon_sym_EQ, + sym_command_name, + STATE(909), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(911), 17, + anon_sym_EQ_LT_LT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [50144] = 3, + anon_sym_DASH_GT, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [49993] = 13, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, + anon_sym_contained, + ACTIONS(2533), 1, + anon_sym_contains, + ACTIONS(3353), 1, + anon_sym_COMMA, + STATE(1063), 1, + aux_sym__syn_match_repeat1, + STATE(1081), 1, + aux_sym__syn_match_repeat2, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3040), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3038), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3421), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [50174] = 9, - ACTIONS(3505), 1, + [50045] = 6, + ACTIONS(3417), 1, + anon_sym_LBRACE2, + ACTIONS(3423), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(985), 2, + anon_sym_EQ, + sym_command_name, + STATE(980), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(983), 17, + anon_sym_EQ_LT_LT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_DASH_GT, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [50083] = 9, + ACTIONS(3425), 1, anon_sym_BSLASH, - ACTIONS(3509), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(3511), 1, + ACTIONS(3431), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(990), 2, + STATE(926), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1015), 2, + STATE(983), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3513), 3, + ACTIONS(3434), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 5, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3299), 6, + ACTIONS(3342), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - [50216] = 11, - ACTIONS(2479), 1, + ACTIONS(3337), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [50127] = 13, + ACTIONS(2527), 1, anon_sym_cchar, - ACTIONS(2481), 1, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_contains, - STATE(1049), 1, + ACTIONS(3353), 1, + anon_sym_COMMA, + STATE(985), 1, + aux_sym__syn_match_repeat2, + STATE(1041), 1, aux_sym__syn_match_repeat1, - STATE(1111), 1, + STATE(1107), 1, sym__syn_arguments_match, - STATE(1112), 1, + STATE(1122), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3540), 3, + ACTIONS(3437), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, + ACTIONS(2525), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2487), 5, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [50262] = 5, - ACTIONS(2518), 1, + [50179] = 13, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(3542), 1, + ACTIONS(2533), 1, + anon_sym_contains, + ACTIONS(3353), 1, anon_sym_COMMA, STATE(1021), 1, - aux_sym_hl_groups_repeat1, + aux_sym__syn_match_repeat1, + STATE(1081), 1, + aux_sym__syn_match_repeat2, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 18, - sym__newline_or_pipe, - sym_comment, - anon_sym_conceal, - anon_sym_cchar, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3439), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [50296] = 17, - ACTIONS(2969), 1, - anon_sym_term, - ACTIONS(2971), 1, - anon_sym_cterm, - ACTIONS(2977), 1, - anon_sym_gui, - ACTIONS(2981), 1, - anon_sym_font, - ACTIONS(2983), 1, - anon_sym_blend, - STATE(1261), 1, - sym__hl_key_blend, - STATE(1266), 1, - sym__hl_key_font, - STATE(1271), 1, - sym__hl_key_gui_color, - STATE(1298), 1, - sym__hl_key_gui, - STATE(1307), 1, - sym__hl_key_cterm, - STATE(1313), 1, - sym__hl_key_start_stop, - STATE(1315), 1, - sym__hl_key_ctermfg_ctermbg, + [50231] = 9, + ACTIONS(3241), 1, + anon_sym_BSLASH, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2973), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2975), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, STATE(934), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2979), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [50354] = 5, - ACTIONS(2542), 1, - anon_sym_contained, - ACTIONS(3545), 1, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(971), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3249), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3322), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3320), 7, + anon_sym_COLON, anon_sym_COMMA, - STATE(1021), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2540), 18, - sym__newline_or_pipe, - sym_comment, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [50388] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3182), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3180), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [50418] = 5, - ACTIONS(2899), 1, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [50275] = 5, + ACTIONS(3185), 1, anon_sym_COMMA, - STATE(746), 1, + STATE(1002), 1, aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3547), 2, + ACTIONS(3441), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(3549), 17, + anon_sym_skip, + ACTIONS(3443), 17, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -112167,99 +112095,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [50452] = 5, - ACTIONS(2550), 1, + [50310] = 13, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, anon_sym_contained, - ACTIONS(3545), 1, + ACTIONS(2588), 1, + anon_sym_contains, + ACTIONS(3445), 1, anon_sym_COMMA, - STATE(1023), 1, - aux_sym_hl_groups_repeat1, + STATE(1068), 1, + aux_sym__syn_match_repeat1, + STATE(1101), 1, + aux_sym__syn_match_repeat2, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2548), 18, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3421), 2, sym__newline_or_pipe, sym_comment, + ACTIONS(2580), 5, anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2590), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [50486] = 3, + [50361] = 5, + STATE(1149), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3128), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3126), 19, + ACTIONS(3447), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 8, sym__newline_or_pipe, sym_comment, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [50516] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3019), 15, + anon_sym_SLASH2, + ACTIONS(3145), 9, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50546] = 4, - ACTIONS(3081), 1, + [50396] = 4, + ACTIONS(3153), 1, sym_hl_group, - STATE(847), 1, + STATE(946), 1, sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3083), 19, - anon_sym_start, + ACTIONS(3230), 20, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -112278,19 +112190,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - [50578] = 4, - ACTIONS(3081), 1, - sym_hl_group, - STATE(894), 1, - sym_hl_groups, + anon_sym_skip, + anon_sym_end, + [50429] = 5, + STATE(1135), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3262), 19, - anon_sym_start, + ACTIONS(3449), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3145), 9, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [50464] = 11, + ACTIONS(3451), 1, + anon_sym_BSLASH, + ACTIONS(3453), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1400), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3131), 2, + anon_sym_COLON, + anon_sym_BSLASH_PIPE, + STATE(991), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1047), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3459), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3135), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + [50511] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3177), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3175), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -112306,19 +112285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - [50610] = 5, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(1025), 1, - aux_sym__syn_match_repeat2, + anon_sym_end, + [50542] = 4, + ACTIONS(3153), 1, + sym_hl_group, + STATE(930), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3551), 2, + ACTIONS(3155), 20, anon_sym_conceal, - anon_sym_contained, - ACTIONS(3553), 17, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -112334,178 +112313,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, + anon_sym_skip, anon_sym_end, - [50644] = 11, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(1049), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, + [50575] = 8, + ACTIONS(735), 1, + anon_sym_LT, + ACTIONS(737), 1, + anon_sym_BSLASH2, + ACTIONS(3463), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1001), 1, + aux_sym__map_lhs_repeat1, + STATE(1071), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2497), 3, + ACTIONS(3465), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3461), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [50616] = 8, + ACTIONS(735), 1, + anon_sym_LT, + ACTIONS(737), 1, + anon_sym_BSLASH2, + ACTIONS(3467), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1000), 1, + aux_sym__map_lhs_repeat1, + STATE(1071), 1, + sym__immediate_keycode, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3465), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3461), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [50657] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1313), 2, + anon_sym_EQ, + sym_command_name, + ACTIONS(1311), 20, + anon_sym_LBRACE2, + aux_sym_identifier_token2, + anon_sym_EQ_LT_LT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [50690] = 3, + anon_sym_LPAREN2, + anon_sym_DASH_GT, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [50688] = 5, + STATE(1132), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3469), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 13, + anon_sym_QMARK2, + ACTIONS(3145), 11, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_STAR2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50720] = 9, - ACTIONS(3555), 1, + [50723] = 11, + ACTIONS(3471), 1, anon_sym_BSLASH, - ACTIONS(3558), 1, + ACTIONS(3473), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3475), 1, anon_sym_LBRACK, - ACTIONS(3561), 1, + ACTIONS(3477), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(1493), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1003), 2, + STATE(998), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1034), 2, + STATE(1051), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3564), 3, + ACTIONS(3479), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 5, + ACTIONS(3131), 4, anon_sym_COLON, - anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(3331), 6, + ACTIONS(3135), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - [50762] = 9, - ACTIONS(3567), 1, - anon_sym_BSLASH, - ACTIONS(3570), 1, - anon_sym_LBRACK, - ACTIONS(3573), 1, - aux_sym__pattern_ordinary_atom_token2, + [50770] = 8, + ACTIONS(3483), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(3488), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_BSLASH2, + STATE(1000), 1, + aux_sym__map_lhs_repeat1, + STATE(1071), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(979), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1035), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3326), 3, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3576), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3331), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - [50804] = 9, - ACTIONS(3579), 1, - anon_sym_BSLASH, - ACTIONS(3582), 1, + ACTIONS(3486), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3481), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(3585), 1, - aux_sym__pattern_ordinary_atom_token2, + sym_register, + anon_sym_POUND_LBRACE, + [50811] = 8, + ACTIONS(735), 1, + anon_sym_LT, + ACTIONS(737), 1, + anon_sym_BSLASH2, + ACTIONS(3467), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1000), 1, + aux_sym__map_lhs_repeat1, + STATE(1071), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(988), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1036), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3326), 3, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3588), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3331), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [50846] = 3, + ACTIONS(3496), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3494), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [50852] = 5, + ACTIONS(3185), 1, + anon_sym_COMMA, + STATE(868), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3115), 2, + ACTIONS(3498), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(3113), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(3500), 17, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -112523,16 +112571,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [50876] = 3, + [50887] = 7, + ACTIONS(3502), 1, + anon_sym_BSLASH, + ACTIONS(3505), 1, + anon_sym_LBRACK, + ACTIONS(3508), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1003), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3111), 2, + ACTIONS(3114), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3109), 12, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [50926] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2615), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3109), 19, + ACTIONS(2613), 20, sym__newline_or_pipe, sym_comment, + anon_sym_COMMA, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -112550,44 +112631,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [50906] = 3, + [50957] = 13, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + ACTIONS(3445), 1, + anon_sym_COMMA, + STATE(1016), 1, + aux_sym__syn_match_repeat2, + STATE(1073), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3105), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3103), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, + ACTIONS(2586), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3437), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2580), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2590), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - anon_sym_end, - [50936] = 3, + [51008] = 5, + STATE(1143), 1, + sym_pattern_multi, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3511), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3147), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3145), 11, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [51043] = 4, + ACTIONS(3153), 1, + sym_hl_group, + STATE(944), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2939), 2, + ACTIONS(3291), 20, anon_sym_conceal, - anon_sym_contained, - ACTIONS(2937), 19, - sym__newline_or_pipe, - sym_comment, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -112603,17 +112726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, + anon_sym_skip, anon_sym_end, - [50966] = 3, + [51076] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2963), 2, + ACTIONS(3197), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2961), 19, + ACTIONS(3195), 20, sym__newline_or_pipe, sym_comment, + anon_sym_COMMA, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -112631,148 +112756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [50996] = 17, - ACTIONS(2810), 1, - anon_sym_term, - ACTIONS(2812), 1, - anon_sym_cterm, - ACTIONS(2818), 1, - anon_sym_gui, - ACTIONS(2822), 1, - anon_sym_font, - ACTIONS(2824), 1, - anon_sym_blend, - STATE(1178), 1, - sym__hl_key_font, - STATE(1181), 1, - sym__hl_key_gui_color, - STATE(1184), 1, - sym__hl_key_gui, - STATE(1185), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1186), 1, - sym__hl_key_start_stop, - STATE(1187), 1, - sym__hl_key_cterm, - STATE(1220), 1, - sym__hl_key_blend, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2814), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(2816), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(844), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(2820), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [51054] = 11, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(1049), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3591), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51100] = 4, - ACTIONS(3081), 1, - sym_hl_group, - STATE(848), 1, - sym_hl_groups, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3166), 19, - anon_sym_start, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - anon_sym_matchgroup, - anon_sym_oneline, - anon_sym_concealends, - [51132] = 9, - ACTIONS(3495), 1, + [51107] = 7, + ACTIONS(3513), 1, anon_sym_BSLASH, - ACTIONS(3499), 1, + ACTIONS(3516), 1, anon_sym_LBRACK, - ACTIONS(3501), 1, + ACTIONS(3519), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(988), 2, + STATE(1009), 1, aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1036), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3297), 3, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3503), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3299), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - [51174] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 8, + ACTIONS(3114), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -112781,129 +112777,274 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3309), 13, + ACTIONS(3109), 10, anon_sym_COLON, - anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51204] = 3, + [51146] = 7, + ACTIONS(3522), 1, + anon_sym_BSLASH, + ACTIONS(3525), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1010), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3114), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3293), 13, + ACTIONS(3109), 12, anon_sym_COLON, - anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51234] = 11, - ACTIONS(2479), 1, - anon_sym_cchar, - ACTIONS(2481), 1, - anon_sym_contained, - ACTIONS(2485), 1, - anon_sym_contains, - STATE(1049), 1, - aux_sym__syn_match_repeat1, - STATE(1111), 1, - sym__syn_arguments_match, - STATE(1112), 1, - sym__syn_arguments_keyword, + [51185] = 11, + ACTIONS(3531), 1, + anon_sym_BSLASH, + ACTIONS(3533), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3535), 1, + anon_sym_LBRACK, + ACTIONS(3537), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1516), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2483), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3315), 3, + STATE(1006), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1034), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3539), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3131), 4, + anon_sym_COLON, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2477), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2487), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51280] = 11, - ACTIONS(3598), 1, + ACTIONS(3135), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [51232] = 8, + ACTIONS(725), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(735), 1, + anon_sym_LT, + ACTIONS(737), 1, + anon_sym_BSLASH2, + STATE(996), 1, + aux_sym__map_lhs_repeat1, + STATE(1071), 1, + sym__immediate_keycode, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(727), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(723), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [51273] = 7, + ACTIONS(3541), 1, + anon_sym_BSLASH, + ACTIONS(3544), 1, + anon_sym_LBRACK, + ACTIONS(3547), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1013), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3114), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3109), 10, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [51312] = 11, + ACTIONS(3550), 1, + anon_sym_BSLASH, + ACTIONS(3552), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3554), 1, + anon_sym_LBRACK, + ACTIONS(3556), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1419), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3131), 2, + anon_sym_COLON, + anon_sym_BSLASH_PIPE, + STATE(989), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1053), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3558), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3135), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [51359] = 13, + ACTIONS(2582), 1, anon_sym_cchar, - ACTIONS(3601), 1, + ACTIONS(2584), 1, anon_sym_contained, - ACTIONS(3607), 1, + ACTIONS(2588), 1, anon_sym_contains, - STATE(1049), 1, + ACTIONS(3445), 1, + anon_sym_COMMA, + STATE(988), 1, + aux_sym__syn_match_repeat2, + STATE(1064), 1, aux_sym__syn_match_repeat1, - STATE(1111), 1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, sym__syn_arguments_match, - STATE(1112), 1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3355), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2580), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2590), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [51410] = 13, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + ACTIONS(3445), 1, + anon_sym_COMMA, + STATE(1084), 1, + aux_sym__syn_match_repeat1, + STATE(1101), 1, + aux_sym__syn_match_repeat2, + STATE(1136), 1, sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3604), 2, + ACTIONS(2586), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3593), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3595), 5, + ACTIONS(3439), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2580), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3610), 5, + ACTIONS(2590), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51326] = 3, + [51461] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 6, + ACTIONS(3326), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3309), 15, + ACTIONS(3324), 15, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, @@ -112919,51 +113060,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51356] = 3, + [51491] = 9, + ACTIONS(3451), 1, + anon_sym_BSLASH, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 2, - anon_sym_EQ, - sym_command_name, - ACTIONS(1317), 19, - anon_sym_LBRACE2, - aux_sym_identifier_token2, - anon_sym_EQ_LT_LT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(991), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1047), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3320), 3, + anon_sym_COLON, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_DASH_GT, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [51386] = 3, + ACTIONS(3459), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3322), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + [51533] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 6, + ACTIONS(3326), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3019), 15, + anon_sym_QMARK2, + ACTIONS(3324), 13, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, anon_sym_LBRACK, aux_sym_pattern_multi_token1, @@ -112973,24 +113120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51416] = 3, + [51563] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 6, + ACTIONS(3383), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3293), 15, + ACTIONS(3381), 13, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, anon_sym_LBRACK, aux_sym_pattern_multi_token1, @@ -113000,50 +113147,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51446] = 5, - ACTIONS(2831), 1, + [51593] = 11, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(3613), 1, - anon_sym_COMMA, - STATE(1054), 1, - aux_sym__syn_match_repeat2, + ACTIONS(2533), 1, + anon_sym_contains, + STATE(1062), 1, + aux_sym__syn_match_repeat1, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2829), 17, + ACTIONS(2531), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3560), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51479] = 5, - ACTIONS(3616), 1, - sym_hl_group, - STATE(1106), 1, - sym_hl_groups, + [51639] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3260), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3262), 15, + ACTIONS(3107), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3105), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -113056,312 +113205,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51512] = 11, - ACTIONS(2526), 1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [51669] = 11, + ACTIONS(2527), 1, anon_sym_cchar, - ACTIONS(2528), 1, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(2532), 1, + ACTIONS(2533), 1, anon_sym_contains, - STATE(1066), 1, + STATE(1062), 1, aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, + STATE(1107), 1, sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3591), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2524), 5, + ACTIONS(3421), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51557] = 11, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(1066), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + [51715] = 4, + ACTIONS(3153), 1, + sym_hl_group, + STATE(930), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, + ACTIONS(3155), 19, + anon_sym_start, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3526), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51602] = 12, - ACTIONS(3620), 1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + [51747] = 11, + ACTIONS(2527), 1, anon_sym_cchar, - ACTIONS(3622), 1, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(3626), 1, + ACTIONS(2533), 1, anon_sym_contains, - ACTIONS(3630), 1, - sym__separator_first, - STATE(554), 1, - sym__syn_hl_pattern, - STATE(1068), 1, + STATE(1062), 1, aux_sym__syn_match_repeat1, - STATE(1151), 1, + STATE(1107), 1, sym__syn_arguments_match, - STATE(1152), 1, + STATE(1122), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3624), 2, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3618), 5, + ACTIONS(2523), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3628), 5, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51649] = 11, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(1066), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + [51793] = 9, + ACTIONS(3531), 1, + anon_sym_BSLASH, + ACTIONS(3535), 1, + anon_sym_LBRACK, + ACTIONS(3537), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3307), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2534), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51694] = 11, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(1066), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + STATE(1006), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1034), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3539), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3320), 5, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3322), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [51835] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3540), 2, + ACTIONS(3326), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3324), 15, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [51865] = 9, + ACTIONS(3550), 1, + anon_sym_BSLASH, + ACTIONS(3554), 1, + anon_sym_LBRACK, + ACTIONS(3556), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(989), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1053), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3320), 3, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3558), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3322), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2534), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51739] = 11, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(1066), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [51907] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2497), 2, + ACTIONS(3283), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3281), 19, sym__newline_or_pipe, sym_comment, - ACTIONS(2530), 2, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2524), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2534), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51784] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3634), 5, - aux_sym__bang_filter_command_argument_token3, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3632), 15, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [51813] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [51937] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3638), 5, - aux_sym__bang_filter_command_argument_token3, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3636), 15, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BANG2, - sym_float_literal, + ACTIONS(3326), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3324), 13, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [51842] = 11, - ACTIONS(2526), 1, - anon_sym_cchar, - ACTIONS(2528), 1, - anon_sym_contained, - ACTIONS(2532), 1, - anon_sym_contains, - STATE(1066), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [51967] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2530), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3315), 2, + ACTIONS(3114), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(2524), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2534), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51887] = 5, - ACTIONS(2518), 1, - anon_sym_contained, - ACTIONS(3640), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_hl_groups_repeat1, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3109), 13, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [51997] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 17, + ACTIONS(3383), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3381), 15, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [52027] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3306), 2, anon_sym_conceal, + anon_sym_contained, + ACTIONS(3304), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -113375,236 +113531,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51920] = 11, - ACTIONS(3646), 1, - anon_sym_cchar, - ACTIONS(3649), 1, - anon_sym_contained, - ACTIONS(3655), 1, - anon_sym_contains, - STATE(1066), 1, - aux_sym__syn_match_repeat1, - STATE(1121), 1, - sym__syn_arguments_keyword, - STATE(1129), 1, - sym__syn_arguments_match, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52057] = 9, + ACTIONS(3562), 1, + anon_sym_BSLASH, + ACTIONS(3565), 1, + anon_sym_LBRACK, + ACTIONS(3568), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3593), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3652), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3643), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3658), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51965] = 12, - ACTIONS(3620), 1, - anon_sym_cchar, - ACTIONS(3622), 1, - anon_sym_contained, - ACTIONS(3626), 1, - anon_sym_contains, - ACTIONS(3661), 1, - sym__separator_first, - STATE(607), 1, - sym__syn_hl_pattern, - STATE(1076), 1, - aux_sym__syn_match_repeat1, - STATE(1151), 1, - sym__syn_arguments_match, - STATE(1152), 1, - sym__syn_arguments_keyword, + STATE(1006), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1034), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3571), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3337), 5, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3342), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [52099] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3624), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3618), 5, + ACTIONS(3287), 2, anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3628), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52012] = 12, - ACTIONS(3620), 1, - anon_sym_cchar, - ACTIONS(3622), 1, anon_sym_contained, - ACTIONS(3626), 1, - anon_sym_contains, - ACTIONS(3630), 1, - sym__separator_first, - STATE(560), 1, - sym__syn_hl_pattern, - STATE(1076), 1, - aux_sym__syn_match_repeat1, - STATE(1151), 1, - sym__syn_arguments_match, - STATE(1152), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3624), 2, + ACTIONS(3285), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3618), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3628), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52059] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52129] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3665), 5, - aux_sym__bang_filter_command_argument_token3, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3663), 15, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [52088] = 12, - ACTIONS(3620), 1, + ACTIONS(1305), 2, + anon_sym_EQ, + sym_command_name, + ACTIONS(1303), 19, + anon_sym_LBRACE2, + aux_sym_identifier_token2, + anon_sym_EQ_LT_LT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_DASH_GT, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [52159] = 11, + ACTIONS(2527), 1, anon_sym_cchar, - ACTIONS(3622), 1, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(3626), 1, + ACTIONS(2533), 1, anon_sym_contains, - ACTIONS(3661), 1, - sym__separator_first, - STATE(603), 1, - sym__syn_hl_pattern, - STATE(1067), 1, + STATE(1062), 1, aux_sym__syn_match_repeat1, - STATE(1151), 1, + STATE(1107), 1, sym__syn_arguments_match, - STATE(1152), 1, + STATE(1122), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3624), 2, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3618), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3628), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52135] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3412), 5, - aux_sym__bang_filter_command_argument_token3, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3407), 15, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [52164] = 5, - ACTIONS(2542), 1, - anon_sym_contained, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2540), 17, + ACTIONS(3574), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52197] = 3, - ACTIONS(2518), 1, - anon_sym_contained, + [52205] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 19, + ACTIONS(3077), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3075), 19, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, - anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -113618,24 +113680,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [52226] = 5, - ACTIONS(3616), 1, - sym_hl_group, - STATE(1099), 1, - sym_hl_groups, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52235] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3164), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3166), 15, + ACTIONS(3181), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3179), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -113648,21 +113707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52259] = 5, - ACTIONS(2550), 1, - anon_sym_contained, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(1072), 1, - aux_sym_hl_groups_repeat1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52265] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2548), 17, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3222), 2, anon_sym_conceal, + anon_sym_contained, + ACTIONS(3220), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -113676,54 +113734,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52292] = 11, - ACTIONS(3593), 1, - sym__separator_first, - ACTIONS(3672), 1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52295] = 11, + ACTIONS(2527), 1, anon_sym_cchar, - ACTIONS(3675), 1, + ACTIONS(2529), 1, anon_sym_contained, - ACTIONS(3681), 1, + ACTIONS(2533), 1, anon_sym_contains, - STATE(1076), 1, + STATE(1062), 1, aux_sym__syn_match_repeat1, - STATE(1151), 1, + STATE(1107), 1, sym__syn_arguments_match, - STATE(1152), 1, + STATE(1122), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3678), 2, + ACTIONS(2531), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3669), 5, + ACTIONS(3439), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3684), 5, + ACTIONS(2535), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52336] = 5, - ACTIONS(3687), 1, - sym_hl_group, - STATE(1134), 1, - sym_hl_groups, + [52341] = 5, + ACTIONS(3185), 1, + anon_sym_COMMA, + STATE(868), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3260), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3262), 15, + ACTIONS(3576), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3578), 17, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -113736,121 +113798,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52368] = 13, - ACTIONS(3689), 1, - anon_sym_a_COLON, - ACTIONS(3691), 1, - anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_identifier_token1, - ACTIONS(3697), 1, - anon_sym_LBRACK, - ACTIONS(3699), 1, - sym__scope_dict, - ACTIONS(3701), 1, - sym_scope, - STATE(1385), 1, - sym__curly_braces_name_expression, - STATE(1738), 1, - sym_identifier, - STATE(2616), 1, - sym__const_assignment, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3695), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - STATE(1399), 3, - sym_scope_dict, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - STATE(2527), 4, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym_list_assignment, - [52416] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3705), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3703), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [52444] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52375] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 6, + ACTIONS(3114), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3707), 13, + ACTIONS(3109), 15, anon_sym_COLON, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [52472] = 3, + [52405] = 5, + ACTIONS(2615), 1, + anon_sym_contained, + ACTIONS(3580), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 8, + ACTIONS(2613), 18, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3703), 11, - anon_sym_COLON, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + anon_sym_add, + anon_sym_remove, + [52439] = 9, + ACTIONS(3471), 1, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, + ACTIONS(3475), 1, anon_sym_LBRACK, + ACTIONS(3477), 1, aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(998), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1051), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3479), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [52500] = 3, + ACTIONS(3320), 5, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3322), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + [52481] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 8, + ACTIONS(3383), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -113859,50 +113904,45 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3707), 11, + ACTIONS(3381), 13, anon_sym_COLON, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [52528] = 5, - ACTIONS(3711), 1, - anon_sym_LT, - ACTIONS(3716), 1, - aux_sym__hl_term_list_token1, + [52511] = 9, + ACTIONS(3583), 1, + anon_sym_BSLASH, + ACTIONS(3586), 1, + anon_sym_LBRACK, + ACTIONS(3589), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1083), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(3714), 15, + STATE(991), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1047), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3337), 3, + anon_sym_COLON, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_cterm, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_gui, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [52560] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3709), 8, + ACTIONS(3592), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3342), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -113911,83 +113951,73 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3707), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [52588] = 3, + [52553] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 6, + ACTIONS(3383), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3703), 13, + anon_sym_QMARK2, + ACTIONS(3381), 15, anon_sym_COLON, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [52616] = 3, + [52583] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 6, + ACTIONS(3114), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3707), 13, + ACTIONS(3109), 13, anon_sym_COLON, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [52644] = 5, - ACTIONS(3687), 1, - sym_hl_group, - STATE(1139), 1, - sym_hl_groups, + [52613] = 5, + ACTIONS(3185), 1, + anon_sym_COMMA, + STATE(1042), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3164), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3166), 15, + ACTIONS(3595), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3597), 17, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -114000,17 +114030,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52676] = 3, - ACTIONS(2518), 1, - anon_sym_contained, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52647] = 9, + ACTIONS(3599), 1, + anon_sym_BSLASH, + ACTIONS(3602), 1, + anon_sym_LBRACK, + ACTIONS(3605), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 18, - anon_sym_COMMA, + STATE(998), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1051), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3608), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3337), 5, + anon_sym_COLON, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(3342), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + [52689] = 5, + ACTIONS(2567), 1, + anon_sym_contained, + ACTIONS(3611), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2565), 18, + sym__newline_or_pipe, + sym_comment, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -114025,18 +114094,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52704] = 3, - ACTIONS(3196), 1, - anon_sym_contained, + anon_sym_add, + anon_sym_remove, + [52723] = 9, + ACTIONS(3613), 1, + anon_sym_BSLASH, + ACTIONS(3616), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3194), 18, - anon_sym_COMMA, + STATE(989), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1053), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3337), 3, + anon_sym_COLON, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3622), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3342), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + [52765] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3314), 2, anon_sym_conceal, + anon_sym_contained, + ACTIONS(3312), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -114050,19 +114152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52732] = 3, - ACTIONS(3200), 1, - anon_sym_contained, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [52795] = 4, + ACTIONS(3153), 1, + sym_hl_group, + STATE(946), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3198), 18, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3230), 19, + anon_sym_start, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -114075,42 +114181,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52760] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + [52827] = 17, + ACTIONS(3081), 1, + anon_sym_term, + ACTIONS(3083), 1, + anon_sym_cterm, + ACTIONS(3089), 1, + anon_sym_gui, + ACTIONS(3093), 1, + anon_sym_font, + ACTIONS(3095), 1, + anon_sym_blend, + STATE(1241), 1, + sym__hl_key_gui, + STATE(1267), 1, + sym__hl_key_blend, + STATE(1272), 1, + sym__hl_key_font, + STATE(1273), 1, + sym__hl_key_gui_color, + STATE(1288), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1289), 1, + sym__hl_key_start_stop, + STATE(1293), 1, + sym__hl_key_cterm, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3703), 13, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [52788] = 5, - ACTIONS(2831), 1, + ACTIONS(3085), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3087), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(964), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3091), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [52885] = 17, + ACTIONS(3021), 1, + anon_sym_term, + ACTIONS(3023), 1, + anon_sym_cterm, + ACTIONS(3029), 1, + anon_sym_gui, + ACTIONS(3033), 1, + anon_sym_font, + ACTIONS(3035), 1, + anon_sym_blend, + STATE(1212), 1, + sym__hl_key_blend, + STATE(1213), 1, + sym__hl_key_font, + STATE(1214), 1, + sym__hl_key_gui_color, + STATE(1216), 1, + sym__hl_key_gui, + STATE(1227), 1, + sym__hl_key_cterm, + STATE(1231), 1, + sym__hl_key_start_stop, + STATE(1236), 1, + sym__hl_key_ctermfg_ctermbg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3025), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3027), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(936), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3031), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [52943] = 5, + ACTIONS(2555), 1, anon_sym_contained, - ACTIONS(3719), 1, + ACTIONS(3611), 1, anon_sym_COMMA, - STATE(1092), 1, - aux_sym__syn_match_repeat2, + STATE(1052), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2829), 16, + ACTIONS(2553), 18, sym__newline_or_pipe, sym_comment, anon_sym_conceal, @@ -114127,80 +114293,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52820] = 5, - ACTIONS(3722), 1, - anon_sym_LT, - ACTIONS(3726), 1, - aux_sym__hl_term_list_token1, + anon_sym_add, + anon_sym_remove, + [52977] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1083), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(3724), 15, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_cterm, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_gui, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [52852] = 12, - ACTIONS(3728), 1, + ACTIONS(3114), 6, + sym__normal, + sym__source, + sym__global, + sym__call, anon_sym_BANG, - ACTIONS(3732), 1, - sym_command_name, - ACTIONS(3734), 1, - anon_sym_DASHnargs, - ACTIONS(3736), 1, - anon_sym_DASHcomplete, - ACTIONS(3738), 1, - anon_sym_DASHrange, - ACTIONS(3740), 1, - anon_sym_DASHcount, - ACTIONS(3742), 1, - anon_sym_DASHaddr, - STATE(1171), 1, - sym_bang, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1345), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(3730), 3, + anon_sym_QMARK2, + ACTIONS(3109), 15, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(3744), 5, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [52897] = 5, - ACTIONS(2542), 1, - anon_sym_contained, - ACTIONS(3746), 1, - anon_sym_COMMA, - STATE(1104), 1, - aux_sym_hl_groups_repeat1, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [53007] = 4, + ACTIONS(3153), 1, + sym_hl_group, + STATE(944), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2540), 15, - sym__separator_first, + ACTIONS(3291), 19, + anon_sym_start, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -114213,17 +114347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52928] = 3, - ACTIONS(3196), 1, - anon_sym_contained, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + [53039] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3194), 17, + ACTIONS(3226), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3224), 19, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, - anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -114237,237 +114373,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52955] = 3, - ACTIONS(3200), 1, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [53069] = 11, + ACTIONS(3630), 1, + anon_sym_cchar, + ACTIONS(3633), 1, anon_sym_contained, + ACTIONS(3639), 1, + anon_sym_contains, + STATE(1062), 1, + aux_sym__syn_match_repeat1, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3198), 17, - sym__newline_or_pipe, - sym_comment, - anon_sym_COMMA, - anon_sym_conceal, - anon_sym_cchar, + ACTIONS(3636), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3625), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3627), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3642), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52982] = 6, - ACTIONS(3748), 1, - anon_sym_LT, - ACTIONS(3750), 1, - aux_sym__hl_term_list_token1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3752), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1109), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(3724), 12, - anon_sym_term, - anon_sym_cterm, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_gui, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [53015] = 3, - ACTIONS(3040), 1, + [53115] = 11, + ACTIONS(2527), 1, + anon_sym_cchar, + ACTIONS(2529), 1, anon_sym_contained, + ACTIONS(2533), 1, + anon_sym_contains, + STATE(1062), 1, + aux_sym__syn_match_repeat1, + STATE(1107), 1, + sym__syn_arguments_match, + STATE(1122), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3038), 17, + ACTIONS(2531), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3645), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(2525), 5, anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2535), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53161] = 11, + ACTIONS(2582), 1, anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2586), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3421), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2580), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2590), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53042] = 5, - ACTIONS(3164), 1, + [53206] = 12, + ACTIONS(3649), 1, + anon_sym_cchar, + ACTIONS(3651), 1, + anon_sym_contained, + ACTIONS(3655), 1, + anon_sym_contains, + ACTIONS(3659), 1, sym__separator_first, - ACTIONS(3754), 1, - sym_hl_group, - STATE(1175), 1, - sym_hl_groups, + STATE(607), 1, + sym__syn_hl_pattern, + STATE(1066), 1, + aux_sym__syn_match_repeat1, + STATE(1170), 1, + sym__syn_arguments_match, + STATE(1171), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3166), 15, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, + ACTIONS(3653), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3647), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3657), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53073] = 8, - ACTIONS(3758), 1, - aux_sym_argument_token2, - ACTIONS(3760), 1, - anon_sym_SLASH, - ACTIONS(3762), 1, - anon_sym_BSLASH2, - ACTIONS(3764), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1323), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1639), 3, - sym__plus_cmd_number, - sym__plus_cmd_command, - sym__plus_cmd_pattern, - ACTIONS(3756), 10, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [53110] = 13, - ACTIONS(3697), 1, - anon_sym_LBRACK, - ACTIONS(3701), 1, - sym_scope, - ACTIONS(3766), 1, - anon_sym_a_COLON, - ACTIONS(3768), 1, - anon_sym_LBRACE, - ACTIONS(3770), 1, - aux_sym_identifier_token1, - ACTIONS(3772), 1, - sym__scope_dict, - STATE(1509), 1, - sym__curly_braces_name_expression, - STATE(1840), 1, - sym_identifier, - STATE(2709), 1, - sym__const_assignment, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3695), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1536), 3, - sym_scope_dict, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - STATE(2321), 4, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym_list_assignment, - [53157] = 13, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3776), 1, - anon_sym_BANG, - ACTIONS(3778), 1, - anon_sym_PLUS, - ACTIONS(3782), 1, - anon_sym_POUND, - ACTIONS(3788), 1, - anon_sym_PLUS_PLUS, - STATE(1145), 1, - sym_bang, - STATE(2438), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1156), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1351), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(3780), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [53204] = 5, - ACTIONS(2518), 1, + [53253] = 12, + ACTIONS(3649), 1, + anon_sym_cchar, + ACTIONS(3651), 1, anon_sym_contained, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1104), 1, - aux_sym_hl_groups_repeat1, + ACTIONS(3655), 1, + anon_sym_contains, + ACTIONS(3659), 1, + sym__separator_first, + STATE(605), 1, + sym__syn_hl_pattern, + STATE(1096), 1, + aux_sym__syn_match_repeat1, + STATE(1170), 1, + sym__syn_arguments_match, + STATE(1171), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 15, - sym__separator_first, - anon_sym_conceal, - anon_sym_cchar, + ACTIONS(3653), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3647), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3657), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53235] = 3, - ACTIONS(2963), 1, + [53300] = 5, + ACTIONS(2615), 1, anon_sym_contained, + ACTIONS(3661), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2961), 17, + ACTIONS(2613), 17, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -114485,42 +114579,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53262] = 3, - ACTIONS(3182), 1, + [53333] = 11, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3180), 17, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_conceal, - anon_sym_cchar, + ACTIONS(2586), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3645), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2580), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2590), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53289] = 5, - ACTIONS(2550), 1, + [53378] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3666), 5, + aux_sym__bang_filter_command_argument_token3, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3664), 15, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LT, + anon_sym_BSLASH2, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [53407] = 3, + ACTIONS(2615), 1, anon_sym_contained, - ACTIONS(3746), 1, - anon_sym_COMMA, - STATE(1095), 1, - aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2548), 15, - sym__separator_first, + ACTIONS(2613), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -114535,71 +114663,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53320] = 5, - ACTIONS(3260), 1, - sym__separator_first, - ACTIONS(3754), 1, - sym_hl_group, - STATE(1153), 1, - sym_hl_groups, + anon_sym_add, + anon_sym_remove, + [53436] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3262), 15, - anon_sym_conceal, + ACTIONS(3670), 5, + aux_sym__bang_filter_command_argument_token3, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3668), 15, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LT, + anon_sym_BSLASH2, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [53465] = 11, + ACTIONS(2582), 1, anon_sym_cchar, + ACTIONS(2584), 1, anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2586), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3574), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2580), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2590), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53351] = 6, - ACTIONS(3793), 1, - anon_sym_LT, - ACTIONS(3796), 1, - aux_sym__hl_term_list_token1, + [53510] = 11, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3799), 2, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3439), 2, sym__newline_or_pipe, sym_comment, - STATE(1109), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(3714), 12, - anon_sym_term, - anon_sym_cterm, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_gui, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [53384] = 3, - ACTIONS(3128), 1, - anon_sym_contained, + ACTIONS(2580), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2590), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53555] = 5, + ACTIONS(3672), 1, + sym_hl_group, + STATE(1117), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3126), 17, + ACTIONS(3289), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(3291), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -114612,42 +114787,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53411] = 3, - ACTIONS(3803), 1, + [53588] = 12, + ACTIONS(3649), 1, + anon_sym_cchar, + ACTIONS(3651), 1, anon_sym_contained, + ACTIONS(3655), 1, + anon_sym_contains, + ACTIONS(3674), 1, + sym__separator_first, + STATE(620), 1, + sym__syn_hl_pattern, + STATE(1096), 1, + aux_sym__syn_match_repeat1, + STATE(1170), 1, + sym__syn_arguments_match, + STATE(1171), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3801), 17, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_conceal, - anon_sym_cchar, + ACTIONS(3653), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3647), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3657), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53438] = 3, - ACTIONS(2939), 1, - anon_sym_contained, + [53635] = 5, + ACTIONS(3672), 1, + sym_hl_group, + STATE(1106), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2937), 17, + ACTIONS(3151), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(3155), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -114660,114 +114850,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53465] = 12, - ACTIONS(3734), 1, - anon_sym_DASHnargs, - ACTIONS(3736), 1, - anon_sym_DASHcomplete, - ACTIONS(3738), 1, - anon_sym_DASHrange, - ACTIONS(3740), 1, - anon_sym_DASHcount, - ACTIONS(3742), 1, - anon_sym_DASHaddr, - ACTIONS(3805), 1, - anon_sym_BANG, - ACTIONS(3807), 1, - sym_command_name, - STATE(1214), 1, - sym_bang, + [53668] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3730), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1382), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(3744), 5, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [53509] = 9, - ACTIONS(3809), 1, - aux_sym_argument_token2, - ACTIONS(3811), 1, - anon_sym_SLASH, - ACTIONS(3813), 1, - anon_sym_BSLASH2, - ACTIONS(3815), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1391), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, + ACTIONS(3678), 5, + aux_sym__bang_filter_command_argument_token3, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3676), 15, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LT, + anon_sym_BSLASH2, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [53697] = 11, + ACTIONS(3683), 1, + anon_sym_cchar, + ACTIONS(3686), 1, + anon_sym_contained, + ACTIONS(3692), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, + ACTIONS(3), 2, + sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3817), 2, + ACTIONS(3625), 2, sym__newline_or_pipe, sym_comment, - STATE(1751), 3, - sym__plus_cmd_number, - sym__plus_cmd_command, - sym__plus_cmd_pattern, - ACTIONS(3756), 7, - anon_sym_BSLASH, + ACTIONS(3689), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3680), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3695), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53742] = 5, + ACTIONS(2555), 1, + anon_sym_contained, + ACTIONS(3698), 1, + anon_sym_COMMA, + STATE(1085), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2553), 17, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53775] = 11, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2523), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2580), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2590), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53820] = 5, + ACTIONS(3009), 1, + anon_sym_contained, + ACTIONS(3700), 1, + anon_sym_COMMA, + STATE(1081), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3007), 17, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53853] = 12, + ACTIONS(3649), 1, + anon_sym_cchar, + ACTIONS(3651), 1, + anon_sym_contained, + ACTIONS(3655), 1, + anon_sym_contains, + ACTIONS(3674), 1, + sym__separator_first, + STATE(619), 1, + sym__syn_hl_pattern, + STATE(1075), 1, + aux_sym__syn_match_repeat1, + STATE(1170), 1, + sym__syn_arguments_match, + STATE(1171), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3653), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3647), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3657), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53900] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3486), 5, + aux_sym__bang_filter_command_argument_token3, + aux_sym_identifier_token1, anon_sym_PLUS, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [53547] = 11, - ACTIONS(3819), 1, - anon_sym_BSLASH, - ACTIONS(3821), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3823), 1, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3481), 15, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LT, + anon_sym_BSLASH2, + anon_sym_BANG2, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(3825), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1936), 1, - aux_sym__pattern_branch_repeat1, + sym_register, + anon_sym_POUND_LBRACE, + [53929] = 11, + ACTIONS(2582), 1, + anon_sym_cchar, + ACTIONS(2584), 1, + anon_sym_contained, + ACTIONS(2588), 1, + anon_sym_contains, + STATE(1078), 1, + aux_sym__syn_match_repeat1, + STATE(1136), 1, + sym__syn_arguments_keyword, + STATE(1146), 1, + sym__syn_arguments_match, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2951), 2, + ACTIONS(2586), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3560), 2, sym__newline_or_pipe, sym_comment, - STATE(1116), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1170), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(2947), 3, + ACTIONS(2580), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2590), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [53974] = 5, + ACTIONS(2567), 1, + anon_sym_contained, + ACTIONS(3698), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2565), 17, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(3827), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [53589] = 5, - STATE(1393), 1, - sym_pattern_multi, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [54007] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2943), 2, + ACTIONS(3705), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(3829), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2941), 10, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3703), 11, + anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_LBRACK, @@ -114775,77 +115148,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [53619] = 3, + [54035] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3709), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3703), 9, + ACTIONS(3707), 13, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53645] = 12, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3831), 1, - anon_sym_BANG, - ACTIONS(3833), 1, - anon_sym_PLUS, - ACTIONS(3837), 1, - anon_sym_PLUS_PLUS, - STATE(1196), 1, - sym_bang, - STATE(2432), 1, - sym_filename, + [54063] = 13, + ACTIONS(3711), 1, + anon_sym_a_COLON, + ACTIONS(3713), 1, + anon_sym_LBRACE, + ACTIONS(3715), 1, + aux_sym_identifier_token1, + ACTIONS(3719), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + sym__scope_dict, + ACTIONS(3723), 1, + sym_scope, + STATE(1364), 1, + sym__curly_braces_name_expression, + STATE(1773), 1, + sym_identifier, + STATE(2439), 1, + sym__const_assignment, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1195), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1493), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(3835), 3, + ACTIONS(3717), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [53689] = 3, + STATE(1439), 3, + sym_scope_dict, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + STATE(2537), 4, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym_list_assignment, + [54111] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 6, + ACTIONS(3709), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3703), 11, + ACTIONS(3707), 13, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, @@ -114855,183 +115233,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53715] = 3, + [54139] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3705), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_SLASH2, - ACTIONS(3707), 9, + ACTIONS(3703), 13, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53741] = 3, - ACTIONS(2939), 1, - anon_sym_contained, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2937), 16, - sym__newline_or_pipe, - sym_comment, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [53767] = 8, - ACTIONS(3839), 1, - aux_sym_argument_token2, - ACTIONS(3841), 1, - anon_sym_SLASH, - ACTIONS(3843), 1, - anon_sym_BSLASH2, - ACTIONS(3845), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1402), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1768), 3, - sym__plus_cmd_number, - sym__plus_cmd_command, - sym__plus_cmd_pattern, - ACTIONS(3756), 9, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [53803] = 5, - ACTIONS(3847), 1, - anon_sym_COMMA, - STATE(1128), 1, - aux_sym__hl_attr_list_repeat1, + [54167] = 5, + ACTIONS(3725), 1, + anon_sym_LT, + ACTIONS(3730), 1, + aux_sym__hl_term_list_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3851), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3849), 13, + STATE(1091), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(3728), 15, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_term, + anon_sym_cterm, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, anon_sym_ctermbg, + anon_sym_gui, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, anon_sym_font, anon_sym_blend, - [53833] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3709), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3707), 9, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [53859] = 3, + [54199] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3705), 6, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, anon_sym_QMARK2, - ACTIONS(3703), 9, + ACTIONS(3703), 13, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53885] = 3, + [54227] = 3, + ACTIONS(3197), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_QMARK2, - ACTIONS(3707), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(3195), 18, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [53911] = 3, - ACTIONS(2518), 1, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [54255] = 3, + ACTIONS(2615), 1, anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 16, - sym__separator_first, + ACTIONS(2613), 18, anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -115046,42 +115360,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53937] = 5, - ACTIONS(3847), 1, - anon_sym_COMMA, - STATE(1135), 1, - aux_sym__hl_attr_list_repeat1, + [54283] = 5, + ACTIONS(3733), 1, + anon_sym_LT, + ACTIONS(3737), 1, + aux_sym__hl_term_list_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3855), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3853), 13, + STATE(1091), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(3735), 15, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_term, + anon_sym_cterm, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, anon_sym_ctermbg, + anon_sym_gui, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, anon_sym_font, anon_sym_blend, - [53967] = 3, - ACTIONS(3803), 1, + [54315] = 11, + ACTIONS(3625), 1, + sym__separator_first, + ACTIONS(3742), 1, + anon_sym_cchar, + ACTIONS(3745), 1, anon_sym_contained, + ACTIONS(3751), 1, + anon_sym_contains, + STATE(1096), 1, + aux_sym__syn_match_repeat1, + STATE(1170), 1, + sym__syn_arguments_match, + STATE(1171), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3748), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3739), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3754), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [54359] = 5, + ACTIONS(3757), 1, + sym_hl_group, + STATE(1138), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3801), 16, + ACTIONS(3289), 2, sym__newline_or_pipe, sym_comment, + ACTIONS(3291), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -115094,126 +115447,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53993] = 4, - STATE(1418), 1, - sym_pattern_multi, + [54391] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3857), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2941), 12, + ACTIONS(3709), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3707), 11, + anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [54021] = 2, + [54419] = 5, + ACTIONS(3757), 1, + sym_hl_group, + STATE(1152), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3634), 17, - anon_sym_LT, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_cterm, - aux_sym__hl_term_list_token1, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_gui, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [54045] = 13, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3861), 1, - anon_sym_BANG, - ACTIONS(3863), 1, - anon_sym_PLUS, - ACTIONS(3865), 1, - anon_sym_POUND, - ACTIONS(3871), 1, - anon_sym_PLUS_PLUS, - STATE(1179), 1, - sym_bang, - STATE(2687), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3780), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1180), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1408), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [54091] = 10, - ACTIONS(3873), 1, - anon_sym_BSLASH, - ACTIONS(3875), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3877), 1, - anon_sym_LBRACK, - ACTIONS(3879), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1941), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1130), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1148), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3881), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(2947), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [54131] = 3, - ACTIONS(3182), 1, - anon_sym_contained, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3180), 16, + ACTIONS(3151), 2, sym__newline_or_pipe, sym_comment, + ACTIONS(3155), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -115226,116 +115499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54157] = 5, - ACTIONS(3883), 1, - anon_sym_COMMA, - STATE(1135), 1, - aux_sym__hl_attr_list_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3888), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3886), 13, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [54187] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(721), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(719), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [54213] = 6, - ACTIONS(3890), 1, - anon_sym_BSLASH, - ACTIONS(3893), 1, - anon_sym_LBRACK, - ACTIONS(3896), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1137), 1, - aux_sym__pattern_ordinary_atom, + [54451] = 3, + ACTIONS(3177), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3019), 13, - anon_sym_BSLASH_AMP, + ACTIONS(3175), 18, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [54245] = 7, - ACTIONS(3899), 1, - anon_sym_BSLASH, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1138), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3024), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3019), 11, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [54279] = 3, - ACTIONS(3040), 1, - anon_sym_contained, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3038), 16, - sym__newline_or_pipe, - sym_comment, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -115350,13 +115524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54305] = 3, - ACTIONS(3128), 1, + [54479] = 5, + ACTIONS(3009), 1, anon_sym_contained, + ACTIONS(3759), 1, + anon_sym_COMMA, + STATE(1101), 1, + aux_sym__syn_match_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3126), 16, + ACTIONS(3007), 16, sym__newline_or_pipe, sym_comment, anon_sym_conceal, @@ -115373,61 +115551,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54331] = 3, + [54511] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 6, + ACTIONS(3709), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, sym__call, anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3703), 11, + anon_sym_QMARK2, + ACTIONS(3707), 11, anon_sym_COLON, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [54357] = 3, + [54539] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3910), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3908), 13, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_BANG2, - sym_float_literal, + ACTIONS(3705), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3703), 11, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [54383] = 3, - ACTIONS(2963), 1, - anon_sym_contained, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [54567] = 6, + ACTIONS(3762), 1, + anon_sym_LT, + ACTIONS(3764), 1, + aux_sym__hl_term_list_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2961), 16, + ACTIONS(3766), 2, sym__newline_or_pipe, sym_comment, + STATE(1110), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(3735), 12, + anon_sym_term, + anon_sym_cterm, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_gui, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [54600] = 5, + ACTIONS(2567), 1, + anon_sym_contained, + ACTIONS(3768), 1, + anon_sym_COMMA, + STATE(1116), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2565), 15, + sym__separator_first, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -115442,67 +115654,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54409] = 3, + [54631] = 3, + ACTIONS(3226), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 6, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_BANG, - anon_sym_SLASH2, - ACTIONS(3707), 11, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(3224), 17, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [54435] = 11, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3778), 1, - anon_sym_PLUS, - ACTIONS(3788), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3914), 1, - anon_sym_POUND, - STATE(2345), 1, - sym_filename, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [54658] = 3, + ACTIONS(3772), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1147), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1338), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(3912), 3, + ACTIONS(3770), 17, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [54476] = 3, - ACTIONS(3128), 1, - anon_sym_contained, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3126), 15, - sym__separator_first, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -115517,16 +115702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54501] = 11, + [54685] = 13, ACTIONS(3774), 1, anon_sym_BSLASH, + ACTIONS(3776), 1, + anon_sym_BANG, ACTIONS(3778), 1, anon_sym_PLUS, + ACTIONS(3782), 1, + anon_sym_POUND, ACTIONS(3788), 1, anon_sym_PLUS_PLUS, - ACTIONS(3918), 1, - anon_sym_POUND, - STATE(2384), 1, + STATE(1181), 1, + sym_bang, + STATE(2620), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -115537,93 +115726,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1326), 2, + STATE(1182), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1372), 2, + STATE(1332), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(3916), 3, + ACTIONS(3780), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [54542] = 8, - ACTIONS(3920), 1, - anon_sym_BSLASH, - ACTIONS(3923), 1, + [54732] = 13, + ACTIONS(3719), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1130), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1148), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3929), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 6, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [54577] = 2, + ACTIONS(3723), 1, + sym_scope, + ACTIONS(3790), 1, + anon_sym_a_COLON, + ACTIONS(3792), 1, + anon_sym_LBRACE, + ACTIONS(3794), 1, + aux_sym_identifier_token1, + ACTIONS(3796), 1, + sym__scope_dict, + STATE(1525), 1, + sym__curly_braces_name_expression, + STATE(1803), 1, + sym_identifier, + STATE(2724), 1, + sym__const_assignment, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3019), 16, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [54600] = 3, + ACTIONS(3717), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1582), 3, + sym_scope_dict, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + STATE(2327), 4, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym_list_assignment, + [54779] = 6, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3801), 1, + aux_sym__hl_term_list_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3888), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3886), 14, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3804), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1110), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(3728), 12, anon_sym_term, + anon_sym_cterm, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, anon_sym_ctermbg, + anon_sym_gui, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, anon_sym_font, anon_sym_blend, - [54625] = 3, - ACTIONS(3803), 1, + [54812] = 5, + ACTIONS(2555), 1, anon_sym_contained, + ACTIONS(3768), 1, + anon_sym_COMMA, + STATE(1105), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3801), 15, + ACTIONS(2553), 15, sym__separator_first, anon_sym_conceal, anon_sym_cchar, @@ -115639,16 +115823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54650] = 3, - ACTIONS(2939), 1, - anon_sym_contained, + [54843] = 5, + ACTIONS(3151), 1, + sym__separator_first, + ACTIONS(3806), 1, + sym_hl_group, + STATE(1160), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2937), 15, - sym__separator_first, + ACTIONS(3155), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -115661,16 +115849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54675] = 3, - ACTIONS(3182), 1, - anon_sym_contained, + [54874] = 5, + ACTIONS(3289), 1, + sym__separator_first, + ACTIONS(3806), 1, + sym_hl_group, + STATE(1158), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3180), 15, - sym__separator_first, + ACTIONS(3291), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -115683,37 +115875,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54700] = 5, - ACTIONS(3932), 1, - anon_sym_COMMA, - STATE(1158), 1, - aux_sym__hl_attr_list_repeat1, + [54905] = 8, + ACTIONS(3810), 1, + aux_sym_argument_token2, + ACTIONS(3812), 1, + anon_sym_SLASH, + ACTIONS(3814), 1, + anon_sym_BSLASH2, + ACTIONS(3816), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1349), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3855), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3853), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [54729] = 3, - ACTIONS(2963), 1, + STATE(1654), 3, + sym__plus_cmd_number, + sym__plus_cmd_command, + sym__plus_cmd_pattern, + ACTIONS(3808), 10, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [54942] = 3, + ACTIONS(3107), 1, + anon_sym_contained, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3105), 17, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [54969] = 5, + ACTIONS(2615), 1, anon_sym_contained, + ACTIONS(3818), 1, + anon_sym_COMMA, + STATE(1116), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2961), 15, + ACTIONS(2613), 15, sym__separator_first, anon_sym_conceal, anon_sym_cchar, @@ -115729,517 +115954,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54754] = 11, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3778), 1, - anon_sym_PLUS, - ACTIONS(3788), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3914), 1, - anon_sym_POUND, - STATE(2345), 1, - sym_filename, + [55000] = 3, + ACTIONS(3306), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1326), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1338), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(3912), 3, + ACTIONS(3304), 17, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [54795] = 12, - ACTIONS(3873), 1, - anon_sym_BSLASH, - ACTIONS(3877), 1, - anon_sym_LBRACK, - ACTIONS(3879), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1678), 1, - aux_sym__syn_sync_repeat1, - STATE(1828), 1, - sym__syn_sync_lines, - STATE(1872), 1, - sym_pattern, - STATE(1960), 1, - sym__pattern_branch, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3934), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1130), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1133), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3881), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [54838] = 5, - ACTIONS(3936), 1, - anon_sym_COMMA, - STATE(1158), 1, - aux_sym__hl_attr_list_repeat1, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55027] = 3, + ACTIONS(3197), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3888), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3886), 12, + ACTIONS(3195), 17, sym__newline_or_pipe, sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [54867] = 12, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3939), 1, - anon_sym_BANG, - ACTIONS(3941), 1, - anon_sym_PLUS, - ACTIONS(3943), 1, - anon_sym_PLUS_PLUS, - STATE(1301), 1, - sym_bang, - STATE(2645), 1, - sym_filename, + anon_sym_COMMA, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55054] = 3, + ACTIONS(3177), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3835), 2, + ACTIONS(3175), 17, sym__newline_or_pipe, sym_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1285), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1591), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [54910] = 3, + anon_sym_COMMA, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55081] = 12, + ACTIONS(3821), 1, + anon_sym_BANG, + ACTIONS(3825), 1, + sym_command_name, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + STATE(1156), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3019), 14, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + STATE(1367), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3823), 3, anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [54935] = 9, - ACTIONS(3945), 1, - aux_sym_argument_token2, - ACTIONS(3947), 1, - anon_sym_SLASH, - ACTIONS(3949), 1, - anon_sym_BSLASH2, - ACTIONS(3951), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1554), 1, - aux_sym__plus_cmd_arg, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [55126] = 3, + ACTIONS(3283), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3817), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1839), 3, - sym__plus_cmd_number, - sym__plus_cmd_command, - sym__plus_cmd_pattern, - ACTIONS(3756), 6, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [54972] = 5, - ACTIONS(3932), 1, - anon_sym_COMMA, - STATE(1154), 1, - aux_sym__hl_attr_list_repeat1, + ACTIONS(3281), 17, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55153] = 3, + ACTIONS(3287), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3851), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3849), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55001] = 12, - ACTIONS(3873), 1, + ACTIONS(3285), 17, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55180] = 10, + ACTIONS(3839), 1, anon_sym_BSLASH, - ACTIONS(3877), 1, + ACTIONS(3841), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3879), 1, + ACTIONS(3845), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1157), 1, - aux_sym__syn_sync_repeat1, - STATE(1828), 1, - sym__syn_sync_lines, STATE(1894), 1, - sym_pattern, - STATE(1960), 1, - sym__pattern_branch, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3934), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1130), 2, + STATE(1125), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1133), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3881), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55044] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3632), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3634), 14, - anon_sym_LT, - anon_sym_term, - anon_sym_cterm, - aux_sym__hl_term_list_token1, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_gui, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55069] = 12, - ACTIONS(3819), 1, - anon_sym_BSLASH, - ACTIONS(3823), 1, - anon_sym_LBRACK, - ACTIONS(3825), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1678), 1, - aux_sym__syn_sync_repeat1, - STATE(1828), 1, - sym__syn_sync_lines, - STATE(1944), 1, - sym__pattern_branch, - STATE(1953), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3934), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1115), 2, + STATE(1155), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1116), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3827), 3, + ACTIONS(3847), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55112] = 12, - ACTIONS(3819), 1, - anon_sym_BSLASH, - ACTIONS(3823), 1, - anon_sym_LBRACK, - ACTIONS(3825), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1165), 1, - aux_sym__syn_sync_repeat1, - STATE(1828), 1, - sym__syn_sync_lines, - STATE(1944), 1, - sym__pattern_branch, - STATE(2012), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3934), 2, + ACTIONS(3131), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_minlines, anon_sym_maxlines, - STATE(1115), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1116), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3827), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55155] = 9, - ACTIONS(3819), 1, + [55220] = 12, + ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(3823), 1, - anon_sym_LBRACK, - ACTIONS(3825), 1, - aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3849), 1, + anon_sym_BANG, + ACTIONS(3851), 1, + anon_sym_PLUS, + ACTIONS(3855), 1, + anon_sym_PLUS_PLUS, + STATE(1193), 1, + sym_bang, + STATE(2606), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1116), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1170), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3827), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 4, - anon_sym_BSLASH_AMP, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1190), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1521), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(3853), 3, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [55192] = 2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [55264] = 4, + STATE(1455), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3293), 16, + ACTIONS(3857), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3145), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, anon_sym_minlines, anon_sym_maxlines, - [55215] = 2, + [55292] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3309), 16, + ACTIONS(3709), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3707), 11, + anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [55238] = 9, - ACTIONS(3953), 1, - anon_sym_BSLASH, - ACTIONS(3956), 1, + [55318] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(721), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(719), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(3959), 1, - aux_sym__pattern_ordinary_atom_token2, + sym_register, + anon_sym_POUND_LBRACE, + [55344] = 9, + ACTIONS(3859), 1, + aux_sym_argument_token2, + ACTIONS(3861), 1, + anon_sym_SLASH, + ACTIONS(3863), 1, + anon_sym_BSLASH2, + ACTIONS(3865), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1483), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3331), 2, + ACTIONS(3867), 2, sym__newline_or_pipe, sym_comment, - STATE(1116), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1170), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3962), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 4, - anon_sym_BSLASH_AMP, + STATE(1734), 3, + sym__plus_cmd_number, + sym__plus_cmd_command, + sym__plus_cmd_pattern, + ACTIONS(3808), 7, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [55382] = 3, + ACTIONS(2615), 1, + anon_sym_contained, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2613), 16, + sym__separator_first, + anon_sym_COMMA, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55408] = 8, + ACTIONS(3869), 1, + aux_sym_argument_token2, + ACTIONS(3871), 1, + anon_sym_SLASH, + ACTIONS(3873), 1, + anon_sym_BSLASH2, + ACTIONS(3875), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1462), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1740), 3, + sym__plus_cmd_number, + sym__plus_cmd_command, + sym__plus_cmd_pattern, + ACTIONS(3808), 9, + anon_sym_BSLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [55275] = 10, - ACTIONS(3734), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [55444] = 12, + ACTIONS(3827), 1, anon_sym_DASHnargs, - ACTIONS(3736), 1, + ACTIONS(3829), 1, anon_sym_DASHcomplete, - ACTIONS(3738), 1, + ACTIONS(3831), 1, anon_sym_DASHrange, - ACTIONS(3740), 1, + ACTIONS(3833), 1, anon_sym_DASHcount, - ACTIONS(3742), 1, + ACTIONS(3835), 1, anon_sym_DASHaddr, - ACTIONS(3967), 1, + ACTIONS(3877), 1, + anon_sym_BANG, + ACTIONS(3879), 1, sym_command_name, + STATE(1239), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1335), 2, + ACTIONS(3823), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1341), 2, sym_command_attribute, aux_sym_command_statement_repeat1, - ACTIONS(3965), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3744), 5, + ACTIONS(3837), 5, anon_sym_DASHbang, anon_sym_DASHbar, anon_sym_DASHregister, anon_sym_DASHbuffer, anon_sym_DASHkeepscript, - [55314] = 8, - ACTIONS(3873), 1, - anon_sym_BSLASH, - ACTIONS(3877), 1, - anon_sym_LBRACK, - ACTIONS(3879), 1, - aux_sym__pattern_ordinary_atom_token2, + [55488] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1130), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1148), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3881), 3, + ACTIONS(3705), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3703), 11, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 6, - anon_sym_BSLASH_AMP, + [55514] = 5, + ACTIONS(3881), 1, + anon_sym_COMMA, + STATE(1139), 1, + aux_sym__hl_attr_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3885), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(3883), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [55349] = 3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [55544] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 2, + ACTIONS(3709), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(3293), 14, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3707), 9, + anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_STAR2, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [55374] = 3, + [55570] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 2, + ACTIONS(3705), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(3309), 14, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_QMARK2, + ACTIONS(3703), 9, + anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_STAR2, anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [55399] = 3, - ACTIONS(3040), 1, + [55596] = 3, + ACTIONS(3287), 1, anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3038), 15, - sym__separator_first, + ACTIONS(3285), 16, + sym__newline_or_pipe, + sym_comment, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -116254,71 +116468,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55424] = 10, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3833), 1, - anon_sym_PLUS, - ACTIONS(3837), 1, - anon_sym_PLUS_PLUS, - STATE(2401), 1, - sym_filename, + [55622] = 5, + STATE(1482), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1421), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - STATE(1444), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - ACTIONS(3969), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [55462] = 11, - ACTIONS(2947), 1, - anon_sym_BSLASH_PIPE, - ACTIONS(3971), 1, + ACTIONS(3147), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3887), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3145), 10, anon_sym_BSLASH, - ACTIONS(3973), 1, anon_sym_BSLASH_AMP, - ACTIONS(3975), 1, + anon_sym_BSLASH_PIPE, anon_sym_LBRACK, - ACTIONS(3977), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2066), 1, - aux_sym__pattern_branch_repeat1, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [55652] = 3, + ACTIONS(3306), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2951), 2, + ACTIONS(3304), 16, sym__newline_or_pipe, sym_comment, - STATE(1221), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1236), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3979), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55502] = 3, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55678] = 5, + ACTIONS(3881), 1, + anon_sym_COMMA, + STATE(1153), 1, + aux_sym__hl_attr_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, + ACTIONS(3891), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(3981), 13, + ACTIONS(3889), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -116332,331 +116541,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [55526] = 11, - ACTIONS(3859), 1, + [55708] = 11, + ACTIONS(3893), 1, anon_sym_BSLASH, - ACTIONS(3863), 1, - anon_sym_PLUS, - ACTIONS(3871), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3985), 1, - anon_sym_POUND, - STATE(2712), 1, - sym_filename, + ACTIONS(3895), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3897), 1, + anon_sym_LBRACK, + ACTIONS(3899), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1898), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(3912), 2, + ACTIONS(3135), 2, sym__newline_or_pipe, sym_comment, - STATE(1188), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1406), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [55566] = 11, - ACTIONS(3859), 1, + STATE(1137), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1164), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3131), 3, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(3901), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55750] = 6, + ACTIONS(3903), 1, anon_sym_BSLASH, - ACTIONS(3863), 1, - anon_sym_PLUS, - ACTIONS(3871), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3985), 1, - anon_sym_POUND, - STATE(2712), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(3912), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1406), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - STATE(1407), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - [55606] = 3, + ACTIONS(3906), 1, + anon_sym_LBRACK, + ACTIONS(3909), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1141), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 13, + ACTIONS(3109), 13, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55630] = 10, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3833), 1, - anon_sym_PLUS, - ACTIONS(3837), 1, - anon_sym_PLUS_PLUS, - STATE(2433), 1, - sym_filename, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [55782] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1197), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1501), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(3987), 3, + ACTIONS(3709), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3707), 11, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [55668] = 5, - ACTIONS(3989), 1, - anon_sym_COMMA, - STATE(1183), 1, - aux_sym_hl_groups_repeat1, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55808] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 3, + ACTIONS(3705), 6, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3703), 11, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2518), 10, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55834] = 3, + ACTIONS(3283), 1, + anon_sym_contained, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3281), 16, + sym__newline_or_pipe, + sym_comment, anon_sym_conceal, anon_sym_cchar, - anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [55696] = 3, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55860] = 7, + ACTIONS(3912), 1, + anon_sym_BSLASH, + ACTIONS(3915), 1, + anon_sym_LBRACK, + ACTIONS(3918), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1145), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 13, + ACTIONS(3114), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3109), 11, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55720] = 3, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [55894] = 3, + ACTIONS(3772), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 13, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55744] = 3, + ACTIONS(3770), 16, + sym__newline_or_pipe, + sym_comment, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55920] = 3, + ACTIONS(3107), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 13, + ACTIONS(3105), 16, + sym__newline_or_pipe, + sym_comment, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [55946] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3923), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3921), 13, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_BANG2, + sym_float_literal, + anon_sym_LBRACK, + sym_register, + anon_sym_POUND_LBRACE, + [55972] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3705), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3703), 9, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55768] = 3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55998] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 13, + ACTIONS(3709), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_BANG, + anon_sym_SLASH2, + ACTIONS(3707), 9, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [55792] = 11, - ACTIONS(3859), 1, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [56024] = 13, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3863), 1, + ACTIONS(3927), 1, + anon_sym_BANG, + ACTIONS(3929), 1, anon_sym_PLUS, - ACTIONS(3871), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3992), 1, + ACTIONS(3931), 1, anon_sym_POUND, - STATE(2779), 1, + ACTIONS(3937), 1, + anon_sym_PLUS_PLUS, + STATE(1226), 1, + sym_bang, + STATE(2697), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3780), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(3916), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1407), 2, + STATE(1225), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1496), 2, + STATE(1425), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [55832] = 5, - STATE(1210), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3998), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(3994), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(3996), 9, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [55860] = 6, - ACTIONS(4005), 1, - anon_sym_text, - STATE(1190), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4007), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4000), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4003), 8, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [55890] = 9, - ACTIONS(456), 1, - anon_sym_DOT2, - ACTIONS(458), 1, - anon_sym_PLUS, - ACTIONS(460), 1, - anon_sym_DOLLAR, - ACTIONS(4010), 1, - anon_sym_QMARK, - ACTIONS(4014), 1, - anon_sym_SLASH, + [56070] = 3, + ACTIONS(3226), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4012), 2, - sym_mark, - sym_integer_literal, - ACTIONS(462), 3, - anon_sym_BSLASH_SLASH, - anon_sym_BSLASH_QMARK, - anon_sym_BSLASH_AMP, - STATE(1757), 5, - sym__range_marker, - sym_current_line, - sym_next_line, - sym_last_line, - sym_previous_pattern, - [55926] = 3, + ACTIONS(3224), 16, + sym__newline_or_pipe, + sym_comment, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56096] = 5, + ACTIONS(3939), 1, + anon_sym_COMMA, + STATE(1153), 1, + aux_sym__hl_attr_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4018), 2, + ACTIONS(3944), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4016), 13, + ACTIONS(3942), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -116670,38 +116890,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [55950] = 3, + [56126] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4022), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4020), 13, + ACTIONS(3666), 17, + anon_sym_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_term, + anon_sym_cterm, + aux_sym__hl_term_list_token1, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, anon_sym_ctermbg, + anon_sym_gui, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, anon_sym_font, anon_sym_blend, - [55974] = 3, + [56150] = 8, + ACTIONS(3946), 1, + anon_sym_BSLASH, + ACTIONS(3949), 1, + anon_sym_LBRACK, + ACTIONS(3952), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4026), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4024), 13, + STATE(1125), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1155), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3955), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3337), 6, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_minlines, + anon_sym_maxlines, + [56185] = 10, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + ACTIONS(3960), 1, + sym_command_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1384), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3958), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [56224] = 5, + ACTIONS(3962), 1, + anon_sym_COMMA, + STATE(1184), 1, + aux_sym__hl_attr_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3891), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(3889), 12, + sym__newline_or_pipe, + sym_comment, anon_sym_term, anon_sym_start, anon_sym_stop, @@ -116712,70 +116992,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [55998] = 10, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3833), 1, - anon_sym_PLUS, - ACTIONS(3837), 1, - anon_sym_PLUS_PLUS, - STATE(2342), 1, - sym_filename, + [56253] = 3, + ACTIONS(3306), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1444), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1474), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4028), 3, + ACTIONS(3304), 15, + sym__separator_first, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56278] = 12, + ACTIONS(3893), 1, + anon_sym_BSLASH, + ACTIONS(3897), 1, + anon_sym_LBRACK, + ACTIONS(3899), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1682), 1, + aux_sym__syn_sync_repeat1, + STATE(1829), 1, + sym__syn_sync_lines, + STATE(1966), 1, + sym__pattern_branch, + STATE(1974), 1, + sym_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3964), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1137), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1140), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3901), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [56321] = 3, + ACTIONS(3226), 1, + anon_sym_contained, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3224), 15, + sym__separator_first, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56346] = 9, + ACTIONS(3893), 1, + anon_sym_BSLASH, + ACTIONS(3897), 1, + anon_sym_LBRACK, + ACTIONS(3899), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3322), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1137), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1164), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3901), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3320), 4, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [56036] = 10, - ACTIONS(3774), 1, + anon_sym_minlines, + anon_sym_maxlines, + [56383] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3326), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3324), 14, anon_sym_BSLASH, - ACTIONS(3833), 1, - anon_sym_PLUS, - ACTIONS(3837), 1, - anon_sym_PLUS_PLUS, - STATE(2342), 1, - sym_filename, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [56408] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + ACTIONS(3383), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3381), 14, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [56433] = 9, + ACTIONS(3966), 1, + anon_sym_BSLASH, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3342), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1137), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1164), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3975), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3337), 4, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + [56470] = 9, + ACTIONS(3978), 1, + aux_sym_argument_token2, + ACTIONS(3980), 1, + anon_sym_SLASH, + ACTIONS(3982), 1, + anon_sym_BSLASH2, + ACTIONS(3984), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1532), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3867), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1844), 3, + sym__plus_cmd_number, + sym__plus_cmd_command, + sym__plus_cmd_pattern, + ACTIONS(3808), 6, + anon_sym_BSLASH, + anon_sym_PLUS, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1176), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1474), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4028), 3, + aux_sym_filename_token4, + [56507] = 12, + ACTIONS(3839), 1, + anon_sym_BSLASH, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3845), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1682), 1, + aux_sym__syn_sync_repeat1, + STATE(1829), 1, + sym__syn_sync_lines, + STATE(1940), 1, + sym_pattern, + STATE(2046), 1, + sym__pattern_branch, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3964), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1123), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1125), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3847), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [56550] = 8, + ACTIONS(3839), 1, + anon_sym_BSLASH, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3845), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1125), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1155), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3847), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3320), 6, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [56074] = 10, + anon_sym_minlines, + anon_sym_maxlines, + [56585] = 11, ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(3833), 1, + ACTIONS(3778), 1, anon_sym_PLUS, - ACTIONS(3837), 1, + ACTIONS(3788), 1, anon_sym_PLUS_PLUS, - STATE(2343), 1, + ACTIONS(3988), 1, + anon_sym_POUND, + STATE(2422), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -116786,116 +117273,182 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1444), 2, + STATE(1350), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1471), 2, + STATE(1351), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(4030), 3, + ACTIONS(3986), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [56112] = 3, + [56626] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4034), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4032), 13, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3664), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3666), 14, + anon_sym_LT, anon_sym_term, + anon_sym_cterm, + aux_sym__hl_term_list_token1, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, anon_sym_ctermbg, + anon_sym_gui, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, anon_sym_font, anon_sym_blend, - [56136] = 6, - ACTIONS(4040), 1, - anon_sym_text, - STATE(1190), 1, - aux_sym_filename_repeat1, + [56651] = 3, + ACTIONS(3772), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4042), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4036), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4038), 8, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [56166] = 5, - ACTIONS(4044), 1, - anon_sym_COMMA, - STATE(1183), 1, - aux_sym_hl_groups_repeat1, + ACTIONS(3770), 15, + sym__separator_first, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56676] = 3, + ACTIONS(3287), 1, + anon_sym_contained, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3285), 15, + sym__separator_first, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56701] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2540), 3, + ACTIONS(3324), 16, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2542), 10, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [56724] = 3, + ACTIONS(3283), 1, + anon_sym_contained, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3281), 15, + sym__separator_first, anon_sym_conceal, anon_sym_cchar, - anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [56194] = 3, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56749] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4048), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4046), 13, + ACTIONS(3114), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3109), 14, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [56774] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3381), 16, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [56218] = 3, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [56797] = 5, + ACTIONS(3962), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym__hl_attr_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4052), 2, + ACTIONS(3885), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4050), 13, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3883), 12, + sym__newline_or_pipe, + sym_comment, anon_sym_term, anon_sym_start, anon_sym_stop, @@ -116906,14 +117459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [56242] = 3, + [56826] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4056), 2, + ACTIONS(3944), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4054), 13, + ACTIONS(3942), 14, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -116927,114 +117481,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [56266] = 4, - STATE(1659), 1, - sym_pattern_multi, + [56851] = 3, + ACTIONS(3107), 1, + anon_sym_contained, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4058), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2941), 10, + ACTIONS(3105), 15, + sym__separator_first, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + anon_sym_contains, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [56876] = 12, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3990), 1, + anon_sym_BANG, + ACTIONS(3992), 1, + anon_sym_PLUS, + ACTIONS(3994), 1, + anon_sym_PLUS_PLUS, + STATE(1294), 1, + sym_bang, + STATE(2655), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3853), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1305), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1554), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [56919] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3109), 16, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56292] = 5, - STATE(1225), 1, - aux_sym_filename_repeat1, + anon_sym_minlines, + anon_sym_maxlines, + [56942] = 11, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3778), 1, + anon_sym_PLUS, + ACTIONS(3788), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3998), 1, + anon_sym_POUND, + STATE(2491), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4064), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4060), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4062), 9, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1168), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1365), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(3996), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [56320] = 10, - ACTIONS(4066), 1, + [56983] = 11, + ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(4068), 1, - anon_sym_BSLASH_AMP, - ACTIONS(4070), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2088), 1, - aux_sym__pattern_branch_repeat1, + ACTIONS(3778), 1, + anon_sym_PLUS, + ACTIONS(3788), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3998), 1, + anon_sym_POUND, + STATE(2491), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1204), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1284), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(2947), 3, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1350), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1365), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(3996), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4074), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [56358] = 6, - ACTIONS(4076), 1, + [57024] = 12, + ACTIONS(3893), 1, anon_sym_BSLASH, - ACTIONS(4079), 1, + ACTIONS(3897), 1, anon_sym_LBRACK, - ACTIONS(4082), 1, + ACTIONS(3899), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1207), 1, - aux_sym__pattern_ordinary_atom, + STATE(1159), 1, + aux_sym__syn_sync_repeat1, + STATE(1829), 1, + sym__syn_sync_lines, + STATE(1966), 1, + sym__pattern_branch, + STATE(1988), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3019), 11, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + ACTIONS(3964), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1137), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1140), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3901), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56388] = 3, + [57067] = 5, + ACTIONS(4000), 1, + anon_sym_COMMA, + STATE(1184), 1, + aux_sym__hl_attr_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4087), 2, + ACTIONS(3944), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4085), 13, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3942), 12, + sym__newline_or_pipe, + sym_comment, anon_sym_term, anon_sym_start, anon_sym_stop, @@ -117045,69 +117670,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [56412] = 14, - ACTIONS(4089), 1, - anon_sym_LBRACE, - ACTIONS(4091), 1, - aux_sym_identifier_token1, - ACTIONS(4093), 1, - anon_sym_BANG, - ACTIONS(4097), 1, - sym_au_event, - ACTIONS(4099), 1, - aux_sym__autocmd_pattern_token1, - STATE(1378), 1, - sym_bang, - STATE(1743), 1, - sym__curly_braces_name_expression, - STATE(1798), 1, - sym__augroup_name, - STATE(2129), 1, - sym_au_event_list, - STATE(2132), 1, - sym_identifier, - STATE(2587), 1, - sym__autocmd_command, - STATE(2588), 1, - sym__autocmd_pattern, + [57096] = 12, + ACTIONS(3839), 1, + anon_sym_BSLASH, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3845), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1166), 1, + aux_sym__syn_sync_repeat1, + STATE(1829), 1, + sym__syn_sync_lines, + STATE(1906), 1, + sym_pattern, + STATE(2046), 1, + sym__pattern_branch, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3964), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1123), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1125), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3847), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [57139] = 5, + ACTIONS(4003), 1, + sym_hl_group, + STATE(1379), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4095), 3, + ACTIONS(3289), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [56458] = 5, - STATE(1229), 1, - aux_sym_filename_repeat1, + ACTIONS(3291), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [57167] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4103), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4101), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4062), 9, + ACTIONS(4007), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4005), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [56486] = 3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57191] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4107), 2, + ACTIONS(4011), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4105), 13, + ACTIONS(4009), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -117121,19 +117766,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [56510] = 5, - ACTIONS(4109), 1, - sym_hl_group, - STATE(1366), 1, - sym_hl_groups, + [57215] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3944), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(3942), 13, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57239] = 10, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + anon_sym_PLUS, + ACTIONS(3855), 1, + anon_sym_PLUS_PLUS, + STATE(2488), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1463), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1477), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4013), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [57277] = 5, + ACTIONS(4015), 1, + anon_sym_COMMA, + STATE(1215), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3164), 3, + ACTIONS(2565), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(3166), 10, + ACTIONS(2567), 10, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -117144,102 +117838,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipnl, anon_sym_skipempty, aux_sym__syn_keyword_token1, - [56538] = 8, - ACTIONS(4115), 1, + [57305] = 8, + ACTIONS(4021), 1, anon_sym_cchar, - ACTIONS(4119), 1, + ACTIONS(4025), 1, aux_sym__syn_keyword_token1, - STATE(1224), 1, + STATE(1237), 1, aux_sym__syn_keyword_repeat2, - STATE(1348), 1, + STATE(1380), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4117), 2, + ACTIONS(4023), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4111), 3, + ACTIONS(4017), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4113), 6, + ACTIONS(4019), 6, anon_sym_conceal, anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [56572] = 10, - ACTIONS(3734), 1, - anon_sym_DASHnargs, - ACTIONS(3736), 1, - anon_sym_DASHcomplete, - ACTIONS(3738), 1, - anon_sym_DASHrange, - ACTIONS(3740), 1, - anon_sym_DASHcount, - ACTIONS(3742), 1, - anon_sym_DASHaddr, - ACTIONS(4121), 1, - sym_command_name, + [57339] = 10, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + anon_sym_PLUS, + ACTIONS(3855), 1, + anon_sym_PLUS_PLUS, + STATE(2488), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1221), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1477), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4013), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [57377] = 10, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + anon_sym_PLUS, + ACTIONS(3855), 1, + anon_sym_PLUS_PLUS, + STATE(2489), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1463), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1474), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4027), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [57415] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4031), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4029), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57439] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4035), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4033), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57463] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4039), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4037), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57487] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4043), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4041), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57511] = 10, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + anon_sym_PLUS, + ACTIONS(3855), 1, + anon_sym_PLUS_PLUS, + STATE(2607), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1194), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1523), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4045), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [57549] = 11, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3929), 1, + anon_sym_PLUS, + ACTIONS(3937), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4047), 1, + anon_sym_POUND, + STATE(2791), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3965), 2, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(3986), 2, sym__newline_or_pipe, sym_comment, - STATE(1324), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(3744), 5, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [56610] = 8, - ACTIONS(4115), 1, + STATE(1416), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + STATE(1447), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + [57589] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4051), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4049), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57613] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4055), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4053), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57637] = 8, + ACTIONS(4021), 1, anon_sym_cchar, - ACTIONS(4123), 1, + ACTIONS(4057), 1, aux_sym__syn_keyword_token1, - STATE(1223), 1, + STATE(1233), 1, aux_sym__syn_keyword_repeat2, - STATE(1348), 1, + STATE(1380), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4117), 2, + ACTIONS(4023), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4111), 3, + ACTIONS(4017), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4113), 6, + ACTIONS(4019), 6, anon_sym_conceal, anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [56644] = 6, - ACTIONS(4125), 1, + [57671] = 6, + ACTIONS(4063), 1, anon_sym_text, - STATE(1190), 1, + STATE(1207), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4042), 2, + ACTIONS(4065), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4036), 3, + ACTIONS(4059), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4062), 8, + ACTIONS(4061), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -117248,22 +118153,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [56674] = 6, - ACTIONS(4125), 1, + [57701] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4069), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4067), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57725] = 6, + ACTIONS(4073), 1, anon_sym_text, - STATE(1199), 1, + STATE(1207), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4129), 2, + ACTIONS(4065), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4127), 3, + ACTIONS(4059), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4062), 8, + ACTIONS(4071), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -117272,23 +118198,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [56704] = 7, - ACTIONS(4131), 1, - anon_sym_BSLASH, - ACTIONS(4135), 1, + [57755] = 6, + ACTIONS(4080), 1, anon_sym_text, - STATE(1746), 1, - sym_filename, + STATE(1207), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4137), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4139), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4133), 8, + ACTIONS(4082), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4075), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4078), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -117297,22 +118222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [56736] = 6, - ACTIONS(4143), 1, + [57785] = 6, + ACTIONS(4063), 1, anon_sym_text, - STATE(1216), 1, + STATE(1206), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4145), 2, + ACTIONS(4087), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4141), 3, + ACTIONS(4085), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(3996), 8, + ACTIONS(4061), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -117321,240 +118246,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [56766] = 3, + [57815] = 7, + ACTIONS(4089), 1, + anon_sym_BSLASH, + ACTIONS(4093), 1, + anon_sym_text, + STATE(1754), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 13, + ACTIONS(4095), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4097), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4091), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [56790] = 5, - STATE(1691), 1, - sym_pattern_multi, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [57847] = 6, + ACTIONS(4103), 1, + anon_sym_text, + STATE(1204), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2943), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4147), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2941), 8, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(4105), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4099), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4101), 8, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [56818] = 9, - ACTIONS(17), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [57877] = 9, + ACTIONS(460), 1, anon_sym_DOT2, - ACTIONS(19), 1, + ACTIONS(462), 1, anon_sym_PLUS, - ACTIONS(21), 1, + ACTIONS(464), 1, anon_sym_DOLLAR, - ACTIONS(4149), 1, + ACTIONS(4107), 1, anon_sym_QMARK, - ACTIONS(4153), 1, + ACTIONS(4111), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4151), 2, + ACTIONS(4109), 2, sym_mark, sym_integer_literal, - ACTIONS(23), 3, + ACTIONS(466), 3, anon_sym_BSLASH_SLASH, anon_sym_BSLASH_QMARK, anon_sym_BSLASH_AMP, - STATE(1860), 5, + STATE(1776), 5, sym__range_marker, sym_current_line, sym_next_line, sym_last_line, sym_previous_pattern, - [56854] = 8, - ACTIONS(4115), 1, - anon_sym_cchar, - ACTIONS(4119), 1, - aux_sym__syn_keyword_token1, - STATE(1224), 1, - aux_sym__syn_keyword_repeat2, - STATE(1348), 1, - sym__syn_arguments_keyword, + [57913] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4117), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4155), 3, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4113), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [56888] = 8, - ACTIONS(4162), 1, - anon_sym_cchar, - ACTIONS(4168), 1, - aux_sym__syn_keyword_token1, - STATE(1224), 1, - aux_sym__syn_keyword_repeat2, - STATE(1348), 1, - sym__syn_arguments_keyword, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57937] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4165), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4157), 3, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4159), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [56922] = 5, - STATE(1229), 1, - aux_sym_filename_repeat1, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57961] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4103), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4101), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4038), 9, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 13, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [56950] = 8, - ACTIONS(4115), 1, - anon_sym_cchar, - ACTIONS(4173), 1, - aux_sym__syn_keyword_token1, - STATE(1213), 1, - aux_sym__syn_keyword_repeat2, - STATE(1348), 1, - sym__syn_arguments_keyword, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [57985] = 5, + ACTIONS(4117), 1, + anon_sym_COMMA, + STATE(1215), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4117), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4171), 3, + ACTIONS(2613), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4113), 6, + ACTIONS(2615), 10, anon_sym_conceal, + anon_sym_cchar, anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [56984] = 7, - ACTIONS(4175), 1, + aux_sym__syn_keyword_token1, + [58013] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [58037] = 10, + ACTIONS(4120), 1, anon_sym_BSLASH, - ACTIONS(4178), 1, + ACTIONS(4122), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4181), 1, + ACTIONS(4126), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1227), 1, + STATE(2117), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1240), 2, aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1247), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3131), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4128), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [58075] = 5, + STATE(1223), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4132), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4130), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4101), 9, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [58103] = 14, + ACTIONS(4134), 1, + anon_sym_LBRACE, + ACTIONS(4136), 1, + aux_sym_identifier_token1, + ACTIONS(4138), 1, + anon_sym_BANG, + ACTIONS(4142), 1, + sym_au_event, + ACTIONS(4144), 1, + aux_sym__autocmd_pattern_token1, + STATE(1390), 1, + sym_bang, + STATE(1745), 1, + sym__curly_braces_name_expression, + STATE(1871), 1, + sym__augroup_name, + STATE(2075), 1, + sym_identifier, + STATE(2083), 1, + sym_au_event_list, + STATE(2476), 1, + sym__autocmd_pattern, + STATE(2478), 1, + sym__autocmd_command, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4140), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [58149] = 11, + ACTIONS(3131), 1, + anon_sym_BSLASH_PIPE, + ACTIONS(4146), 1, + anon_sym_BSLASH, + ACTIONS(4148), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4150), 1, + anon_sym_LBRACK, + ACTIONS(4152), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2116), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 2, + ACTIONS(3135), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3019), 9, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + STATE(1235), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1300), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4154), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57016] = 5, - ACTIONS(4044), 1, - anon_sym_COMMA, - STATE(1200), 1, - aux_sym_hl_groups_repeat1, + [58189] = 10, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + anon_sym_PLUS, + ACTIONS(3855), 1, + anon_sym_PLUS_PLUS, + STATE(2418), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2548), 3, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1463), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1494), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4156), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2550), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [57044] = 5, + [58227] = 5, STATE(1229), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4187), 2, + ACTIONS(4160), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4184), 3, + ACTIONS(4158), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4003), 9, + ACTIONS(4061), 9, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -117564,197 +118592,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [57072] = 3, + [58255] = 5, + STATE(1230), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3888), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3886), 13, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4164), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4162), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4061), 9, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [58283] = 5, + ACTIONS(4015), 1, anon_sym_COMMA, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57096] = 3, + STATE(1191), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4022), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4020), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57119] = 10, - ACTIONS(3859), 1, + ACTIONS(2553), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2555), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [58311] = 11, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3941), 1, + ACTIONS(3929), 1, anon_sym_PLUS, - ACTIONS(3943), 1, + ACTIONS(3937), 1, anon_sym_PLUS_PLUS, - STATE(2825), 1, + ACTIONS(4166), 1, + anon_sym_POUND, + STATE(2768), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(3969), 2, + ACTIONS(3996), 2, sym__newline_or_pipe, sym_comment, - STATE(1553), 2, + STATE(1447), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1610), 2, + STATE(1449), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [57156] = 3, + [58351] = 11, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3929), 1, + anon_sym_PLUS, + ACTIONS(3937), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4166), 1, + anon_sym_POUND, + STATE(2768), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3311), 2, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(3996), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3309), 12, + STATE(1200), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1449), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [58391] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [58415] = 6, + ACTIONS(4168), 1, anon_sym_BSLASH, + ACTIONS(4171), 1, + anon_sym_LBRACK, + ACTIONS(4174), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1228), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3109), 11, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57179] = 3, + [58445] = 5, + STATE(1230), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4164), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4162), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4071), 9, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [58473] = 5, + STATE(1230), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4180), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4177), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4078), 9, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [58501] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [58525] = 7, + ACTIONS(4183), 1, + anon_sym_BSLASH, + ACTIONS(4186), 1, + anon_sym_LBRACK, + ACTIONS(4189), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1232), 1, + aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3295), 2, + ACTIONS(3114), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3293), 12, - anon_sym_BSLASH, + ACTIONS(3109), 9, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57202] = 10, - ACTIONS(3971), 1, - anon_sym_BSLASH, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2184), 1, - sym__pattern_branch, - STATE(2686), 1, - sym_pattern, + [58557] = 8, + ACTIONS(4021), 1, + anon_sym_cchar, + ACTIONS(4025), 1, + aux_sym__syn_keyword_token1, + STATE(1237), 1, + aux_sym__syn_keyword_repeat2, + STATE(1380), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4192), 2, - anon_sym_grouphere, - anon_sym_groupthere, - STATE(1177), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1221), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3979), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [57239] = 9, - ACTIONS(4194), 1, - anon_sym_BSLASH, - ACTIONS(4197), 1, - anon_sym_LBRACK, - ACTIONS(4200), 1, - aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4023), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4192), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4019), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [58591] = 8, + ACTIONS(4021), 1, + anon_sym_cchar, + ACTIONS(4196), 1, + aux_sym__syn_keyword_token1, + STATE(1192), 1, + aux_sym__syn_keyword_repeat2, + STATE(1380), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3326), 2, - anon_sym_BSLASH_AMP, + ACTIONS(4023), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4194), 3, anon_sym_BSLASH_PIPE, - ACTIONS(3331), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1221), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1236), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4203), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [57274] = 3, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4019), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [58625] = 5, + STATE(1708), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3024), 2, + ACTIONS(3147), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3019), 12, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, + ACTIONS(4198), 4, anon_sym_STAR2, - anon_sym_LBRACK, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, + ACTIONS(3145), 8, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57297] = 3, + [58653] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4048), 2, + ACTIONS(4115), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4046), 12, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4113), 13, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_term, anon_sym_start, anon_sym_stop, @@ -117765,112 +118929,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [57320] = 6, - STATE(1241), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4206), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4038), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(4208), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4040), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [57349] = 8, - ACTIONS(4212), 1, + [58677] = 8, + ACTIONS(4205), 1, anon_sym_cchar, - ACTIONS(4216), 1, + ACTIONS(4211), 1, aux_sym__syn_keyword_token1, - STATE(1311), 1, + STATE(1237), 1, aux_sym__syn_keyword_repeat2, - STATE(1448), 1, + STATE(1380), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4171), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4214), 2, + ACTIONS(4208), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4210), 6, + ACTIONS(4200), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4202), 6, anon_sym_conceal, anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [57382] = 6, - STATE(1241), 1, - aux_sym_filename_repeat1, + [58711] = 9, + ACTIONS(17), 1, + anon_sym_DOT2, + ACTIONS(19), 1, + anon_sym_PLUS, + ACTIONS(21), 1, + anon_sym_DOLLAR, + ACTIONS(4214), 1, + anon_sym_QMARK, + ACTIONS(4218), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4218), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4003), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(4221), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4005), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [57411] = 10, - ACTIONS(4224), 1, - anon_sym_BSLASH, - ACTIONS(4226), 1, + ACTIONS(4216), 2, + sym_mark, + sym_integer_literal, + ACTIONS(23), 3, + anon_sym_BSLASH_SLASH, + anon_sym_BSLASH_QMARK, anon_sym_BSLASH_AMP, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2174), 1, - aux_sym__pattern_branch_repeat1, + STATE(1813), 5, + sym__range_marker, + sym_current_line, + sym_next_line, + sym_last_line, + sym_previous_pattern, + [58747] = 10, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + ACTIONS(4220), 1, + sym_command_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3958), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1394), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [58785] = 4, + STATE(1695), 1, + sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2947), 2, + ACTIONS(4222), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3145), 10, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1334), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4232), 3, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57448] = 3, + [58811] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4018), 2, + ACTIONS(4115), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4016), 12, + ACTIONS(4113), 12, sym__newline_or_pipe, sym_comment, anon_sym_term, @@ -117883,40 +119052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [57471] = 4, - ACTIONS(4236), 1, - anon_sym_BSLASH_AMP, - STATE(1309), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4234), 12, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - [57496] = 6, - ACTIONS(4238), 1, + [58834] = 6, + ACTIONS(4224), 1, anon_sym_BSLASH, - ACTIONS(4241), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4244), 1, + ACTIONS(4230), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1245), 1, + STATE(1242), 1, aux_sym__pattern_ordinary_atom, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3019), 10, + ACTIONS(3109), 10, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, @@ -117927,43 +119075,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57525] = 4, - ACTIONS(4247), 1, - anon_sym_BSLASH_AMP, - STATE(1246), 1, - aux_sym__pattern_branch_repeat1, + [58863] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 12, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, + ACTIONS(3109), 14, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [57550] = 6, - ACTIONS(4143), 1, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [58884] = 7, + ACTIONS(4093), 1, anon_sym_text, - STATE(1263), 1, - aux_sym_filename_repeat1, + ACTIONS(4233), 1, + anon_sym_BSLASH, + STATE(1856), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4252), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4250), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(3996), 7, + ACTIONS(4235), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4237), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4091), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -117971,301 +119118,536 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [57579] = 3, + [58915] = 5, + ACTIONS(4239), 1, + anon_sym_COMMA, + STATE(1256), 1, + aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4026), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4024), 12, + ACTIONS(2553), 2, sym__newline_or_pipe, sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57602] = 3, + ACTIONS(2555), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [58942] = 14, + ACTIONS(4241), 1, + anon_sym_LBRACE, + ACTIONS(4243), 1, + aux_sym_identifier_token1, + ACTIONS(4245), 1, + anon_sym_BANG, + ACTIONS(4247), 1, + sym_au_event, + ACTIONS(4249), 1, + aux_sym__autocmd_pattern_token1, + STATE(1492), 1, + sym_bang, + STATE(1826), 1, + sym__curly_braces_name_expression, + STATE(1938), 1, + sym__augroup_name, + STATE(2161), 1, + sym_identifier, + STATE(2181), 1, + sym_au_event_list, + STATE(2756), 1, + sym__autocmd_pattern, + STATE(2757), 1, + sym__autocmd_command, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4034), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4032), 12, + ACTIONS(4251), 2, sym__newline_or_pipe, sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57625] = 3, + [58987] = 8, + ACTIONS(4253), 1, + anon_sym_BSLASH, + ACTIONS(4256), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4052), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4050), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57648] = 3, - STATE(1249), 1, - sym__hl_attr_list, + STATE(1240), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1247), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4262), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3337), 4, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [59020] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4254), 13, - sym__hl_none, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_underdouble, - anon_sym_underdotted, - anon_sym_underdashed, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - [57671] = 11, - ACTIONS(4256), 1, + ACTIONS(3381), 14, anon_sym_BSLASH, - ACTIONS(4258), 1, - anon_sym_BANG, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(1490), 1, - sym_bang, - STATE(2431), 1, - sym_filename, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59041] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1488), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1749), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [57710] = 11, - ACTIONS(4256), 1, + ACTIONS(3324), 14, anon_sym_BSLASH, - ACTIONS(4258), 1, - anon_sym_BANG, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(1420), 1, - sym_bang, - STATE(2434), 1, - sym_filename, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59062] = 8, + ACTIONS(4120), 1, + anon_sym_BSLASH, + ACTIONS(4124), 1, + anon_sym_LBRACK, + ACTIONS(4126), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + STATE(1240), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1247), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4128), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3320), 4, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [59095] = 5, + ACTIONS(4265), 1, + sym_hl_group, + STATE(1524), 1, + sym_hl_groups, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3289), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3291), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [59122] = 8, + ACTIONS(4270), 1, + anon_sym_cchar, + ACTIONS(4276), 1, + aux_sym__syn_keyword_token1, + STATE(1252), 1, + aux_sym__syn_keyword_repeat2, + STATE(1484), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4200), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4273), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4267), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59155] = 8, + ACTIONS(4281), 1, + anon_sym_cchar, + ACTIONS(4285), 1, + aux_sym__syn_keyword_token1, + STATE(1252), 1, + aux_sym__syn_keyword_repeat2, + STATE(1484), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4192), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4283), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4279), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59188] = 6, + STATE(1254), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4287), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4078), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4290), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4080), 5, + anon_sym_BSLASH, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1513), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1747), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [57749] = 5, - STATE(1254), 1, + aux_sym_filename_token4, + [59217] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(719), 14, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [59238] = 5, + ACTIONS(4239), 1, + anon_sym_COMMA, + STATE(1278), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2565), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2567), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [59265] = 6, + ACTIONS(4103), 1, + anon_sym_text, + STATE(1270), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4267), 2, + ACTIONS(4295), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4264), 3, + ACTIONS(4293), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4003), 8, + ACTIONS(4101), 7, sym__newline_or_pipe, sym_comment, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [57776] = 3, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [59294] = 4, + ACTIONS(4297), 1, + anon_sym_BSLASH_AMP, + STATE(1258), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4056), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4054), 12, + ACTIONS(3322), 12, sym__newline_or_pipe, sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57799] = 10, - ACTIONS(4272), 1, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + [59319] = 7, + ACTIONS(3114), 1, + sym__separator, + ACTIONS(4300), 1, + anon_sym_BSLASH, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4306), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1259), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3109), 9, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59350] = 6, + STATE(1254), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4309), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4071), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4311), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4073), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [59379] = 4, + ACTIONS(4315), 1, + anon_sym_BSLASH_AMP, + STATE(1258), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4313), 12, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + [59404] = 10, + ACTIONS(4319), 1, anon_sym_BSLASH, - ACTIONS(4274), 1, + ACTIONS(4321), 1, anon_sym_BANG, - STATE(1431), 1, + STATE(1514), 1, sym_bang, - STATE(1690), 1, + STATE(1752), 1, aux_sym_runtime_statement_repeat1, - STATE(1854), 1, + STATE(1883), 1, sym_filename, - STATE(1921), 1, + STATE(1884), 1, sym__runtime_where, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4276), 2, + ACTIONS(4323), 2, aux_sym_filename_token1, aux_sym_filename_token3, - ACTIONS(4278), 2, + ACTIONS(4325), 2, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4270), 4, + ACTIONS(4317), 4, anon_sym_START, anon_sym_OPT, anon_sym_PACK, anon_sym_ALL, - [57836] = 3, + [59441] = 11, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4327), 1, + anon_sym_BANG, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + STATE(1422), 1, + sym_bang, + STATE(2684), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4087), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4085), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57859] = 3, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1418), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1770), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [59480] = 10, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3992), 1, + anon_sym_PLUS, + ACTIONS(3994), 1, + anon_sym_PLUS_PLUS, + STATE(2679), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4107), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4105), 12, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4045), 2, sym__newline_or_pipe, sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [57882] = 3, - STATE(1243), 1, - sym__hl_attr_list, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4254), 13, - sym__hl_none, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_underdouble, - anon_sym_underdotted, - anon_sym_underdashed, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - [57905] = 5, + STATE(1292), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1561), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [59517] = 6, STATE(1254), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4282), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4280), 3, + ACTIONS(4309), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4061), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4311), 3, + aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4038), 8, - sym__newline_or_pipe, - sym_comment, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [57932] = 3, + ACTIONS(4063), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [59546] = 11, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4327), 1, + anon_sym_BANG, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + STATE(1436), 1, + sym_bang, + STATE(2659), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1443), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1712), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [59585] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, + ACTIONS(4115), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(3981), 12, + ACTIONS(4113), 12, sym__newline_or_pipe, sym_comment, anon_sym_term, @@ -118278,22 +119660,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [57955] = 6, - ACTIONS(4125), 1, + [59608] = 6, + ACTIONS(4063), 1, anon_sym_text, - STATE(1312), 1, + STATE(1290), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4286), 2, + ACTIONS(4335), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4284), 3, + ACTIONS(4333), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4062), 7, + ACTIONS(4061), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -118301,22 +119683,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [57984] = 6, - ACTIONS(4125), 1, + [59637] = 6, + STATE(1260), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4337), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4061), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4339), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4063), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [59666] = 6, + ACTIONS(4063), 1, anon_sym_text, - STATE(1308), 1, + STATE(1291), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4290), 2, + ACTIONS(4343), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4288), 3, + ACTIONS(4341), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4062), 7, + ACTIONS(4061), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -118324,69 +119729,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [58013] = 11, - ACTIONS(3859), 1, + [59695] = 10, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(4258), 1, - anon_sym_BANG, - ACTIONS(4260), 1, + ACTIONS(3992), 1, anon_sym_PLUS, - ACTIONS(4262), 1, + ACTIONS(3994), 1, anon_sym_PLUS_PLUS, - STATE(1397), 1, - sym_bang, - STATE(2643), 1, + STATE(2801), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1396), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1759), 2, + ACTIONS(4156), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1540), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [58052] = 10, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3941), 1, - anon_sym_PLUS, - ACTIONS(3943), 1, - anon_sym_PLUS_PLUS, - STATE(2669), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(3987), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1302), 2, + STATE(1577), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1585), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [58089] = 3, + [59732] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, + ACTIONS(4115), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(3981), 12, + ACTIONS(4113), 12, sym__newline_or_pipe, sym_comment, anon_sym_term, @@ -118399,87 +119776,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [58112] = 11, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(4258), 1, - anon_sym_BANG, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(1404), 1, - sym_bang, - STATE(2674), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1403), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1772), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [58151] = 5, - ACTIONS(4292), 1, - sym_hl_group, - STATE(1463), 1, - sym_hl_groups, + [59755] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3164), 2, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 12, sym__newline_or_pipe, sym_comment, - ACTIONS(3166), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [58178] = 5, - ACTIONS(4294), 1, - anon_sym_COMMA, - STATE(1272), 1, - aux_sym_hl_groups_repeat1, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [59778] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2548), 2, + ACTIONS(4011), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4009), 12, sym__newline_or_pipe, sym_comment, - ACTIONS(2550), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [58205] = 4, - ACTIONS(4296), 1, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [59801] = 4, + ACTIONS(4345), 1, anon_sym_BSLASH_AMP, - STATE(1246), 1, + STATE(1295), 1, aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 12, + ACTIONS(4313), 12, sym__normal, sym__source, sym__global, @@ -118488,64 +119833,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_SLASH2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [58230] = 3, + [59826] = 6, + STATE(1265), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [58253] = 5, - ACTIONS(4294), 1, - anon_sym_COMMA, - STATE(1273), 1, - aux_sym_hl_groups_repeat1, + ACTIONS(4347), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4101), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4349), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4103), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [59855] = 11, + ACTIONS(3131), 1, + anon_sym_BSLASH_PIPE, + ACTIONS(3135), 1, + sym__separator, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4353), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2148), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2540), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2542), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [58280] = 5, - ACTIONS(4298), 1, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1352), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4359), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59894] = 5, + ACTIONS(4361), 1, anon_sym_COMMA, - STATE(1273), 1, + STATE(1278), 1, aux_sym_hl_groups_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 2, + ACTIONS(2613), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2518), 10, + ACTIONS(2615), 10, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -118556,381 +119910,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipnl, anon_sym_skipempty, aux_sym__syn_keyword_token1, - [58307] = 9, - ACTIONS(3971), 1, + [59921] = 10, + ACTIONS(4146), 1, anon_sym_BSLASH, - ACTIONS(3975), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(3977), 1, + ACTIONS(4364), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(2236), 1, + sym__pattern_branch, + STATE(2646), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3297), 2, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3299), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1221), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1236), 2, + ACTIONS(4366), 2, + anon_sym_grouphere, + anon_sym_groupthere, + STATE(1220), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3979), 3, + STATE(1235), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4154), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [58342] = 2, + [59958] = 4, + ACTIONS(4368), 1, + anon_sym_BSLASH_AMP, + STATE(1282), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 14, + ACTIONS(4313), 12, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [58363] = 7, - ACTIONS(3024), 1, + [59983] = 5, + ACTIONS(3147), 1, sym__separator, - ACTIONS(4301), 1, - anon_sym_BSLASH, - ACTIONS(4304), 1, - anon_sym_LBRACK, - ACTIONS(4307), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1276), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3019), 9, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58394] = 4, - STATE(1750), 1, + STATE(1731), 1, sym_pattern_multi, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4310), 4, + ACTIONS(4370), 4, anon_sym_STAR2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - ACTIONS(2941), 9, + ACTIONS(3145), 8, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [58419] = 8, - ACTIONS(4212), 1, - anon_sym_cchar, - ACTIONS(4312), 1, - aux_sym__syn_keyword_token1, - STATE(1279), 1, - aux_sym__syn_keyword_repeat2, - STATE(1448), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4155), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4214), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4210), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [58452] = 8, - ACTIONS(4317), 1, - anon_sym_cchar, - ACTIONS(4323), 1, - aux_sym__syn_keyword_token1, - STATE(1279), 1, - aux_sym__syn_keyword_repeat2, - STATE(1448), 1, - sym__syn_arguments_keyword, + [60010] = 4, + ACTIONS(4372), 1, + anon_sym_BSLASH_AMP, + STATE(1282), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4157), 2, + ACTIONS(3322), 12, sym__newline_or_pipe, sym_comment, - ACTIONS(4320), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4314), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [58485] = 8, - ACTIONS(4066), 1, - anon_sym_BSLASH, - ACTIONS(4070), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1204), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1284), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4074), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3297), 4, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [58518] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3309), 14, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58539] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3293), 14, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58560] = 10, - ACTIONS(4274), 1, + [60035] = 10, + ACTIONS(4321), 1, anon_sym_BANG, - ACTIONS(4326), 1, + ACTIONS(4375), 1, anon_sym_BSLASH, - STATE(1417), 1, + STATE(1402), 1, sym_bang, - STATE(1732), 1, + STATE(1679), 1, aux_sym_runtime_statement_repeat1, - STATE(1899), 1, - sym__runtime_where, - STATE(1901), 1, + STATE(1814), 1, sym_filename, + STATE(1892), 1, + sym__runtime_where, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4328), 2, + ACTIONS(4377), 2, aux_sym_filename_token1, aux_sym_filename_token3, - ACTIONS(4330), 2, + ACTIONS(4379), 2, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4270), 4, + ACTIONS(4317), 4, anon_sym_START, anon_sym_OPT, anon_sym_PACK, anon_sym_ALL, - [58597] = 8, - ACTIONS(4332), 1, + [60072] = 9, + ACTIONS(4146), 1, anon_sym_BSLASH, - ACTIONS(4335), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4338), 1, + ACTIONS(4152), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1204), 2, + ACTIONS(3320), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3322), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1235), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1284), 2, + STATE(1300), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4341), 3, + ACTIONS(4154), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3326), 4, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [58630] = 10, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3941), 1, + [60107] = 11, + ACTIONS(4327), 1, + anon_sym_BANG, + ACTIONS(4329), 1, anon_sym_PLUS, - ACTIONS(3943), 1, + ACTIONS(4331), 1, anon_sym_PLUS_PLUS, - STATE(2694), 1, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(1528), 1, + sym_bang, + STATE(2615), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3784), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4028), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1553), 2, + STATE(1526), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1571), 2, + STATE(1779), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [58667] = 4, - ACTIONS(4344), 1, - anon_sym_BSLASH_AMP, - STATE(1314), 1, - aux_sym__pattern_branch_repeat1, + [60146] = 11, + ACTIONS(4327), 1, + anon_sym_BANG, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(1519), 1, + sym_bang, + STATE(2605), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 12, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - [58692] = 5, - STATE(1254), 1, - aux_sym_filename_repeat1, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1515), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1772), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [60185] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4282), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4280), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4062), 8, + ACTIONS(3326), 2, sym__newline_or_pipe, sym_comment, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58719] = 3, - STATE(1192), 1, - sym__hl_attr_list, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4346), 13, - sym__hl_none, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_underdouble, - anon_sym_underdotted, - anon_sym_underdashed, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - [58742] = 3, - STATE(1198), 1, - sym__hl_attr_list, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4346), 13, - sym__hl_none, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_underdouble, - anon_sym_underdotted, - anon_sym_underdashed, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - [58765] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3019), 14, + ACTIONS(3324), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, anon_sym_STAR2, anon_sym_LBRACK, aux_sym_pattern_multi_token1, @@ -118940,73 +120130,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [58786] = 11, - ACTIONS(2947), 1, - anon_sym_BSLASH_PIPE, - ACTIONS(2951), 1, - sym__separator, - ACTIONS(4348), 1, - anon_sym_BSLASH, - ACTIONS(4350), 1, - anon_sym_BSLASH_AMP, - ACTIONS(4352), 1, - anon_sym_LBRACK, - ACTIONS(4354), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2231), 1, - aux_sym__pattern_branch_repeat1, + [60208] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1292), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1368), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4356), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58825] = 5, - ACTIONS(2943), 1, - sym__separator, - STATE(1705), 1, - sym_pattern_multi, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60231] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4358), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(2941), 8, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58852] = 7, - ACTIONS(4135), 1, + ACTIONS(4115), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4113), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60254] = 6, + ACTIONS(4073), 1, anon_sym_text, - ACTIONS(4360), 1, - anon_sym_BSLASH, - STATE(1805), 1, - sym_filename, + STATE(1291), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4362), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4364), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4133), 7, + ACTIONS(4343), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4341), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4071), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -119014,110 +120193,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [58883] = 8, - ACTIONS(4366), 1, - aux_sym_argument_token2, - ACTIONS(4368), 1, - anon_sym_SLASH, - ACTIONS(4370), 1, - anon_sym_BSLASH2, - ACTIONS(4372), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1712), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(2033), 3, - sym__plus_cmd_number, - sym__plus_cmd_command, - sym__plus_cmd_pattern, - ACTIONS(3756), 6, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [58916] = 5, - STATE(1260), 1, + [60283] = 6, + ACTIONS(4080), 1, + anon_sym_text, + STATE(1291), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4376), 2, + ACTIONS(4386), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4374), 3, + ACTIONS(4383), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4062), 8, + ACTIONS(4078), 7, sym__newline_or_pipe, sym_comment, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58943] = 10, - ACTIONS(4066), 1, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60312] = 10, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(4070), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2244), 1, - sym__pattern_branch, - STATE(2532), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4378), 2, - anon_sym_grouphere, - anon_sym_groupthere, - STATE(1204), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1206), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4074), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58980] = 5, - STATE(1287), 1, - aux_sym_filename_repeat1, + ACTIONS(3992), 1, + anon_sym_PLUS, + ACTIONS(3994), 1, + anon_sym_PLUS_PLUS, + STATE(2660), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4382), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4380), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(3996), 8, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4027), 2, sym__newline_or_pipe, sym_comment, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [59007] = 3, + STATE(1557), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + STATE(1577), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + [60349] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, + ACTIONS(4115), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(3981), 12, + ACTIONS(4113), 12, sym__newline_or_pipe, sym_comment, anon_sym_term, @@ -119130,117 +120263,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [59030] = 10, - ACTIONS(4384), 1, - anon_sym_BANG, - ACTIONS(4388), 1, - sym_hl_group, - ACTIONS(4390), 1, - anon_sym_link, - ACTIONS(4392), 1, - anon_sym_clear, - ACTIONS(4394), 1, - sym__default, - STATE(1429), 1, - sym_bang, - STATE(2547), 1, - sym__hl_body_link, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4386), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - STATE(2544), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [59067] = 4, - ACTIONS(4396), 1, - anon_sym_BSLASH_AMP, - STATE(1300), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3299), 12, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [59092] = 10, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3941), 1, - anon_sym_PLUS, - ACTIONS(3943), 1, - anon_sym_PLUS_PLUS, - STATE(2694), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4028), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1232), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1571), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [59129] = 10, - ACTIONS(3859), 1, + [60372] = 10, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3941), 1, + ACTIONS(3992), 1, anon_sym_PLUS, - ACTIONS(3943), 1, + ACTIONS(3994), 1, anon_sym_PLUS_PLUS, - STATE(2778), 1, + STATE(2702), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4030), 2, + ACTIONS(4013), 2, sym__newline_or_pipe, sym_comment, - STATE(1553), 2, + STATE(1271), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1572), 2, + STATE(1559), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [59166] = 4, - ACTIONS(4399), 1, + [60409] = 4, + ACTIONS(4389), 1, anon_sym_BSLASH_AMP, - STATE(1300), 1, + STATE(1295), 1, aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 12, + ACTIONS(3322), 12, sym__normal, sym__source, sym__global, @@ -119253,83 +120311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [59191] = 6, - STATE(1305), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4401), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(3996), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(4403), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4143), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [59220] = 6, - STATE(1241), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4206), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4062), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(4208), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4125), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [59249] = 6, - STATE(1239), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4405), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4062), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(4407), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4125), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [59278] = 3, + [60434] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, + ACTIONS(4069), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(3981), 12, + ACTIONS(4067), 12, sym__newline_or_pipe, sym_comment, anon_sym_term, @@ -119342,172 +120331,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [59301] = 6, - ACTIONS(4005), 1, - anon_sym_text, - STATE(1308), 1, - aux_sym_filename_repeat1, + [60457] = 10, + ACTIONS(4120), 1, + anon_sym_BSLASH, + ACTIONS(4124), 1, + anon_sym_LBRACK, + ACTIONS(4126), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2159), 1, + sym__pattern_branch, + STATE(2381), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4412), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4409), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4003), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [59330] = 4, - ACTIONS(4415), 1, - anon_sym_BSLASH_AMP, - STATE(1309), 1, - aux_sym__pattern_branch_repeat1, + ACTIONS(4392), 2, + anon_sym_grouphere, + anon_sym_groupthere, + STATE(1217), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1240), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4128), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [60494] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 12, + ACTIONS(3383), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, + ACTIONS(3381), 12, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - [59355] = 8, - ACTIONS(4212), 1, - anon_sym_cchar, - ACTIONS(4418), 1, - aux_sym__syn_keyword_token1, - STATE(1278), 1, - aux_sym__syn_keyword_repeat2, - STATE(1448), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4111), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4214), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4210), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [59388] = 8, - ACTIONS(4212), 1, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [60517] = 8, + ACTIONS(4281), 1, anon_sym_cchar, - ACTIONS(4312), 1, + ACTIONS(4394), 1, aux_sym__syn_keyword_token1, - STATE(1279), 1, + STATE(1324), 1, aux_sym__syn_keyword_repeat2, - STATE(1448), 1, + STATE(1484), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4111), 2, + ACTIONS(4194), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4214), 2, + ACTIONS(4283), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4210), 6, + ACTIONS(4279), 6, anon_sym_conceal, anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [59421] = 6, - ACTIONS(4040), 1, - anon_sym_text, - STATE(1308), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4290), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4288), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4038), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [59450] = 3, + [60550] = 9, + ACTIONS(4396), 1, + anon_sym_BSLASH, + ACTIONS(4399), 1, + anon_sym_LBRACK, + ACTIONS(4402), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(3981), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_term, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - anon_sym_blend, - [59473] = 4, - ACTIONS(4420), 1, + ACTIONS(3337), 2, anon_sym_BSLASH_AMP, - STATE(1314), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3299), 12, + anon_sym_BSLASH_PIPE, + ACTIONS(3342), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - [59498] = 3, + STATE(1235), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1300), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4405), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [60585] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3983), 2, + ACTIONS(4055), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(3981), 12, + ACTIONS(4053), 12, sym__newline_or_pipe, sym_comment, anon_sym_term, @@ -119520,80 +120449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guisp, anon_sym_font, anon_sym_blend, - [59521] = 14, - ACTIONS(4423), 1, - anon_sym_LBRACE, - ACTIONS(4425), 1, - aux_sym_identifier_token1, - ACTIONS(4427), 1, - anon_sym_BANG, - ACTIONS(4429), 1, - sym_au_event, - ACTIONS(4431), 1, - aux_sym__autocmd_pattern_token1, - STATE(1451), 1, - sym_bang, - STATE(1867), 1, - sym__curly_braces_name_expression, - STATE(1874), 1, - sym__augroup_name, - STATE(2160), 1, - sym_au_event_list, - STATE(2268), 1, - sym_identifier, - STATE(2736), 1, - sym__autocmd_pattern, - STATE(2739), 1, - sym__autocmd_command, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4433), 2, - sym__newline_or_pipe, - sym_comment, - [59566] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2516), 4, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(2518), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [59589] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(719), 13, - sym__newline_or_pipe, - sym_comment, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [59609] = 2, + [60608] = 3, + STATE(1198), 1, + sym__hl_attr_list, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4435), 13, + ACTIONS(4408), 13, sym__hl_none, anon_sym_bold, anon_sym_underline, @@ -119607,57 +120469,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_italic, anon_sym_standout, anon_sym_nocombine, - [59629] = 10, - ACTIONS(4437), 1, - anon_sym_BANG, - ACTIONS(4439), 1, - sym_hl_group, - ACTIONS(4441), 1, - anon_sym_link, - ACTIONS(4443), 1, - anon_sym_clear, - ACTIONS(4445), 1, - sym__default, - STATE(1543), 1, - sym_bang, - STATE(2773), 1, - sym__hl_body_link, + [60631] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4386), 2, + ACTIONS(4051), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4049), 12, sym__newline_or_pipe, sym_comment, - STATE(2776), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [59665] = 4, - ACTIONS(4449), 1, - anon_sym_BSLASH_PIPE, - STATE(1321), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4447), 11, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK2, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [59689] = 2, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60654] = 3, + STATE(1205), 1, + sym__hl_attr_list, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4452), 13, + ACTIONS(4408), 13, sym__hl_none, anon_sym_bold, anon_sym_underline, @@ -119671,100 +120509,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_italic, anon_sym_standout, anon_sym_nocombine, - [59709] = 5, - ACTIONS(3762), 1, - anon_sym_BSLASH2, - ACTIONS(3764), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1357), 1, - aux_sym__plus_cmd_arg, + [60677] = 10, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3992), 1, + anon_sym_PLUS, + ACTIONS(3994), 1, + anon_sym_PLUS_PLUS, + STATE(2702), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4454), 10, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, + ACTIONS(3933), 2, aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - aux_sym_filename_token4, - [59735] = 9, - ACTIONS(3734), 1, - anon_sym_DASHnargs, - ACTIONS(3736), 1, - anon_sym_DASHcomplete, - ACTIONS(3738), 1, - anon_sym_DASHrange, - ACTIONS(3740), 1, - anon_sym_DASHcount, - ACTIONS(3742), 1, - anon_sym_DASHaddr, - ACTIONS(4456), 1, - sym_command_name, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1332), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(3744), 5, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [59769] = 6, - ACTIONS(4458), 1, - anon_sym_LBRACE2, - ACTIONS(4461), 1, - aux_sym_identifier_token2, + ACTIONS(4013), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1559), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + STATE(1577), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + [60714] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1325), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(995), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(997), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [59797] = 5, - ACTIONS(4468), 1, - anon_sym_PLUS_PLUS, + ACTIONS(4007), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4005), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60737] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1326), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - ACTIONS(4464), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4466), 6, + ACTIONS(2613), 4, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - [59823] = 2, + ACTIONS(2615), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [60760] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3019), 13, + ACTIONS(3114), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3109), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -119775,81 +120594,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59843] = 6, - ACTIONS(4471), 1, - anon_sym_LBRACE2, - ACTIONS(4473), 1, - aux_sym_identifier_token2, + [60783] = 5, + STATE(1314), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1350), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(981), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(983), 6, + ACTIONS(4412), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4410), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4101), 8, + sym__newline_or_pipe, + sym_comment, anon_sym_line, anon_sym_name, anon_sym_buffer, anon_sym_group, anon_sym_priority, anon_sym_file, - [59871] = 3, + [60810] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2516), 3, + ACTIONS(4043), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4041), 12, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, - ACTIONS(2518), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [59893] = 4, - ACTIONS(4475), 1, - anon_sym_BSLASH_PIPE, - STATE(1330), 1, - aux_sym_pattern_repeat1, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60833] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 11, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [59917] = 4, - ACTIONS(4480), 1, - anon_sym_BSLASH_PIPE, - STATE(1376), 1, - aux_sym_pattern_repeat1, + ACTIONS(4039), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4037), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60856] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4035), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4033), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [60879] = 5, + STATE(1321), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4416), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4414), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4061), 8, + sym__newline_or_pipe, + sym_comment, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [60906] = 5, + STATE(1322), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 11, + ACTIONS(4420), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4418), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4061), 8, sym__newline_or_pipe, sym_comment, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [60933] = 4, + STATE(1780), 1, + sym_pattern_multi, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4422), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3145), 9, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [60958] = 8, + ACTIONS(4424), 1, + aux_sym_argument_token2, + ACTIONS(4426), 1, + anon_sym_SLASH, + ACTIONS(4428), 1, + anon_sym_BSLASH2, + ACTIONS(4430), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1733), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2023), 3, + sym__plus_cmd_number, + sym__plus_cmd_command, + sym__plus_cmd_pattern, + ACTIONS(3808), 6, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [60991] = 10, + ACTIONS(4432), 1, + anon_sym_BSLASH, + ACTIONS(4434), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4436), 1, + anon_sym_LBRACK, + ACTIONS(4438), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2227), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3131), 2, + anon_sym_BSLASH_PIPE, + anon_sym_BSLASH_RPAREN, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1362), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61028] = 4, + ACTIONS(4442), 1, + anon_sym_BSLASH_AMP, + STATE(1320), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4313), 12, sym__normal, sym__source, sym__global, @@ -119859,38 +120813,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, anon_sym_SLASH2, - [59941] = 9, - ACTIONS(4482), 1, - sym_command_name, - ACTIONS(4484), 1, - anon_sym_DASHnargs, - ACTIONS(4487), 1, - anon_sym_DASHcomplete, - ACTIONS(4490), 1, - anon_sym_DASHrange, - ACTIONS(4493), 1, - anon_sym_DASHcount, - ACTIONS(4496), 1, - anon_sym_DASHaddr, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [61053] = 3, + STATE(1310), 1, + sym__hl_attr_list, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1332), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(4499), 5, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [59975] = 3, - STATE(1383), 1, - aux_sym_pattern_repeat1, + ACTIONS(4444), 13, + sym__hl_none, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_underdouble, + anon_sym_underdotted, + anon_sym_underdashed, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + [61076] = 4, + ACTIONS(4446), 1, + anon_sym_BSLASH_AMP, + STATE(1320), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 12, + ACTIONS(3322), 12, sym__normal, sym__source, sym__global, @@ -119903,104 +120857,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [59997] = 8, - ACTIONS(4504), 1, - anon_sym_BSLASH, - ACTIONS(4507), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - aux_sym__pattern_ordinary_atom_token2, + [61101] = 5, + STATE(1322), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1334), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3326), 3, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - ACTIONS(4513), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60029] = 9, - ACTIONS(3734), 1, - anon_sym_DASHnargs, - ACTIONS(3736), 1, - anon_sym_DASHcomplete, - ACTIONS(3738), 1, - anon_sym_DASHrange, - ACTIONS(3740), 1, - anon_sym_DASHcount, - ACTIONS(3742), 1, - anon_sym_DASHaddr, - ACTIONS(4516), 1, - sym_command_name, + ACTIONS(4420), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4418), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4071), 8, + sym__newline_or_pipe, + sym_comment, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61128] = 5, + STATE(1322), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1332), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(3744), 5, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [60063] = 3, + ACTIONS(4452), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4449), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4078), 8, + sym__newline_or_pipe, + sym_comment, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61155] = 8, + ACTIONS(4281), 1, + anon_sym_cchar, + ACTIONS(4455), 1, + aux_sym__syn_keyword_token1, + STATE(1253), 1, + aux_sym__syn_keyword_repeat2, + STATE(1484), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3126), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(3128), 10, + ACTIONS(4017), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4283), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4279), 6, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [61188] = 8, + ACTIONS(4281), 1, + anon_sym_cchar, + ACTIONS(4285), 1, + aux_sym__syn_keyword_token1, + STATE(1252), 1, + aux_sym__syn_keyword_repeat2, + STATE(1484), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4017), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4283), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(4279), 6, + anon_sym_conceal, + anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [60085] = 6, - ACTIONS(4518), 1, + [61221] = 3, + STATE(1296), 1, + sym__hl_attr_list, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4444), 13, + sym__hl_none, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_underdouble, + anon_sym_underdotted, + anon_sym_underdashed, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + [61244] = 10, + ACTIONS(4457), 1, + anon_sym_BANG, + ACTIONS(4461), 1, + sym_hl_group, + ACTIONS(4463), 1, + anon_sym_link, + ACTIONS(4465), 1, + anon_sym_clear, + ACTIONS(4467), 1, + sym__default, + STATE(1518), 1, + sym_bang, + STATE(2518), 1, + sym__hl_body_link, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4459), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + STATE(2520), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [61281] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4031), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4029), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_term, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + anon_sym_blend, + [61304] = 6, + ACTIONS(4469), 1, anon_sym_LBRACE2, - ACTIONS(4520), 1, + ACTIONS(4471), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1325), 2, + STATE(1369), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(989), 3, + ACTIONS(983), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(991), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [60113] = 9, + ACTIONS(985), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61332] = 4, + ACTIONS(4475), 1, + anon_sym_BSLASH_PIPE, + STATE(1395), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4473), 11, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK2, + [61356] = 9, + ACTIONS(3322), 1, + sym__separator, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3320), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1352), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4359), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61390] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4477), 13, + sym__hl_none, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_underdouble, + anon_sym_underdotted, + anon_sym_underdashed, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + [61410] = 9, ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(3918), 1, + ACTIONS(3998), 1, anon_sym_POUND, - ACTIONS(4522), 1, + ACTIONS(4479), 1, anon_sym_PLUS, - STATE(2384), 1, + STATE(2491), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -120014,86 +121124,78 @@ static const uint16_t ts_small_parse_table[] = { STATE(1495), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(3916), 3, + ACTIONS(3996), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60147] = 9, - ACTIONS(3299), 1, + [61444] = 4, + ACTIONS(4475), 1, + anon_sym_BSLASH_PIPE, + STATE(1329), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4481), 11, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK2, + [61468] = 3, + ACTIONS(3326), 1, sym__separator, - ACTIONS(4348), 1, - anon_sym_BSLASH, - ACTIONS(4352), 1, - anon_sym_LBRACK, - ACTIONS(4354), 1, - aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3297), 2, + ACTIONS(3324), 12, + anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - STATE(1292), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1368), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4356), 3, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60181] = 6, - STATE(1340), 1, + [61490] = 6, + STATE(1368), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4005), 2, + ACTIONS(4063), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4524), 2, + ACTIONS(4483), 2, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token7, - ACTIONS(4527), 3, + ACTIONS(4485), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4003), 5, + ACTIONS(4061), 5, sym_string_literal, anon_sym_BANG, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60209] = 6, - ACTIONS(4518), 1, - anon_sym_LBRACE2, - ACTIONS(4530), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1337), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(981), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(983), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [60237] = 3, - ACTIONS(3311), 1, + [61518] = 3, + ACTIONS(3383), 1, sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3309), 12, + ACTIONS(3381), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -120106,128 +121208,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60259] = 6, - STATE(1340), 1, + [61540] = 6, + STATE(1386), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4040), 2, + ACTIONS(4063), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4532), 2, + ACTIONS(4487), 2, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token7, - ACTIONS(4534), 3, + ACTIONS(4489), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4038), 5, + ACTIONS(4061), 5, sym_string_literal, anon_sym_BANG, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60287] = 3, - ACTIONS(3295), 1, - sym__separator, + [61568] = 10, + ACTIONS(4491), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4493), 1, + anon_sym_BSLASH, + ACTIONS(4497), 1, + anon_sym_LTexpr_GT, + ACTIONS(4499), 1, + anon_sym_LT2, + STATE(1340), 1, + aux_sym_map_statement_repeat1, + STATE(1777), 1, + sym_keycode, + STATE(1949), 1, + sym__map_lhs, + STATE(2770), 1, + sym__map_definition, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3293), 12, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60309] = 9, - ACTIONS(3734), 1, + ACTIONS(4495), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [61604] = 9, + ACTIONS(4501), 1, + sym_command_name, + ACTIONS(4503), 1, anon_sym_DASHnargs, - ACTIONS(3736), 1, + ACTIONS(4506), 1, anon_sym_DASHcomplete, - ACTIONS(3738), 1, + ACTIONS(4509), 1, anon_sym_DASHrange, - ACTIONS(3740), 1, + ACTIONS(4512), 1, anon_sym_DASHcount, - ACTIONS(3742), 1, + ACTIONS(4515), 1, anon_sym_DASHaddr, - ACTIONS(4536), 1, - sym_command_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1332), 2, + STATE(1339), 2, sym_command_attribute, aux_sym_command_statement_repeat1, - ACTIONS(3744), 5, + ACTIONS(4518), 5, anon_sym_DASHbang, anon_sym_DASHbar, anon_sym_DASHregister, anon_sym_DASHbuffer, anon_sym_DASHkeepscript, - [60343] = 5, - ACTIONS(3762), 1, - anon_sym_BSLASH2, - ACTIONS(3764), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1357), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4538), 10, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [60369] = 10, - ACTIONS(4540), 1, + [61638] = 10, + ACTIONS(4491), 1, aux_sym__bang_filter_command_argument_token1, - ACTIONS(4542), 1, + ACTIONS(4493), 1, anon_sym_BSLASH, - ACTIONS(4546), 1, + ACTIONS(4497), 1, anon_sym_LTexpr_GT, - ACTIONS(4548), 1, + ACTIONS(4499), 1, anon_sym_LT2, - STATE(1641), 1, + STATE(1687), 1, aux_sym_map_statement_repeat1, - STATE(1730), 1, + STATE(1777), 1, sym_keycode, - STATE(1907), 1, + STATE(1949), 1, sym__map_lhs, - STATE(2794), 1, + STATE(2859), 1, sym__map_definition, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4544), 5, + ACTIONS(4521), 5, anon_sym_LTbuffer_GT, anon_sym_LTnowait_GT, anon_sym_LTsilent_GT, anon_sym_LTunique_GT, anon_sym_LTscript_GT, - [60405] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4550), 3, + [61674] = 9, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + ACTIONS(4523), 1, + sym_command_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1339), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [61708] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3105), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4552), 10, + ACTIONS(3107), 10, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -120238,123 +121351,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipnl, anon_sym_skipempty, aux_sym__syn_keyword_token1, - [60427] = 6, - ACTIONS(4556), 1, - aux_sym_filename_token7, - STATE(1370), 1, - aux_sym_filename_repeat1, + [61730] = 10, + ACTIONS(4525), 1, + anon_sym_BANG, + ACTIONS(4527), 1, + sym_hl_group, + ACTIONS(4529), 1, + anon_sym_link, + ACTIONS(4531), 1, + anon_sym_clear, + ACTIONS(4533), 1, + sym__default, + STATE(1616), 1, + sym_bang, + STATE(2785), 1, + sym__hl_body_link, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3996), 2, + ACTIONS(4459), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4554), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4143), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [60455] = 6, - ACTIONS(4471), 1, - anon_sym_LBRACE2, - ACTIONS(4558), 1, - aux_sym_identifier_token2, + STATE(2786), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [61766] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1354), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(989), 3, + ACTIONS(4535), 13, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(991), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [60483] = 9, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3914), 1, - anon_sym_POUND, - ACTIONS(4522), 1, - anon_sym_PLUS, - STATE(2345), 1, - sym_filename, + [61786] = 6, + STATE(1335), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1495), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(3912), 3, + ACTIONS(4103), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4537), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4539), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4101), 5, + sym_string_literal, + anon_sym_BANG, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60517] = 6, - ACTIONS(4562), 1, + [61814] = 6, + ACTIONS(4543), 1, aux_sym_filename_token7, - STATE(1353), 1, + STATE(1347), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4038), 2, + ACTIONS(4071), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4560), 4, + ACTIONS(4541), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4040), 5, + ACTIONS(4073), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [60545] = 6, - ACTIONS(4567), 1, + [61842] = 6, + ACTIONS(4548), 1, aux_sym_filename_token7, - STATE(1353), 1, + STATE(1347), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4003), 2, + ACTIONS(4078), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4545), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4005), 5, + ACTIONS(4080), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [60573] = 6, - ACTIONS(4570), 1, + [61870] = 6, + ACTIONS(4551), 1, anon_sym_LBRACE2, - ACTIONS(4573), 1, + ACTIONS(4553), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, @@ -120362,124 +121472,160 @@ static const uint16_t ts_small_parse_table[] = { STATE(1354), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(995), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(997), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [60601] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4447), 13, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, - anon_sym_QMARK2, + ACTIONS(983), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60621] = 3, - STATE(1321), 1, - aux_sym_pattern_repeat1, + ACTIONS(985), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [61898] = 5, + ACTIONS(3814), 1, + anon_sym_BSLASH2, + ACTIONS(3816), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1374), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 12, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK2, + ACTIONS(4555), 10, + anon_sym_BSLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60643] = 5, - ACTIONS(4578), 1, - anon_sym_BSLASH2, - ACTIONS(4581), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1357), 1, - aux_sym__plus_cmd_arg, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [61924] = 5, + ACTIONS(4561), 1, + anon_sym_PLUS_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4576), 10, + STATE(1350), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + ACTIONS(4557), 4, anon_sym_BSLASH, anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4559), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_POUND, aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, aux_sym_filename_token4, - [60669] = 2, + [61950] = 9, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(4479), 1, + anon_sym_PLUS, + ACTIONS(4566), 1, + anon_sym_POUND, + STATE(2375), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 13, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, - anon_sym_QMARK2, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1495), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4564), 3, anon_sym_BSLASH_PIPE, - [60689] = 10, - ACTIONS(4540), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4542), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [61984] = 9, + ACTIONS(3342), 1, + sym__separator, + ACTIONS(4568), 1, anon_sym_BSLASH, - ACTIONS(4548), 1, - anon_sym_LT2, + ACTIONS(4571), 1, + anon_sym_LBRACK, + ACTIONS(4574), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3337), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1352), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4577), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [62018] = 6, + ACTIONS(4580), 1, + anon_sym_LBRACE2, + ACTIONS(4583), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1353), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(919), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62046] = 6, + ACTIONS(4551), 1, + anon_sym_LBRACE2, ACTIONS(4586), 1, - anon_sym_LTexpr_GT, - STATE(1367), 1, - aux_sym_map_statement_repeat1, - STATE(1730), 1, - sym_keycode, - STATE(1897), 1, - sym__map_lhs, - STATE(2561), 1, - sym__map_definition, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4584), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [60725] = 2, + STATE(1361), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(911), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(913), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [62074] = 3, + ACTIONS(3114), 1, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3293), 13, + ACTIONS(3109), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -120490,14 +121636,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60745] = 2, + [62096] = 4, + ACTIONS(4588), 1, + anon_sym_BSLASH_PIPE, + STATE(1356), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4535), 11, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62120] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3309), 13, + ACTIONS(3109), 13, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -120511,61 +121676,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60765] = 8, - ACTIONS(4224), 1, - anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, + [62140] = 4, + ACTIONS(4591), 1, + anon_sym_BSLASH_PIPE, + STATE(1360), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1334), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3297), 3, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60797] = 6, - STATE(1340), 1, - aux_sym_filename_repeat1, + ACTIONS(4473), 11, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, + [62164] = 11, + ACTIONS(4595), 1, + anon_sym_detect, + ACTIONS(4597), 1, + anon_sym_plugin, + ACTIONS(4599), 1, + anon_sym_indent, + STATE(2633), 1, + sym__filetype_state, + STATE(2634), 1, + sym__filetype_enable, + STATE(2635), 1, + sym__filetype_detect, + STATE(2636), 1, + sym__filetype_plugin, + STATE(2638), 1, + sym__filetype_indent, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4125), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4532), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4534), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4062), 5, - sym_string_literal, - anon_sym_BANG, + ACTIONS(4593), 2, + anon_sym_on, + anon_sym_off, + ACTIONS(4601), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [60825] = 4, - ACTIONS(4588), 1, + [62202] = 4, + ACTIONS(4603), 1, anon_sym_BSLASH_PIPE, - STATE(1364), 1, + STATE(1360), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 11, + ACTIONS(4535), 11, sym__newline_or_pipe, sym_comment, sym__normal, @@ -120576,170 +121742,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_QMARK2, - [60849] = 6, - STATE(1343), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4125), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4591), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4593), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4062), 5, - sym_string_literal, - anon_sym_BANG, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [60877] = 3, + anon_sym_SLASH2, + [62226] = 6, + ACTIONS(4606), 1, + anon_sym_LBRACE2, + ACTIONS(4609), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3038), 3, + STATE(1361), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(919), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(3040), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [60899] = 10, - ACTIONS(4540), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4542), 1, - anon_sym_BSLASH, - ACTIONS(4548), 1, - anon_sym_LT2, - ACTIONS(4586), 1, - anon_sym_LTexpr_GT, - STATE(1641), 1, - aux_sym_map_statement_repeat1, - STATE(1730), 1, - sym_keycode, - STATE(1897), 1, - sym__map_lhs, - STATE(2395), 1, - sym__map_definition, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4544), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [60935] = 9, - ACTIONS(3331), 1, - sym__separator, - ACTIONS(4595), 1, + ACTIONS(921), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [62254] = 8, + ACTIONS(4612), 1, anon_sym_BSLASH, - ACTIONS(4598), 1, + ACTIONS(4615), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4618), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3326), 2, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - STATE(1292), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1368), 2, + STATE(1362), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4604), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60969] = 3, - ACTIONS(3024), 1, - sym__separator, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3019), 12, - anon_sym_BSLASH, + ACTIONS(3337), 3, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_RPAREN, + ACTIONS(4621), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60991] = 6, - ACTIONS(4562), 1, - aux_sym_filename_token7, - STATE(1353), 1, - aux_sym_filename_repeat1, + [62286] = 6, + ACTIONS(4624), 1, + anon_sym_LBRACE2, + ACTIONS(4626), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4062), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4560), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4125), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [61019] = 6, - ACTIONS(4609), 1, - aux_sym_filename_token7, - STATE(1352), 1, - aux_sym_filename_repeat1, + STATE(1353), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(911), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62314] = 6, + ACTIONS(4624), 1, + anon_sym_LBRACE2, + ACTIONS(4628), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4062), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4607), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4125), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [61047] = 9, + STATE(1363), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(983), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62342] = 9, ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(4522), 1, - anon_sym_PLUS, - ACTIONS(4613), 1, + ACTIONS(3988), 1, anon_sym_POUND, - STATE(2569), 1, + ACTIONS(4479), 1, + anon_sym_PLUS, + STATE(2422), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -120753,248 +121854,241 @@ static const uint16_t ts_small_parse_table[] = { STATE(1495), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(4611), 3, + ACTIONS(3986), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62376] = 3, + STATE(1356), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4473), 12, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61081] = 6, - STATE(1363), 1, + [62398] = 9, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + ACTIONS(4630), 1, + sym_command_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1339), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [62432] = 6, + STATE(1368), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4143), 2, + ACTIONS(4080), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4615), 2, + ACTIONS(4632), 2, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token7, - ACTIONS(4617), 3, + ACTIONS(4635), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(3996), 5, + ACTIONS(4078), 5, sym_string_literal, anon_sym_BANG, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61109] = 4, - ACTIONS(4480), 1, - anon_sym_BSLASH_PIPE, - STATE(1331), 1, - aux_sym_pattern_repeat1, + [62460] = 6, + ACTIONS(4469), 1, + anon_sym_LBRACE2, + ACTIONS(4638), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 11, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, - [61133] = 10, - ACTIONS(4540), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4542), 1, - anon_sym_BSLASH, - ACTIONS(4546), 1, - anon_sym_LTexpr_GT, - ACTIONS(4548), 1, - anon_sym_LT2, - STATE(1347), 1, - aux_sym_map_statement_repeat1, - STATE(1730), 1, - sym_keycode, - STATE(1907), 1, - sym__map_lhs, - STATE(2746), 1, - sym__map_definition, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4619), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [61169] = 4, - ACTIONS(4621), 1, + STATE(1370), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(911), 3, anon_sym_BSLASH_PIPE, - STATE(1376), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4447), 11, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_SLASH2, - [61193] = 6, - ACTIONS(4624), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(913), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [62488] = 6, + ACTIONS(4640), 1, anon_sym_LBRACE2, - ACTIONS(4627), 1, + ACTIONS(4643), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1377), 2, + STATE(1370), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(995), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, + ACTIONS(919), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61221] = 12, - ACTIONS(4089), 1, - anon_sym_LBRACE, - ACTIONS(4091), 1, - aux_sym_identifier_token1, - ACTIONS(4097), 1, - sym_au_event, - ACTIONS(4099), 1, - aux_sym__autocmd_pattern_token1, - STATE(1743), 1, - sym__curly_braces_name_expression, - STATE(1807), 1, - sym__augroup_name, - STATE(2072), 1, - sym_au_event_list, - STATE(2132), 1, - sym_identifier, - STATE(2407), 1, - sym__autocmd_command, - STATE(2408), 1, - sym__autocmd_pattern, + ACTIONS(921), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [62516] = 5, + ACTIONS(3814), 1, + anon_sym_BSLASH2, + ACTIONS(3816), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1374), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4630), 3, + ACTIONS(4646), 10, + anon_sym_BSLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61261] = 3, - STATE(1356), 1, - aux_sym_pattern_repeat1, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [62542] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 12, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [61283] = 11, - ACTIONS(4634), 1, - anon_sym_detect, - ACTIONS(4636), 1, - anon_sym_plugin, - ACTIONS(4638), 1, - anon_sym_indent, - STATE(2277), 1, - sym__filetype_detect, - STATE(2392), 1, - sym__filetype_plugin, - STATE(2449), 1, - sym__filetype_indent, - STATE(2454), 1, - sym__filetype_enable, - STATE(2458), 1, - sym__filetype_state, + ACTIONS(4648), 13, + sym__hl_none, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_underdouble, + anon_sym_underdotted, + anon_sym_underdashed, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + [62562] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4632), 2, - anon_sym_on, - anon_sym_off, - ACTIONS(4640), 3, + ACTIONS(3324), 13, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [61321] = 6, - ACTIONS(4642), 1, - anon_sym_LBRACE2, - ACTIONS(4644), 1, - aux_sym_identifier_token2, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [62582] = 5, + ACTIONS(4652), 1, + anon_sym_BSLASH2, + ACTIONS(4655), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1374), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1377), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(989), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, + ACTIONS(4650), 10, + anon_sym_BSLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61349] = 9, - ACTIONS(3734), 1, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [62608] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(719), 13, + sym__newline_or_pipe, + sym_comment, + sym_command_name, anon_sym_DASHnargs, - ACTIONS(3736), 1, anon_sym_DASHcomplete, - ACTIONS(3738), 1, anon_sym_DASHrange, - ACTIONS(3740), 1, anon_sym_DASHcount, - ACTIONS(3742), 1, anon_sym_DASHaddr, - ACTIONS(4646), 1, - sym_command_name, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1332), 2, - sym_command_attribute, - aux_sym_command_statement_repeat1, - ACTIONS(3744), 5, anon_sym_DASHbang, anon_sym_DASHbar, anon_sym_DASHregister, anon_sym_DASHbuffer, anon_sym_DASHkeepscript, - [61383] = 3, - STATE(1330), 1, + [62628] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3381), 13, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [62648] = 3, + STATE(1378), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 12, + ACTIONS(4481), 12, sym__normal, sym__source, sym__global, @@ -121003,21 +122097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_SLASH2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61405] = 4, - ACTIONS(4648), 1, - anon_sym_BSLASH_PIPE, - STATE(1386), 1, + [62670] = 3, + STATE(1389), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 11, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4473), 12, sym__normal, sym__source, sym__global, @@ -121027,37 +122117,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, anon_sym_QMARK2, - [61429] = 6, - ACTIONS(4642), 1, - anon_sym_LBRACE2, - ACTIONS(4650), 1, - aux_sym_identifier_token2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62692] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1381), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(981), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, + ACTIONS(3304), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(3306), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [62714] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4658), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [61457] = 4, - ACTIONS(4648), 1, + ACTIONS(4660), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [62736] = 4, + ACTIONS(4591), 1, anon_sym_BSLASH_PIPE, - STATE(1364), 1, + STATE(1358), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 11, + ACTIONS(4481), 11, sym__newline_or_pipe, sym_comment, sym__normal, @@ -121068,408 +122177,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_QMARK2, - [61481] = 6, - ACTIONS(3813), 1, - anon_sym_BSLASH2, - ACTIONS(3815), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1388), 1, - aux_sym__plus_cmd_arg, + anon_sym_SLASH2, + [62760] = 10, + ACTIONS(4491), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4493), 1, + anon_sym_BSLASH, + ACTIONS(4499), 1, + anon_sym_LT2, + ACTIONS(4664), 1, + anon_sym_LTexpr_GT, + STATE(1392), 1, + aux_sym_map_statement_repeat1, + STATE(1777), 1, + sym_keycode, + STATE(1919), 1, + sym__map_lhs, + STATE(2511), 1, + sym__map_definition, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4662), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [62796] = 6, + ACTIONS(4543), 1, + aux_sym_filename_token7, + STATE(1347), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4652), 2, + ACTIONS(4061), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4538), 7, + ACTIONS(4541), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4063), 5, anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [61508] = 6, - ACTIONS(4654), 1, - anon_sym_BSLASH2, - ACTIONS(4657), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1388), 1, - aux_sym__plus_cmd_arg, + [62824] = 9, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + ACTIONS(4666), 1, + sym_command_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1339), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [62858] = 6, + ACTIONS(4670), 1, + aux_sym_filename_token7, + STATE(1346), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4660), 2, + ACTIONS(4061), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4576), 7, + ACTIONS(4668), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4063), 5, anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [61535] = 4, - ACTIONS(4662), 1, - anon_sym_BSLASH_AMP, - STATE(1412), 1, - aux_sym__pattern_branch_repeat1, + [62886] = 6, + STATE(1368), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 10, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, + ACTIONS(4073), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4483), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4485), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4071), 5, + sym_string_literal, anon_sym_BANG, - anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - [61558] = 4, - ACTIONS(4664), 1, - anon_sym_BSLASH_AMP, - STATE(1436), 1, - aux_sym__pattern_branch_repeat1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62914] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 10, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [61581] = 6, - ACTIONS(3813), 1, - anon_sym_BSLASH2, - ACTIONS(3815), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1388), 1, - aux_sym__plus_cmd_arg, + ACTIONS(2613), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + ACTIONS(2615), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [62936] = 6, + ACTIONS(4674), 1, + aux_sym_filename_token7, + STATE(1383), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4666), 2, + ACTIONS(4101), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4454), 7, + ACTIONS(4672), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4103), 5, anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [61608] = 10, - ACTIONS(4668), 1, - aux_sym_option_name_token1, - ACTIONS(4670), 1, - anon_sym_t_, - ACTIONS(4672), 1, - anon_sym_all, - ACTIONS(4674), 1, - anon_sym_all_AMP, + [62964] = 4, ACTIONS(4676), 1, - sym__no, - ACTIONS(4678), 1, - sym__inv, - STATE(1547), 1, - sym_option_name, - STATE(2423), 1, - sym_set_item, + anon_sym_BSLASH_PIPE, + STATE(1389), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1697), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [61643] = 3, + ACTIONS(4535), 11, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [62988] = 12, + ACTIONS(4134), 1, + anon_sym_LBRACE, + ACTIONS(4136), 1, + aux_sym_identifier_token1, + ACTIONS(4142), 1, + sym_au_event, + ACTIONS(4144), 1, + aux_sym__autocmd_pattern_token1, + STATE(1745), 1, + sym__curly_braces_name_expression, + STATE(1845), 1, + sym__augroup_name, + STATE(2075), 1, + sym_identifier, + STATE(2086), 1, + sym_au_event_list, + STATE(2569), 1, + sym__autocmd_command, + STATE(2571), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3703), 10, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(4679), 3, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [61664] = 9, - ACTIONS(4224), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [63028] = 8, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(3109), 1, - sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [61697] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3709), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3707), 10, - anon_sym_BSLASH, + STATE(1362), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3320), 3, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_RPAREN, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [61718] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2690), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1713), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1753), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [61751] = 9, - ACTIONS(3859), 1, + [63060] = 10, + ACTIONS(4491), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4493), 1, anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2690), 1, - sym_filename, + ACTIONS(4499), 1, + anon_sym_LT2, + ACTIONS(4664), 1, + anon_sym_LTexpr_GT, + STATE(1687), 1, + aux_sym_map_statement_repeat1, + STATE(1777), 1, + sym_keycode, + STATE(1919), 1, + sym__map_lhs, + STATE(2551), 1, + sym__map_definition, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1409), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1753), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [61784] = 9, - ACTIONS(4348), 1, - anon_sym_BSLASH, - ACTIONS(4352), 1, - anon_sym_LBRACK, - ACTIONS(4354), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, - sym__pattern_branch, - STATE(3041), 1, - sym_pattern, + ACTIONS(4521), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [63096] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1292), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4356), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [61817] = 7, - ACTIONS(3691), 1, - anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_identifier_token1, - STATE(1385), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3699), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4680), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - STATE(1433), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [61846] = 7, - ACTIONS(4115), 1, - anon_sym_cchar, - ACTIONS(4682), 1, - aux_sym__syn_keyword_token1, - STATE(1483), 1, - aux_sym__syn_keyword_repeat1, - STATE(1670), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4117), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4113), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [61875] = 9, - ACTIONS(3505), 1, - anon_sym_BSLASH, - ACTIONS(3509), 1, - anon_sym_LBRACK, - ACTIONS(4684), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1458), 1, - sym_pattern, - STATE(1527), 1, - sym__pattern_branch, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(990), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(998), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3513), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [61908] = 5, - ACTIONS(3843), 1, - anon_sym_BSLASH2, - ACTIONS(3845), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1442), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4454), 9, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [61933] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2708), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1713), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1775), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [61966] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2708), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1410), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1775), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [61999] = 3, - ACTIONS(4688), 1, - sym__wincmd, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4686), 11, + ACTIONS(4535), 13, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, @@ -121478,959 +122449,570 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [62020] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3992), 1, - anon_sym_POUND, - ACTIONS(4690), 1, - anon_sym_PLUS, - STATE(2779), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(3916), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1576), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [62053] = 5, - ACTIONS(4692), 1, - anon_sym_PLUS_PLUS, + [63116] = 9, + ACTIONS(3827), 1, + anon_sym_DASHnargs, + ACTIONS(3829), 1, + anon_sym_DASHcomplete, + ACTIONS(3831), 1, + anon_sym_DASHrange, + ACTIONS(3833), 1, + anon_sym_DASHcount, + ACTIONS(3835), 1, + anon_sym_DASHaddr, + ACTIONS(4681), 1, + sym_command_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1407), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - ACTIONS(4464), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4466), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - [62078] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3985), 1, - anon_sym_POUND, - ACTIONS(4690), 1, - anon_sym_PLUS, - STATE(2712), 1, - sym_filename, + STATE(1339), 2, + sym_command_attribute, + aux_sym_command_statement_repeat1, + ACTIONS(3837), 5, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [63150] = 4, + ACTIONS(4683), 1, + anon_sym_BSLASH_PIPE, + STATE(1395), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(3912), 2, + ACTIONS(4535), 11, sym__newline_or_pipe, sym_comment, - STATE(1576), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [62111] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2787), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1713), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1735), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [62144] = 9, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2780), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1713), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1727), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [62177] = 9, - ACTIONS(4066), 1, - anon_sym_BSLASH, - ACTIONS(4070), 1, - anon_sym_LBRACK, - ACTIONS(4695), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2244), 1, - sym__pattern_branch, - STATE(2304), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1204), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1206), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4074), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [62210] = 4, - ACTIONS(4697), 1, - anon_sym_BSLASH_AMP, - STATE(1412), 1, - aux_sym__pattern_branch_repeat1, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK2, + [63174] = 3, + STATE(1366), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4481), 12, sym__normal, sym__source, sym__global, sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_QMARK2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_SLASH2, anon_sym_BSLASH_PIPE, - [62233] = 9, - ACTIONS(4348), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [63196] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(3050), 1, + STATE(3177), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62266] = 9, - ACTIONS(2949), 1, + [63229] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(2955), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4700), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1379), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(1459), 1, + STATE(2970), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(835), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(836), 2, + STATE(1317), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(2959), 3, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62299] = 9, - ACTIONS(3056), 1, - anon_sym_BSLASH, - ACTIONS(3060), 1, - anon_sym_LBRACK, - ACTIONS(4702), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1333), 1, - sym__pattern_branch, - STATE(1458), 1, - sym_pattern, + [63262] = 3, + ACTIONS(4686), 1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(855), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(856), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3064), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [62332] = 6, - ACTIONS(4706), 1, - aux_sym_filename_token7, - STATE(1426), 1, - aux_sym_filename_repeat1, + ACTIONS(4688), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [63283] = 4, + ACTIONS(4690), 1, + anon_sym_BSLASH_AMP, + STATE(1475), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4143), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(3996), 4, + ACTIONS(4313), 10, sym__newline_or_pipe, - sym_string_literal, sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, anon_sym_BANG, - ACTIONS(4704), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [62359] = 8, - ACTIONS(4326), 1, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + [63306] = 3, + ACTIONS(4692), 1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4688), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [63327] = 8, + ACTIONS(4375), 1, anon_sym_BSLASH, - STATE(1708), 1, + STATE(1668), 1, aux_sym_runtime_statement_repeat1, - STATE(1885), 1, - sym__runtime_where, - STATE(1901), 1, + STATE(1814), 1, sym_filename, + STATE(1925), 1, + sym__runtime_where, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4328), 2, + ACTIONS(4377), 2, aux_sym_filename_token1, aux_sym_filename_token3, - ACTIONS(4330), 2, + ACTIONS(4379), 2, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4270), 4, + ACTIONS(4317), 4, anon_sym_START, anon_sym_OPT, anon_sym_PACK, anon_sym_ALL, - [62390] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3703), 12, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [62409] = 9, - ACTIONS(3432), 1, - anon_sym_BSLASH, - ACTIONS(3436), 1, - anon_sym_LBRACK, - ACTIONS(4708), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1459), 1, - sym_pattern, - STATE(1531), 1, - sym__pattern_branch, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(981), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1003), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3440), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [62442] = 9, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2344), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1468), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1715), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [62475] = 8, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(4710), 1, - anon_sym_PLUS, - STATE(2578), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1586), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4712), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [62506] = 7, - ACTIONS(4115), 1, - anon_sym_cchar, - ACTIONS(4714), 1, - aux_sym__syn_keyword_token1, - STATE(1400), 1, - aux_sym__syn_keyword_repeat1, - STATE(1670), 1, - sym__syn_arguments_keyword, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4117), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4113), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [62535] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3707), 12, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [62554] = 6, - ACTIONS(4718), 1, - aux_sym_filename_token7, - STATE(1452), 1, - aux_sym_filename_repeat1, + [63358] = 6, + ACTIONS(4694), 1, + anon_sym_LBRACE2, + ACTIONS(4697), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4125), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4062), 4, + ACTIONS(919), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, - anon_sym_BANG, - ACTIONS(4716), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [62581] = 10, - ACTIONS(4720), 1, - aux_sym_option_name_token1, - ACTIONS(4722), 1, - anon_sym_t_, - ACTIONS(4724), 1, - anon_sym_all, - ACTIONS(4726), 1, - anon_sym_all_AMP, - ACTIONS(4728), 1, - sym__no, - ACTIONS(4730), 1, - sym__inv, - STATE(1443), 1, - sym_option_name, - STATE(2251), 1, - sym_set_item, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1598), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [62616] = 6, - ACTIONS(4734), 1, - aux_sym_filename_token7, - STATE(1456), 1, + STATE(1403), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [63385] = 5, + STATE(1405), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4125), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4062), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - anon_sym_BANG, - ACTIONS(4732), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, + ACTIONS(4702), 2, aux_sym_filename_token6, aux_sym_filename_token8, - [62643] = 3, - ACTIONS(4736), 1, - anon_sym_EQ2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4738), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [62664] = 3, - ACTIONS(4740), 1, - anon_sym_EQ2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4738), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [62685] = 8, - ACTIONS(4388), 1, - sym_hl_group, - ACTIONS(4390), 1, - anon_sym_link, - ACTIONS(4392), 1, - anon_sym_clear, - ACTIONS(4394), 1, - sym__default, - STATE(2547), 1, - sym__hl_body_link, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4742), 3, + ACTIONS(4700), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4071), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(2386), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [62716] = 5, - ACTIONS(3843), 1, - anon_sym_BSLASH2, - ACTIONS(3845), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1442), 1, - aux_sym__plus_cmd_arg, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [63410] = 5, + STATE(1405), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4538), 9, - anon_sym_BSLASH, - anon_sym_PLUS, + ACTIONS(4707), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4704), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4078), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [62741] = 8, - ACTIONS(4272), 1, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [63435] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - STATE(1652), 1, - aux_sym_runtime_statement_repeat1, - STATE(1854), 1, - sym_filename, - STATE(1937), 1, - sym__runtime_where, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2599), 1, + sym__pattern_branch, + STATE(3134), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4276), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4278), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4270), 4, - anon_sym_START, - anon_sym_OPT, - anon_sym_PACK, - anon_sym_ALL, - [62772] = 9, - ACTIONS(4348), 1, + STATE(1277), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4359), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [63468] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(2942), 1, + STATE(3018), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62805] = 7, - ACTIONS(4747), 1, - anon_sym_LBRACE, - ACTIONS(4750), 1, - aux_sym_identifier_token1, - STATE(1385), 1, - sym__curly_braces_name_expression, + [63501] = 9, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2599), 1, + sym__pattern_branch, + STATE(3087), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4744), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4753), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - STATE(1433), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [62834] = 4, - ACTIONS(4755), 1, - anon_sym_BSLASH_AMP, - STATE(1434), 1, - aux_sym__pattern_branch_repeat1, + STATE(1277), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4359), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [63534] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 10, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_SLASH2, + ACTIONS(2131), 5, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [62857] = 9, - ACTIONS(4348), 1, + ACTIONS(2129), 7, + anon_sym_BANG, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [63555] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(2930), 1, + STATE(3057), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62890] = 4, - ACTIONS(4758), 1, - anon_sym_BSLASH_AMP, - STATE(1436), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3299), 10, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [62913] = 9, - ACTIONS(3495), 1, + [63588] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(3499), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1565), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(1595), 1, + STATE(3005), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(988), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(997), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3503), 3, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62946] = 9, - ACTIONS(3422), 1, + [63621] = 9, + ACTIONS(3531), 1, anon_sym_BSLASH, - ACTIONS(3426), 1, + ACTIONS(3535), 1, anon_sym_LBRACK, - ACTIONS(4763), 1, + ACTIONS(4710), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1567), 1, - sym__pattern_branch, - STATE(1592), 1, + STATE(1500), 1, sym_pattern, + STATE(1556), 1, + sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(979), 2, + STATE(1006), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(980), 2, + STATE(1011), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3430), 3, + ACTIONS(3539), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62979] = 13, - ACTIONS(4765), 1, - anon_sym_define, - ACTIONS(4767), 1, - anon_sym_undefine, - ACTIONS(4769), 1, - anon_sym_list, - ACTIONS(4771), 1, - anon_sym_place, - ACTIONS(4773), 1, - anon_sym_unplace, - ACTIONS(4775), 1, - anon_sym_jump, - STATE(2462), 1, - sym__sign_jump, - STATE(2463), 1, - sym__sign_unplace, - STATE(2465), 1, - sym__sign_place, - STATE(2470), 1, - sym__sign_list, - STATE(2471), 1, - sym__sign_undefine, - STATE(2472), 1, - sym__sign_define, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [63020] = 10, - ACTIONS(4720), 1, - aux_sym_option_name_token1, - ACTIONS(4722), 1, - anon_sym_t_, - ACTIONS(4724), 1, - anon_sym_all, - ACTIONS(4726), 1, - anon_sym_all_AMP, - ACTIONS(4728), 1, - sym__no, - ACTIONS(4730), 1, - sym__inv, - STATE(1443), 1, - sym_option_name, - STATE(2107), 1, - sym_set_item, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1598), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [63055] = 10, - ACTIONS(4720), 1, - aux_sym_option_name_token1, - ACTIONS(4722), 1, - anon_sym_t_, - ACTIONS(4724), 1, - anon_sym_all, - ACTIONS(4726), 1, - anon_sym_all_AMP, - ACTIONS(4728), 1, - sym__no, - ACTIONS(4730), 1, - sym__inv, - STATE(1443), 1, - sym_option_name, - STATE(2108), 1, - sym_set_item, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1598), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [63090] = 5, - ACTIONS(4777), 1, - anon_sym_BSLASH2, - ACTIONS(4780), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1442), 1, - aux_sym__plus_cmd_arg, + [63654] = 7, + ACTIONS(4021), 1, + anon_sym_cchar, + ACTIONS(4712), 1, + aux_sym__syn_keyword_token1, + STATE(1488), 1, + aux_sym__syn_keyword_repeat1, + STATE(1638), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4576), 9, + ACTIONS(4023), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4019), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [63683] = 9, + ACTIONS(3550), 1, anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [63115] = 6, - ACTIONS(4783), 1, - anon_sym_BANG, - ACTIONS(4785), 1, - anon_sym_AMP, - ACTIONS(4787), 1, - anon_sym_QMARK, + ACTIONS(3554), 1, + anon_sym_LBRACK, + ACTIONS(4714), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1534), 1, + sym_pattern, + STATE(1634), 1, + sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4791), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(4789), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [63142] = 5, - ACTIONS(4793), 1, - anon_sym_PLUS_PLUS, + STATE(989), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1014), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3558), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [63716] = 9, + ACTIONS(3451), 1, + anon_sym_BSLASH, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(4716), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1548), 1, + sym_pattern, + STATE(1579), 1, + sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1444), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - ACTIONS(4464), 4, + STATE(991), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(992), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3459), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [63749] = 9, + ACTIONS(3925), 1, anon_sym_BSLASH, + ACTIONS(4718), 1, anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4466), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token4, - [63167] = 2, + ACTIONS(4720), 1, + anon_sym_POUND, + STATE(2731), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4576), 12, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, + ACTIONS(3933), 2, aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [63186] = 5, - STATE(1446), 1, + ACTIONS(4564), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1555), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [63782] = 6, + ACTIONS(4724), 1, + aux_sym_filename_token7, + STATE(1490), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4799), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4796), 3, + ACTIONS(4103), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4101), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BANG, + ACTIONS(4722), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4003), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [63211] = 5, - STATE(1446), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4804), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4802), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4038), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [63236] = 3, + [63809] = 9, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + STATE(2774), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4550), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4552), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [63257] = 4, - ACTIONS(4806), 1, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1719), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1746), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [63842] = 4, + ACTIONS(4726), 1, anon_sym_BSLASH_AMP, - STATE(1478), 1, + STATE(1513), 1, aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 10, + ACTIONS(4313), 10, sym__newline_or_pipe, sym_comment, sym__normal, @@ -122441,845 +123023,1174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_SLASH2, anon_sym_BSLASH_PIPE, - [63280] = 6, - ACTIONS(4808), 1, - anon_sym_LBRACE2, - ACTIONS(4811), 1, - aux_sym_identifier_token2, + [63865] = 9, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2599), 1, + sym__pattern_branch, + STATE(3040), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(995), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1450), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(997), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [63307] = 12, - ACTIONS(4423), 1, - anon_sym_LBRACE, - ACTIONS(4425), 1, - aux_sym_identifier_token1, - ACTIONS(4429), 1, - sym_au_event, - ACTIONS(4431), 1, - aux_sym__autocmd_pattern_token1, - STATE(1867), 1, - sym__curly_braces_name_expression, - STATE(1918), 1, - sym__augroup_name, - STATE(2225), 1, - sym_au_event_list, - STATE(2268), 1, - sym_identifier, - STATE(2785), 1, - sym__autocmd_pattern, - STATE(2788), 1, - sym__autocmd_command, + STATE(1277), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4359), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [63898] = 13, + ACTIONS(4728), 1, + anon_sym_define, + ACTIONS(4730), 1, + anon_sym_undefine, + ACTIONS(4732), 1, + anon_sym_list, + ACTIONS(4734), 1, + anon_sym_place, + ACTIONS(4736), 1, + anon_sym_unplace, + ACTIONS(4738), 1, + anon_sym_jump, + STATE(2611), 1, + sym__sign_define, + STATE(2613), 1, + sym__sign_undefine, + STATE(2619), 1, + sym__sign_list, + STATE(2625), 1, + sym__sign_place, + STATE(2626), 1, + sym__sign_unplace, + STATE(2629), 1, + sym__sign_jump, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4814), 2, - sym__newline_or_pipe, - sym_comment, - [63346] = 6, - ACTIONS(4734), 1, - aux_sym_filename_token7, - STATE(1456), 1, - aux_sym_filename_repeat1, + [63939] = 9, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + STATE(2774), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4040), 2, - aux_sym__bang_filter_command_argument_token1, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1445), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1746), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [63972] = 10, + ACTIONS(4740), 1, + aux_sym_option_name_token1, + ACTIONS(4742), 1, + anon_sym_t_, + ACTIONS(4744), 1, + anon_sym_all, + ACTIONS(4746), 1, + anon_sym_all_AMP, + ACTIONS(4748), 1, + sym__no, + ACTIONS(4750), 1, + sym__inv, + STATE(1451), 1, + sym_option_name, + STATE(2129), 1, + sym_set_item, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1565), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [64007] = 9, + ACTIONS(4432), 1, + anon_sym_BSLASH, + ACTIONS(4436), 1, + anon_sym_LBRACK, + ACTIONS(4438), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2306), 1, + sym__pattern_branch, + STATE(3002), 1, + sym_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64040] = 9, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(4038), 4, + ACTIONS(4166), 1, + anon_sym_POUND, + ACTIONS(4718), 1, + anon_sym_PLUS, + STATE(2768), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(3996), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, + STATE(1555), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [64073] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2159), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(2157), 7, anon_sym_BANG, - ACTIONS(4732), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [63373] = 9, - ACTIONS(4348), 1, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [64094] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(3214), 1, + STATE(2945), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63406] = 3, + [64127] = 10, + ACTIONS(4740), 1, + aux_sym_option_name_token1, + ACTIONS(4742), 1, + anon_sym_t_, + ACTIONS(4744), 1, + anon_sym_all, + ACTIONS(4746), 1, + anon_sym_all_AMP, + ACTIONS(4748), 1, + sym__no, + ACTIONS(4750), 1, + sym__inv, + STATE(1451), 1, + sym_option_name, + STATE(2133), 1, + sym_set_item, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3126), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3128), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [63427] = 9, - ACTIONS(4224), 1, + STATE(1565), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [64162] = 10, + ACTIONS(4740), 1, + aux_sym_option_name_token1, + ACTIONS(4742), 1, + anon_sym_t_, + ACTIONS(4744), 1, + anon_sym_all, + ACTIONS(4746), 1, + anon_sym_all_AMP, + ACTIONS(4748), 1, + sym__no, + ACTIONS(4750), 1, + sym__inv, + STATE(1451), 1, + sym_option_name, + STATE(2267), 1, + sym_set_item, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1565), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [64197] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(3218), 1, + STATE(3052), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63460] = 6, - ACTIONS(4819), 1, - aux_sym_filename_token7, - STATE(1456), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4005), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4003), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - anon_sym_BANG, - ACTIONS(4816), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [63487] = 6, - ACTIONS(4822), 1, - anon_sym_LBRACE2, - ACTIONS(4824), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(989), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1466), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [63514] = 3, - ACTIONS(4828), 1, - anon_sym_SLASH2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4826), 11, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [63535] = 3, - ACTIONS(4828), 1, - anon_sym_QMARK2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4826), 11, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [63556] = 9, - ACTIONS(4348), 1, + [64230] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(3131), 1, + STATE(3181), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63589] = 9, - ACTIONS(4348), 1, + [64263] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(3153), 1, + STATE(2940), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63622] = 5, - STATE(1446), 1, + [64296] = 5, + STATE(1405), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4804), 2, + ACTIONS(4702), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4802), 3, + ACTIONS(4700), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4062), 6, + ACTIONS(4061), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_buffer, anon_sym_group, anon_sym_file, - [63647] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3038), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3040), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [63668] = 3, + [64321] = 5, + STATE(1404), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 5, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(4754), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4752), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4061), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2151), 7, - anon_sym_BANG, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [63689] = 9, - ACTIONS(4348), 1, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [64346] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(3188), 1, + STATE(3194), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63722] = 6, - ACTIONS(4830), 1, - anon_sym_LBRACE2, - ACTIONS(4833), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(995), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1466), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(997), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [63749] = 5, - STATE(1447), 1, - aux_sym_filename_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4838), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4836), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4062), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [63774] = 9, - ACTIONS(4256), 1, + [64379] = 9, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(4260), 1, + ACTIONS(4329), 1, anon_sym_PLUS, - ACTIONS(4262), 1, + ACTIONS(4331), 1, anon_sym_PLUS_PLUS, - STATE(2394), 1, + STATE(2665), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3786), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1713), 2, + STATE(1442), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1726), 2, + STATE(1749), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [63807] = 4, - ACTIONS(4840), 1, - anon_sym_BSLASH_AMP, - STATE(1434), 1, - aux_sym__pattern_branch_repeat1, + [64412] = 9, + ACTIONS(4432), 1, + anon_sym_BSLASH, + ACTIONS(4436), 1, + anon_sym_LBRACK, + ACTIONS(4438), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2306), 1, + sym__pattern_branch, + STATE(2898), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 10, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [63830] = 6, - ACTIONS(4842), 1, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64445] = 6, + ACTIONS(4756), 1, anon_sym_LBRACE2, - ACTIONS(4844), 1, + ACTIONS(4758), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(989), 2, + ACTIONS(911), 2, sym__newline_or_pipe, sym_comment, - STATE(1450), 2, + STATE(1403), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(991), 6, + ACTIONS(913), 6, anon_sym_icon, anon_sym_linehl, anon_sym_numhl, anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [63857] = 8, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(4710), 1, - anon_sym_PLUS, - STATE(2398), 1, - sym_filename, + [64472] = 7, + ACTIONS(3713), 1, + anon_sym_LBRACE, + ACTIONS(3715), 1, + aux_sym_identifier_token1, + STATE(1364), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1586), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4846), 3, + ACTIONS(3721), 2, + sym__scope_dict, + anon_sym_a_COLON, + ACTIONS(4760), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [63888] = 9, - ACTIONS(4348), 1, + STATE(1452), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [64501] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3707), 12, anon_sym_BSLASH, - ACTIONS(4352), 1, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, - ACTIONS(4354), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [64520] = 9, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2599), 1, sym__pattern_branch, - STATE(3168), 1, + STATE(2882), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63921] = 6, - ACTIONS(4848), 1, - anon_sym_LBRACE2, - ACTIONS(4851), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1473), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(997), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(995), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - [63948] = 8, - ACTIONS(3774), 1, + [64553] = 9, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(4710), 1, + ACTIONS(4329), 1, anon_sym_PLUS, - STATE(2401), 1, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + STATE(2803), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3786), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1586), 2, + STATE(1719), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1725), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(3969), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [63979] = 9, - ACTIONS(4348), 1, - anon_sym_BSLASH, - ACTIONS(4352), 1, - anon_sym_LBRACK, - ACTIONS(4354), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, - sym__pattern_branch, - STATE(3122), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1291), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1292), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4356), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64012] = 9, - ACTIONS(4256), 1, + [64586] = 9, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(4260), 1, + ACTIONS(4329), 1, anon_sym_PLUS, - ACTIONS(4262), 1, + ACTIONS(4331), 1, anon_sym_PLUS_PLUS, - STATE(2418), 1, + STATE(2665), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3786), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1709), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - STATE(1713), 2, + STATE(1719), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - [64045] = 7, - ACTIONS(4115), 1, + STATE(1749), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [64619] = 7, + ACTIONS(4021), 1, anon_sym_cchar, - ACTIONS(4854), 1, + ACTIONS(4762), 1, aux_sym__syn_keyword_token1, - STATE(1483), 1, + STATE(1488), 1, aux_sym__syn_keyword_repeat1, - STATE(1670), 1, + STATE(1638), 1, sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4117), 2, + ACTIONS(4023), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4113), 6, + ACTIONS(4019), 6, anon_sym_conceal, anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [64074] = 4, - ACTIONS(4856), 1, - anon_sym_BSLASH_AMP, - STATE(1478), 1, - aux_sym__pattern_branch_repeat1, + [64648] = 9, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + STATE(2798), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1719), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1728), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [64681] = 9, + ACTIONS(3133), 1, + anon_sym_BSLASH, + ACTIONS(3139), 1, + anon_sym_LBRACK, + ACTIONS(4764), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1381), 1, + sym__pattern_branch, + STATE(1534), 1, + sym_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(913), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(914), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3143), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64714] = 5, + ACTIONS(4766), 1, + anon_sym_PLUS_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 10, + STATE(1447), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + ACTIONS(4557), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4559), 6, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - [64097] = 9, - ACTIONS(4348), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + [64739] = 9, + ACTIONS(4432), 1, + anon_sym_BSLASH, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(3074), 1, + STATE(2910), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64772] = 9, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4047), 1, + anon_sym_POUND, + ACTIONS(4718), 1, + anon_sym_PLUS, + STATE(2791), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(3986), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1555), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [64805] = 9, + ACTIONS(3165), 1, + anon_sym_BSLASH, + ACTIONS(3169), 1, + anon_sym_LBRACK, + ACTIONS(4769), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1333), 1, + sym__pattern_branch, + STATE(1548), 1, + sym_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(917), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(920), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(3173), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64130] = 5, - STATE(1462), 1, + [64838] = 6, + ACTIONS(4771), 1, + anon_sym_BANG, + ACTIONS(4773), 1, + anon_sym_AMP, + ACTIONS(4775), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4779), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4777), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [64865] = 7, + ACTIONS(4784), 1, + anon_sym_LBRACE, + ACTIONS(4787), 1, + aux_sym_identifier_token1, + STATE(1364), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4781), 2, + sym__scope_dict, + anon_sym_a_COLON, + ACTIONS(4790), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + STATE(1452), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [64894] = 6, + ACTIONS(4794), 1, + aux_sym_filename_token7, + STATE(1520), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4063), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4061), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BANG, + ACTIONS(4792), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [64921] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4650), 12, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_BSLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + aux_sym__plus_cmd_arg_token1, + [64940] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3703), 12, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [64959] = 5, + STATE(1433), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4861), 2, + ACTIONS(4798), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4859), 3, + ACTIONS(4796), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(3996), 6, + ACTIONS(4101), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_buffer, anon_sym_group, anon_sym_file, - [64155] = 6, - ACTIONS(4842), 1, - anon_sym_LBRACE2, - ACTIONS(4863), 1, - aux_sym_identifier_token2, + [64984] = 9, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2599), 1, + sym__pattern_branch, + STATE(3070), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(981), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1470), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [64182] = 9, - ACTIONS(4348), 1, + STATE(1277), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4359), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [65017] = 10, + ACTIONS(4800), 1, + aux_sym_option_name_token1, + ACTIONS(4802), 1, + anon_sym_t_, + ACTIONS(4804), 1, + anon_sym_all, + ACTIONS(4806), 1, + anon_sym_all_AMP, + ACTIONS(4808), 1, + sym__no, + ACTIONS(4810), 1, + sym__inv, + STATE(1631), 1, + sym_option_name, + STATE(2431), 1, + sym_set_item, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1642), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [65052] = 9, + ACTIONS(4120), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4812), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2159), 1, sym__pattern_branch, - STATE(3073), 1, + STATE(2330), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1217), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1240), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4128), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64215] = 7, - ACTIONS(4868), 1, - anon_sym_cchar, - ACTIONS(4874), 1, - aux_sym__syn_keyword_token1, - STATE(1483), 1, - aux_sym__syn_keyword_repeat1, - STATE(1670), 1, - sym__syn_arguments_keyword, + [65085] = 9, + ACTIONS(4432), 1, + anon_sym_BSLASH, + ACTIONS(4436), 1, + anon_sym_LBRACK, + ACTIONS(4438), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2306), 1, + sym__pattern_branch, + STATE(3169), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4871), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4865), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [64244] = 9, - ACTIONS(4348), 1, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [65118] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(3037), 1, + STATE(2954), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64277] = 7, - ACTIONS(3691), 1, + [65151] = 5, + ACTIONS(3873), 1, + anon_sym_BSLASH2, + ACTIONS(3875), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1503), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4555), 9, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [65176] = 5, + ACTIONS(4814), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1463), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + ACTIONS(4557), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4559), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token4, + [65201] = 7, + ACTIONS(3713), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, + ACTIONS(3715), 1, aux_sym_identifier_token1, - STATE(1385), 1, + STATE(1364), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3699), 2, + ACTIONS(3721), 2, sym__scope_dict, anon_sym_a_COLON, - ACTIONS(4876), 3, + ACTIONS(4817), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - STATE(1433), 4, + STATE(1452), 4, sym_scope_dict, sym_identifier, sym__assignment_variable, aux_sym_let_statement_repeat1, - [64306] = 9, - ACTIONS(4224), 1, + [65230] = 6, + ACTIONS(4819), 1, + anon_sym_LBRACE2, + ACTIONS(4822), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(919), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1465), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [65257] = 11, + ACTIONS(4827), 1, + anon_sym_detect, + ACTIONS(4829), 1, + anon_sym_plugin, + ACTIONS(4831), 1, + anon_sym_indent, + STATE(2737), 1, + sym__filetype_indent, + STATE(2738), 1, + sym__filetype_plugin, + STATE(2740), 1, + sym__filetype_detect, + STATE(2748), 1, + sym__filetype_enable, + STATE(2750), 1, + sym__filetype_state, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4601), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4825), 2, + anon_sym_on, + anon_sym_off, + [65294] = 9, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2599), 1, sym__pattern_branch, - STATE(2982), 1, + STATE(3139), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64339] = 9, - ACTIONS(4348), 1, + [65327] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(2939), 1, + STATE(2984), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [65360] = 9, + ACTIONS(4351), 1, + anon_sym_BSLASH, + ACTIONS(4355), 1, + anon_sym_LBRACK, + ACTIONS(4357), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2599), 1, + sym__pattern_branch, + STATE(3103), 1, + sym_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1277), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64372] = 9, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, + [65393] = 6, + ACTIONS(4833), 1, + anon_sym_LBRACE2, + ACTIONS(4836), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1470), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(919), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + [65420] = 9, + ACTIONS(4329), 1, anon_sym_PLUS, - ACTIONS(4262), 1, + ACTIONS(4331), 1, anon_sym_PLUS_PLUS, - STATE(2341), 1, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2420), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -123290,42 +124201,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1713), 2, + STATE(1719), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - STATE(1718), 2, + STATE(1771), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [64405] = 7, - ACTIONS(4115), 1, - anon_sym_cchar, - ACTIONS(4878), 1, - aux_sym__syn_keyword_token1, - STATE(1477), 1, - aux_sym__syn_keyword_repeat1, - STATE(1670), 1, - sym__syn_arguments_keyword, + [65453] = 13, + ACTIONS(4839), 1, + anon_sym_define, + ACTIONS(4841), 1, + anon_sym_undefine, + ACTIONS(4843), 1, + anon_sym_list, + ACTIONS(4845), 1, + anon_sym_place, + ACTIONS(4847), 1, + anon_sym_unplace, + ACTIONS(4849), 1, + anon_sym_jump, + STATE(2767), 1, + sym__sign_jump, + STATE(2769), 1, + sym__sign_unplace, + STATE(2776), 1, + sym__sign_place, + STATE(2777), 1, + sym__sign_list, + STATE(2779), 1, + sym__sign_undefine, + STATE(2780), 1, + sym__sign_define, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4117), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4113), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [64434] = 9, - ACTIONS(4256), 1, + [65494] = 6, + ACTIONS(4851), 1, + anon_sym_LBRACE2, + ACTIONS(4853), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(911), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1465), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(913), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [65521] = 8, + ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(4260), 1, + ACTIONS(4855), 1, anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2341), 1, + STATE(2419), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -123336,66 +124272,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1476), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1718), 2, + STATE(1549), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [64467] = 9, - ACTIONS(4224), 1, - anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(2862), 1, - sym_pattern, + ACTIONS(4857), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [65552] = 4, + ACTIONS(4859), 1, + anon_sym_BSLASH_AMP, + STATE(1475), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64500] = 9, - ACTIONS(4348), 1, + ACTIONS(3322), 10, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + [65575] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(2943), 1, + STATE(2993), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1292), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64533] = 8, + [65608] = 8, ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(4710), 1, + ACTIONS(4855), 1, anon_sym_PLUS, - STATE(2342), 1, + STATE(2418), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -123406,183 +124338,363 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1586), 2, + STATE(1549), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(4028), 3, + ACTIONS(4156), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [64564] = 9, - ACTIONS(4348), 1, + [65639] = 6, + ACTIONS(4851), 1, + anon_sym_LBRACE2, + ACTIONS(4862), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(983), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1473), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [65666] = 9, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2417), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1719), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1751), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [65699] = 9, + ACTIONS(3241), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(3245), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4864), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2426), 1, + STATE(1377), 1, sym__pattern_branch, - STATE(2877), 1, + STATE(1501), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(933), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(934), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(3249), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64597] = 5, - ACTIONS(4882), 1, - anon_sym_PLUS, + [65732] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1495), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4880), 3, + ACTIONS(3709), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3707), 10, anon_sym_BSLASH, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4885), 6, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - [64622] = 9, - ACTIONS(3859), 1, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [65753] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3705), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3703), 10, anon_sym_BSLASH, - ACTIONS(4690), 1, - anon_sym_PLUS, - ACTIONS(4887), 1, - anon_sym_POUND, - STATE(2845), 1, - sym_filename, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [65774] = 6, + ACTIONS(3863), 1, + anon_sym_BSLASH2, + ACTIONS(3865), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1496), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(4866), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4555), 7, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_POUND, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4611), 2, + aux_sym_filename_token4, + [65801] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4658), 2, sym__newline_or_pipe, sym_comment, - STATE(1576), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [64655] = 9, - ACTIONS(3212), 1, + ACTIONS(4660), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [65822] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3105), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3107), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [65843] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(3216), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4889), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1374), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(1595), 1, + STATE(3001), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(907), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(908), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3220), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64688] = 9, - ACTIONS(4224), 1, + [65876] = 9, + ACTIONS(4146), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4152), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2236), 1, sym__pattern_branch, - STATE(2900), 1, + STATE(2693), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, + STATE(1220), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1235), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + ACTIONS(4154), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64721] = 9, - ACTIONS(3971), 1, + [65909] = 7, + ACTIONS(4871), 1, + anon_sym_cchar, + ACTIONS(4877), 1, + aux_sym__syn_keyword_token1, + STATE(1488), 1, + aux_sym__syn_keyword_repeat1, + STATE(1638), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4874), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4868), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [65938] = 9, + ACTIONS(3199), 1, anon_sym_BSLASH, - ACTIONS(3975), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(3977), 1, + ACTIONS(4879), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2184), 1, + STATE(1396), 1, sym__pattern_branch, - STATE(2731), 1, + STATE(1500), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1177), 2, + STATE(924), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1221), 2, + STATE(926), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3979), 3, + ACTIONS(3207), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64754] = 9, - ACTIONS(3268), 1, + [65971] = 6, + ACTIONS(4883), 1, + aux_sym_filename_token7, + STATE(1522), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4063), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(3272), 1, - anon_sym_LBRACK, - ACTIONS(4891), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1384), 1, - sym__pattern_branch, - STATE(1592), 1, - sym_pattern, + ACTIONS(4061), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BANG, + ACTIONS(4881), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [65998] = 6, + ACTIONS(4756), 1, + anon_sym_LBRACE2, + ACTIONS(4885), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(931), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(933), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3276), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64787] = 8, + ACTIONS(983), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1438), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [66025] = 12, + ACTIONS(4241), 1, + anon_sym_LBRACE, + ACTIONS(4243), 1, + aux_sym_identifier_token1, + ACTIONS(4247), 1, + sym_au_event, + ACTIONS(4249), 1, + aux_sym__autocmd_pattern_token1, + STATE(1826), 1, + sym__curly_braces_name_expression, + STATE(1927), 1, + sym__augroup_name, + STATE(2161), 1, + sym_identifier, + STATE(2275), 1, + sym_au_event_list, + STATE(2854), 1, + sym__autocmd_pattern, + STATE(2857), 1, + sym__autocmd_command, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4887), 2, + sym__newline_or_pipe, + sym_comment, + [66064] = 4, + ACTIONS(4889), 1, + anon_sym_BSLASH_AMP, + STATE(1504), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4313), 10, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66087] = 8, ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(4710), 1, + ACTIONS(4855), 1, anon_sym_PLUS, - STATE(2343), 1, + STATE(2373), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -123593,524 +124705,795 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1586), 2, + STATE(1549), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - ACTIONS(4030), 3, + ACTIONS(4891), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [64818] = 2, + [66118] = 5, + ACTIONS(4895), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4893), 12, + STATE(1495), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4893), 3, anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4898), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_POUND, aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [64837] = 9, - ACTIONS(4224), 1, - anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(2944), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64870] = 9, - ACTIONS(4224), 1, - anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(2960), 1, - sym_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64903] = 11, - ACTIONS(4897), 1, - anon_sym_detect, - ACTIONS(4899), 1, - anon_sym_plugin, - ACTIONS(4901), 1, - anon_sym_indent, - STATE(2727), 1, - sym__filetype_indent, - STATE(2728), 1, - sym__filetype_plugin, - STATE(2730), 1, - sym__filetype_detect, - STATE(2738), 1, - sym__filetype_enable, - STATE(2740), 1, - sym__filetype_state, + [66143] = 6, + ACTIONS(4900), 1, + anon_sym_BSLASH2, + ACTIONS(4903), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1496), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4640), 2, + ACTIONS(4906), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4895), 2, - anon_sym_on, - anon_sym_off, - [64940] = 9, - ACTIONS(4224), 1, + ACTIONS(4650), 7, anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(2974), 1, - sym_pattern, + anon_sym_PLUS, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [66170] = 6, + ACTIONS(3863), 1, + anon_sym_BSLASH2, + ACTIONS(3865), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1496), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64973] = 13, - ACTIONS(4903), 1, - anon_sym_define, - ACTIONS(4905), 1, - anon_sym_undefine, - ACTIONS(4907), 1, - anon_sym_list, - ACTIONS(4909), 1, - anon_sym_place, - ACTIONS(4911), 1, - anon_sym_unplace, - ACTIONS(4913), 1, - anon_sym_jump, - STATE(2757), 1, - sym__sign_jump, - STATE(2759), 1, - sym__sign_unplace, - STATE(2766), 1, - sym__sign_place, - STATE(2767), 1, - sym__sign_list, - STATE(2769), 1, - sym__sign_undefine, - STATE(2770), 1, - sym__sign_define, + ACTIONS(4908), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4646), 7, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [66197] = 7, + ACTIONS(4021), 1, + anon_sym_cchar, + ACTIONS(4910), 1, + aux_sym__syn_keyword_token1, + STATE(1413), 1, + aux_sym__syn_keyword_repeat1, + STATE(1638), 1, + sym__syn_arguments_keyword, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [65014] = 9, - ACTIONS(4224), 1, + ACTIONS(4023), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4019), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [66226] = 5, + ACTIONS(3873), 1, + anon_sym_BSLASH2, + ACTIONS(3875), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1503), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4646), 9, anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(2983), 1, - sym_pattern, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [66251] = 3, + ACTIONS(4914), 1, + anon_sym_SLASH2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [65047] = 6, - ACTIONS(4915), 1, - anon_sym_LBRACE2, - ACTIONS(4917), 1, - aux_sym_identifier_token2, + ACTIONS(4912), 11, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66272] = 3, + ACTIONS(4914), 1, + anon_sym_QMARK2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1514), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(981), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - [65074] = 9, - ACTIONS(4224), 1, + ACTIONS(4912), 11, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66293] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(2991), 1, + STATE(3008), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65107] = 6, - ACTIONS(4822), 1, - anon_sym_LBRACE2, + [66326] = 5, + ACTIONS(4916), 1, + anon_sym_BSLASH2, ACTIONS(4919), 1, - aux_sym_identifier_token2, + aux_sym__plus_cmd_arg_token1, + STATE(1503), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(981), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1457), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [65134] = 9, - ACTIONS(4224), 1, + ACTIONS(4650), 9, anon_sym_BSLASH, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, - sym__pattern_branch, - STATE(2998), 1, - sym_pattern, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [66351] = 4, + ACTIONS(4922), 1, + anon_sym_BSLASH_AMP, + STATE(1504), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4232), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [65167] = 9, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(4260), 1, - anon_sym_PLUS, - ACTIONS(4262), 1, - anon_sym_PLUS_PLUS, - STATE(2344), 1, - sym_filename, + ACTIONS(3322), 10, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66374] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + ACTIONS(4925), 12, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_BSLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1713), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - STATE(1715), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [65200] = 6, - ACTIONS(4915), 1, + aux_sym_filename_token4, + aux_sym__plus_cmd_arg_token1, + [66393] = 6, + ACTIONS(4927), 1, anon_sym_LBRACE2, - ACTIONS(4921), 1, + ACTIONS(4929), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1473), 2, + STATE(1470), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(991), 3, + ACTIONS(913), 3, anon_sym_LBRACE, aux_sym_identifier_token1, anon_sym_EQ, - ACTIONS(989), 5, + ACTIONS(911), 5, sym__newline_or_pipe, sym__scope_dict, sym_comment, anon_sym_a_COLON, anon_sym_EQ_LT_LT, - [65227] = 9, - ACTIONS(4224), 1, + [66420] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(3005), 1, + STATE(3015), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65260] = 9, - ACTIONS(4224), 1, + [66453] = 7, + ACTIONS(4021), 1, + anon_sym_cchar, + ACTIONS(4931), 1, + aux_sym__syn_keyword_token1, + STATE(1444), 1, + aux_sym__syn_keyword_repeat1, + STATE(1638), 1, + sym__syn_arguments_keyword, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4023), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4019), 6, + anon_sym_conceal, + anon_sym_contained, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [66482] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(3011), 1, + STATE(3021), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65293] = 9, - ACTIONS(4224), 1, + [66515] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2372), 1, + STATE(2306), 1, sym__pattern_branch, - STATE(3017), 1, + STATE(3027), 1, sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1277), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65326] = 10, - ACTIONS(4668), 1, + [66548] = 10, + ACTIONS(4800), 1, aux_sym_option_name_token1, - ACTIONS(4670), 1, + ACTIONS(4802), 1, anon_sym_t_, - ACTIONS(4672), 1, + ACTIONS(4804), 1, anon_sym_all, - ACTIONS(4674), 1, + ACTIONS(4806), 1, anon_sym_all_AMP, - ACTIONS(4676), 1, + ACTIONS(4808), 1, sym__no, - ACTIONS(4678), 1, + ACTIONS(4810), 1, sym__inv, - STATE(1547), 1, + STATE(1631), 1, sym_option_name, - STATE(2275), 1, + STATE(2206), 1, sym_set_item, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1697), 4, + STATE(1642), 4, sym_no_option, sym_inv_option, sym_default_option, sym__set_option, - [65361] = 10, - ACTIONS(4668), 1, + [66583] = 10, + ACTIONS(4800), 1, aux_sym_option_name_token1, - ACTIONS(4670), 1, + ACTIONS(4802), 1, anon_sym_t_, - ACTIONS(4672), 1, + ACTIONS(4804), 1, anon_sym_all, - ACTIONS(4674), 1, + ACTIONS(4806), 1, anon_sym_all_AMP, - ACTIONS(4676), 1, + ACTIONS(4808), 1, sym__no, - ACTIONS(4678), 1, + ACTIONS(4810), 1, sym__inv, - STATE(1547), 1, + STATE(1631), 1, sym_option_name, - STATE(2274), 1, + STATE(2205), 1, sym_set_item, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1697), 4, + STATE(1642), 4, sym_no_option, sym_inv_option, sym_default_option, sym__set_option, - [65396] = 3, + [66618] = 4, + ACTIONS(4933), 1, + anon_sym_BSLASH_AMP, + STATE(1513), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 5, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(3322), 10, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + [66641] = 8, + ACTIONS(4319), 1, + anon_sym_BSLASH, + STATE(1715), 1, + aux_sym_runtime_statement_repeat1, + STATE(1881), 1, + sym__runtime_where, + STATE(1883), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4323), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4325), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4317), 4, + anon_sym_START, + anon_sym_OPT, + anon_sym_PACK, + anon_sym_ALL, + [66672] = 9, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2487), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1719), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1727), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [66705] = 4, + ACTIONS(4936), 1, + anon_sym_BSLASH_AMP, + STATE(1527), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4313), 10, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_SLASH2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(2123), 7, + [66728] = 3, + ACTIONS(4940), 1, + sym__wincmd, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4938), 11, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, anon_sym_BANG, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [65417] = 6, - ACTIONS(2365), 1, - anon_sym_EQ, - ACTIONS(2369), 1, - anon_sym_EQ_LT_LT, - STATE(297), 1, - sym__let_operator, - STATE(2350), 1, - sym__let_heredoc, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66749] = 8, + ACTIONS(4461), 1, + sym_hl_group, + ACTIONS(4463), 1, + anon_sym_link, + ACTIONS(4465), 1, + anon_sym_clear, + ACTIONS(4467), 1, + sym__default, + STATE(2518), 1, + sym__hl_body_link, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2367), 7, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - [65443] = 8, + ACTIONS(4942), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + STATE(2541), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [66780] = 9, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2487), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1479), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1727), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [66813] = 6, + ACTIONS(4883), 1, + aux_sym_filename_token7, + STATE(1522), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4073), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4071), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BANG, + ACTIONS(4881), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [66840] = 8, ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(3786), 1, + ACTIONS(4855), 1, + anon_sym_PLUS, + STATE(2488), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1549), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4013), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66871] = 6, + ACTIONS(4947), 1, + aux_sym_filename_token7, + STATE(1522), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4080), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4078), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BANG, + ACTIONS(4944), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [66898] = 8, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(4855), 1, + anon_sym_PLUS, + STATE(2489), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1549), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4027), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [66929] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3304), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3306), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [66950] = 6, + ACTIONS(4927), 1, + anon_sym_LBRACE2, + ACTIONS(4950), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1506), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(983), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + [66977] = 9, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2490), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4923), 1, + STATE(1719), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1723), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67010] = 4, + ACTIONS(4952), 1, + anon_sym_BSLASH_AMP, + STATE(1527), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3322), 10, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, anon_sym_BANG, - STATE(1733), 1, - sym_bang, - STATE(2333), 1, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [67033] = 9, + ACTIONS(4329), 1, + anon_sym_PLUS, + ACTIONS(4331), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2490), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 3, + ACTIONS(3784), 2, aux_sym_filename_token1, - aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4925), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [65473] = 8, - ACTIONS(3971), 1, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1471), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + STATE(1723), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67066] = 9, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(3975), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(3977), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2098), 1, + STATE(2306), 1, sym__pattern_branch, + STATE(2899), 1, + sym_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1177), 2, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1221), 2, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67099] = 9, + ACTIONS(3471), 1, + anon_sym_BSLASH, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4955), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1501), 1, + sym_pattern, + STATE(1564), 1, + sym__pattern_branch, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(998), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3979), 3, + STATE(999), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3479), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65503] = 2, + [67132] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4927), 11, + ACTIONS(4957), 11, sym_command_name, anon_sym_DASHnargs, anon_sym_DASHcomplete, @@ -124122,68 +125505,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHregister, anon_sym_DASHbuffer, anon_sym_DASHkeepscript, - [65521] = 3, + [67150] = 6, + ACTIONS(3982), 1, + anon_sym_BSLASH2, + ACTIONS(3984), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1625), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4929), 4, + ACTIONS(4866), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4555), 6, anon_sym_BSLASH, anon_sym_PLUS, + aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4931), 7, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [65541] = 7, - ACTIONS(4935), 1, - sym__hl_color_nr, - ACTIONS(4937), 1, - anon_sym_SQUOTE, - ACTIONS(4939), 1, - aux_sym_color_token1, - STATE(1231), 1, - sym__hl_quoted_name, - STATE(1248), 1, - sym_color, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4933), 6, - sym__hl_none, - anon_sym_bg, - anon_sym_background, - anon_sym_fg, - anon_sym_foreground, - aux_sym_color_token2, - [65569] = 3, - STATE(1546), 1, - aux_sym_pattern_repeat1, + [67176] = 8, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3786), 1, + aux_sym_filename_token3, + ACTIONS(4959), 1, + anon_sym_BANG, + STATE(1753), 1, + sym_bang, + STATE(2482), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 10, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_SLASH2, + ACTIONS(3784), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4961), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [65589] = 3, - ACTIONS(4941), 1, - sym__wincmd, + [67206] = 3, + ACTIONS(4963), 1, + anon_sym_SLASH2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4686), 10, + ACTIONS(4912), 10, sym__newline_or_pipe, sym_comment, sym__normal, @@ -124194,243 +125564,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - [65609] = 8, - ACTIONS(4943), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4945), 1, - anon_sym_BSLASH, - ACTIONS(4949), 1, - anon_sym_LT2, - STATE(330), 1, - sym__map_lhs, - STATE(1006), 1, - sym_keycode, - STATE(1720), 1, - aux_sym_map_statement_repeat1, + [67226] = 6, + ACTIONS(2363), 1, + anon_sym_EQ, + ACTIONS(2367), 1, + anon_sym_EQ_LT_LT, + STATE(292), 1, + sym__let_operator, + STATE(2494), 1, + sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4947), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [65639] = 8, - ACTIONS(3056), 1, + ACTIONS(2365), 7, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + [67252] = 8, + ACTIONS(4146), 1, anon_sym_BSLASH, - ACTIONS(3060), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4702), 1, + ACTIONS(4152), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1355), 1, + STATE(2095), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(855), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(856), 2, + STATE(1220), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3064), 3, + STATE(1235), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4154), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65669] = 3, - STATE(1557), 1, + [67282] = 7, + ACTIONS(4968), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + aux_sym_identifier_token1, + STATE(1525), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4790), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4965), 2, + sym__scope_dict, + anon_sym_a_COLON, + STATE(1537), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [67310] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4650), 11, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_BSLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + aux_sym__plus_cmd_arg_token1, + [67328] = 4, + ACTIONS(4974), 1, + anon_sym_BSLASH_PIPE, + STATE(1539), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 10, + ACTIONS(4535), 9, sym__normal, sym__source, sym__global, sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, + anon_sym_SLASH2, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [65689] = 8, - ACTIONS(3697), 1, - anon_sym_LBRACK, - ACTIONS(4951), 1, - anon_sym_a_COLON, - ACTIONS(4953), 1, - anon_sym_LBRACE, - ACTIONS(4955), 1, - aux_sym_identifier_token1, - ACTIONS(4957), 1, - sym_scope, - STATE(2063), 1, - sym__curly_braces_name_expression, + [67350] = 8, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4977), 1, + anon_sym_PLUS, + STATE(2728), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(3080), 5, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym_list_assignment, - [65719] = 8, - ACTIONS(4224), 1, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4891), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1662), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67380] = 8, + ACTIONS(3199), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4879), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2005), 1, + STATE(1344), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1242), 2, + STATE(924), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1277), 2, + STATE(926), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4232), 3, + ACTIONS(3207), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65749] = 8, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3786), 1, - aux_sym_filename_token3, - ACTIONS(4923), 1, - anon_sym_BANG, - STATE(1744), 1, - sym_bang, - STATE(2456), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3784), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4959), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [65779] = 8, - ACTIONS(4943), 1, + [67410] = 8, + ACTIONS(4979), 1, aux_sym__bang_filter_command_argument_token1, - ACTIONS(4945), 1, + ACTIONS(4981), 1, anon_sym_BSLASH, - ACTIONS(4949), 1, + ACTIONS(4985), 1, anon_sym_LT2, - STATE(284), 1, + STATE(283), 1, sym__map_lhs, - STATE(1006), 1, + STATE(1012), 1, sym_keycode, - STATE(1720), 1, + STATE(1726), 1, aux_sym_map_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4947), 5, + ACTIONS(4983), 5, anon_sym_LTbuffer_GT, anon_sym_LTnowait_GT, anon_sym_LTsilent_GT, anon_sym_LTunique_GT, anon_sym_LTscript_GT, - [65809] = 7, - ACTIONS(3768), 1, - anon_sym_LBRACE, - ACTIONS(3770), 1, - aux_sym_identifier_token1, - STATE(1509), 1, - sym__curly_braces_name_expression, + [67440] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3772), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4680), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1581), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [65837] = 6, - ACTIONS(4961), 1, - anon_sym_BSLASH2, - ACTIONS(4964), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1537), 1, - aux_sym__plus_cmd_arg, + ACTIONS(4987), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [67458] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4660), 2, + ACTIONS(4989), 3, sym__newline_or_pipe, sym_comment, - ACTIONS(4576), 6, + anon_sym_BSLASH2, + ACTIONS(4925), 8, anon_sym_BSLASH, anon_sym_PLUS, + anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [65863] = 6, - ACTIONS(3949), 1, - anon_sym_BSLASH2, - ACTIONS(3951), 1, aux_sym__plus_cmd_arg_token1, - STATE(1537), 1, - aux_sym__plus_cmd_arg, + [67478] = 8, + ACTIONS(4120), 1, + anon_sym_BSLASH, + ACTIONS(4124), 1, + anon_sym_LBRACK, + ACTIONS(4812), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1981), 1, + sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4652), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4538), 6, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [65889] = 8, - ACTIONS(4943), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4945), 1, + STATE(1217), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1240), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4128), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67508] = 8, + ACTIONS(4996), 1, + anon_sym_name, + ACTIONS(4999), 1, + anon_sym_group, + ACTIONS(5002), 1, + anon_sym_file, + STATE(1546), 1, + aux_sym__sign_place_place_repeat1, + STATE(1784), 1, + sym__sign_place_place_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4991), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(4993), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [67538] = 8, + ACTIONS(3893), 1, anon_sym_BSLASH, - ACTIONS(4949), 1, - anon_sym_LT2, - STATE(298), 1, - sym__map_lhs, - STATE(1006), 1, - sym_keycode, - STATE(1535), 1, - aux_sym_map_statement_repeat1, + ACTIONS(3897), 1, + anon_sym_LBRACK, + ACTIONS(5005), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2095), 1, + sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4967), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [65919] = 2, + STATE(1137), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1140), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3901), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67568] = 3, + ACTIONS(4963), 1, + anon_sym_QMARK2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4969), 11, + ACTIONS(4912), 10, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, @@ -124439,86 +125843,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, + [67588] = 5, + ACTIONS(5007), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1549), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4893), 3, + anon_sym_BSLASH, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4898), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [65937] = 8, - ACTIONS(3212), 1, + aux_sym_filename_token1, + aux_sym_filename_token4, + [67612] = 7, + ACTIONS(5012), 1, + anon_sym_icon, + ACTIONS(5018), 1, + anon_sym_text, + STATE(1550), 1, + aux_sym__sign_define_repeat1, + STATE(1714), 1, + sym__sign_define_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5010), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5015), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [67640] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4925), 11, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_BSLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + aux_sym__plus_cmd_arg_token1, + [67658] = 8, + ACTIONS(3531), 1, anon_sym_BSLASH, - ACTIONS(3216), 1, + ACTIONS(3535), 1, anon_sym_LBRACK, - ACTIONS(4889), 1, + ACTIONS(4710), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1358), 1, + STATE(1344), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(907), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(908), 2, + STATE(1006), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3220), 3, + STATE(1011), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3539), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65967] = 8, - ACTIONS(4943), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4945), 1, - anon_sym_BSLASH, - ACTIONS(4949), 1, - anon_sym_LT2, - STATE(386), 1, - sym__map_lhs, - STATE(1006), 1, - sym_keycode, - STATE(1529), 1, - aux_sym_map_statement_repeat1, + [67688] = 4, + ACTIONS(5021), 1, + sym__printable, + STATE(1754), 1, + sym__sign_define_arg_text, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4971), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [65997] = 8, - ACTIONS(4439), 1, - sym_hl_group, - ACTIONS(4441), 1, - anon_sym_link, - ACTIONS(4443), 1, - anon_sym_clear, - ACTIONS(4445), 1, - sym__default, - STATE(2773), 1, - sym__hl_body_link, + ACTIONS(4093), 9, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [67710] = 8, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4977), 1, + anon_sym_PLUS, + STATE(2702), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4742), 2, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4013), 2, sym__newline_or_pipe, sym_comment, - STATE(2843), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [66027] = 4, - ACTIONS(4973), 1, - anon_sym_BSLASH_PIPE, - STATE(1544), 1, - aux_sym_pattern_repeat1, + STATE(1662), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67740] = 5, + ACTIONS(5023), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 9, + ACTIONS(4893), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1555), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4898), 6, sym__newline_or_pipe, sym_comment, + anon_sym_BSLASH, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + [67764] = 3, + STATE(1630), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4481), 10, sym__normal, sym__source, sym__global, @@ -124526,97 +125994,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_BANG, anon_sym_SLASH2, - [66049] = 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [67784] = 8, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4977), 1, + anon_sym_PLUS, + STATE(2799), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2153), 2, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(2151), 9, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4857), 2, sym__newline_or_pipe, sym_comment, - anon_sym_BANG, + STATE(1662), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67814] = 4, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5026), 2, + anon_sym_vi, + anon_sym_vim, + ACTIONS(5030), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5028), 6, anon_sym_EQ2, anon_sym_COLON2, anon_sym_PLUS_EQ2, anon_sym_CARET_EQ, anon_sym_DASH_EQ2, anon_sym_, - [66069] = 3, - STATE(1612), 1, + [67836] = 8, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4977), 1, + anon_sym_PLUS, + STATE(2801), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4156), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1662), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67866] = 7, + ACTIONS(5034), 1, + sym__hl_color_nr, + ACTIONS(5036), 1, + anon_sym_SQUOTE, + ACTIONS(5038), 1, + aux_sym_color_token1, + STATE(1201), 1, + sym_color, + STATE(1202), 1, + sym__hl_quoted_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5032), 6, + sym__hl_none, + anon_sym_bg, + anon_sym_background, + anon_sym_fg, + anon_sym_foreground, + aux_sym_color_token2, + [67894] = 8, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(4977), 1, + anon_sym_PLUS, + STATE(2660), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4027), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1662), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [67924] = 3, + ACTIONS(5040), 1, + sym__wincmd, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4938), 10, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + [67944] = 8, + ACTIONS(3241), 1, + anon_sym_BSLASH, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(4864), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1344), 1, + sym__pattern_branch, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(933), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(934), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3249), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67974] = 3, + STATE(1628), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 10, + ACTIONS(4481), 10, sym__normal, sym__source, sym__global, sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_SLASH2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66089] = 5, - ACTIONS(4976), 1, - anon_sym_BANG, - ACTIONS(4978), 1, - anon_sym_AMP, - ACTIONS(4980), 1, - anon_sym_QMARK, + [67994] = 6, + ACTIONS(5044), 1, + anon_sym_, + STATE(2118), 1, + sym__set_operator, + STATE(2262), 1, + sym__set_rhs, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4789), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5046), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5042), 5, anon_sym_EQ2, anon_sym_COLON2, anon_sym_PLUS_EQ2, anon_sym_CARET_EQ, anon_sym_DASH_EQ2, - anon_sym_, - [66113] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4982), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4984), 7, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [66133] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4986), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66151] = 2, + [68020] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4988), 11, + ACTIONS(5048), 11, sym_command_name, anon_sym_DASHnargs, anon_sym_DASHcomplete, @@ -124628,134 +126194,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHregister, anon_sym_DASHbuffer, anon_sym_DASHkeepscript, - [66169] = 8, - ACTIONS(4348), 1, + [68038] = 8, + ACTIONS(3165), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4769), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2813), 1, + STATE(1393), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1291), 2, + STATE(917), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1292), 2, + STATE(920), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4356), 3, + ACTIONS(3173), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [66199] = 8, - ACTIONS(3697), 1, + [68068] = 7, + ACTIONS(3792), 1, + anon_sym_LBRACE, + ACTIONS(3794), 1, + aux_sym_identifier_token1, + STATE(1525), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3796), 2, + sym__scope_dict, + anon_sym_a_COLON, + ACTIONS(4817), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1537), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [68096] = 6, + ACTIONS(2349), 1, + anon_sym_EQ, + ACTIONS(2353), 1, + anon_sym_EQ_LT_LT, + STATE(381), 1, + sym__let_operator, + STATE(2775), 1, + sym__let_heredoc, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2351), 7, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + [68122] = 5, + STATE(1575), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5052), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5050), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4101), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [68146] = 7, + ACTIONS(5056), 1, + anon_sym_icon, + ACTIONS(5060), 1, + anon_sym_text, + STATE(1581), 1, + aux_sym__sign_define_repeat1, + STATE(1714), 1, + sym__sign_define_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5054), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5058), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [68174] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5062), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5064), 7, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [68194] = 8, + ACTIONS(3719), 1, anon_sym_LBRACK, - ACTIONS(4951), 1, + ACTIONS(5066), 1, anon_sym_a_COLON, - ACTIONS(4953), 1, + ACTIONS(5068), 1, anon_sym_LBRACE, - ACTIONS(4955), 1, + ACTIONS(5070), 1, aux_sym_identifier_token1, - ACTIONS(4957), 1, + ACTIONS(5072), 1, sym_scope, - STATE(2063), 1, + STATE(2067), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(3217), 5, + STATE(3090), 5, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, sym_list_assignment, - [66229] = 5, - ACTIONS(4990), 1, - anon_sym_PLUS_PLUS, + [68224] = 5, + STATE(1587), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1553), 2, - sym_plus_plus_opt, - aux_sym_edit_statement_repeat1, - ACTIONS(4464), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4466), 5, + ACTIONS(5076), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5074), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4061), 5, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token4, - [66253] = 6, - ACTIONS(3949), 1, - anon_sym_BSLASH2, - ACTIONS(3951), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1537), 1, - aux_sym__plus_cmd_arg, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [68248] = 5, + STATE(1588), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5080), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5078), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4061), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [68272] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4666), 2, + ACTIONS(4906), 3, sym__newline_or_pipe, sym_comment, - ACTIONS(4454), 6, + anon_sym_BSLASH2, + ACTIONS(4650), 8, anon_sym_BSLASH, anon_sym_PLUS, + anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [66279] = 8, - ACTIONS(2949), 1, - anon_sym_BSLASH, - ACTIONS(2955), 1, - anon_sym_LBRACK, - ACTIONS(4700), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1355), 1, - sym__pattern_branch, + aux_sym__plus_cmd_arg_token1, + [68292] = 5, + ACTIONS(5082), 1, + anon_sym_PLUS_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(835), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(836), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(2959), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66309] = 2, + STATE(1577), 2, + sym_plus_plus_opt, + aux_sym_edit_statement_repeat1, + ACTIONS(4557), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(4559), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token4, + [68316] = 8, + ACTIONS(3719), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_a_COLON, + ACTIONS(5068), 1, + anon_sym_LBRACE, + ACTIONS(5070), 1, + aux_sym_identifier_token1, + ACTIONS(5072), 1, + sym_scope, + STATE(2067), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4738), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66327] = 3, - STATE(1618), 1, + STATE(3227), 5, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym_list_assignment, + [68346] = 4, + ACTIONS(5085), 1, + anon_sym_BSLASH_PIPE, + STATE(1585), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 10, + ACTIONS(4481), 9, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym__global, @@ -124763,138 +126450,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_BANG, anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [66347] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4993), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66365] = 2, + [68368] = 8, + ACTIONS(4979), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4981), 1, + anon_sym_BSLASH, + ACTIONS(4985), 1, + anon_sym_LT2, + STATE(275), 1, + sym__map_lhs, + STATE(1012), 1, + sym_keycode, + STATE(1726), 1, + aux_sym_map_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4995), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66383] = 2, + ACTIONS(4983), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [68398] = 7, + ACTIONS(5056), 1, + anon_sym_icon, + ACTIONS(5060), 1, + anon_sym_text, + STATE(1550), 1, + aux_sym__sign_define_repeat1, + STATE(1714), 1, + sym__sign_define_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4997), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66401] = 4, - ACTIONS(4999), 1, + ACTIONS(5087), 3, anon_sym_BSLASH_PIPE, - STATE(1544), 1, - aux_sym_pattern_repeat1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5058), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [68426] = 7, + ACTIONS(3792), 1, + anon_sym_LBRACE, + ACTIONS(3794), 1, + aux_sym_identifier_token1, + STATE(1525), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 9, + ACTIONS(3796), 2, + sym__scope_dict, + anon_sym_a_COLON, + ACTIONS(4760), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_SLASH2, - [66423] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5001), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66441] = 2, + STATE(1537), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [68454] = 8, + ACTIONS(5093), 1, + anon_sym_name, + ACTIONS(5095), 1, + anon_sym_group, + ACTIONS(5097), 1, + anon_sym_file, + STATE(1546), 1, + aux_sym__sign_place_place_repeat1, + STATE(1784), 1, + sym__sign_place_place_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5003), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [66459] = 8, - ACTIONS(3268), 1, + ACTIONS(5089), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5091), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [68484] = 8, + ACTIONS(3451), 1, anon_sym_BSLASH, - ACTIONS(3272), 1, + ACTIONS(3455), 1, anon_sym_LBRACK, - ACTIONS(4891), 1, + ACTIONS(4716), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1358), 1, + STATE(1393), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(931), 2, + STATE(991), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(933), 2, + STATE(992), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3276), 3, + ACTIONS(3459), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [66489] = 4, - ACTIONS(4999), 1, + [68514] = 4, + ACTIONS(5085), 1, anon_sym_BSLASH_PIPE, - STATE(1561), 1, + STATE(1594), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 9, + ACTIONS(4473), 9, sym__newline_or_pipe, sym_comment, sym__normal, @@ -124903,57 +126575,99 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_SLASH2, - [66511] = 8, - ACTIONS(3495), 1, + anon_sym_QMARK2, + [68536] = 8, + ACTIONS(4979), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4981), 1, + anon_sym_BSLASH, + ACTIONS(4985), 1, + anon_sym_LT2, + STATE(293), 1, + sym__map_lhs, + STATE(1012), 1, + sym_keycode, + STATE(1580), 1, + aux_sym_map_statement_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5099), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [68566] = 5, + STATE(1588), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5080), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5078), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4071), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [68590] = 5, + STATE(1588), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5104), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5101), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4078), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [68614] = 8, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(3499), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1358), 1, + STATE(2846), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(988), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(997), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3503), 3, + STATE(1281), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [66541] = 4, - ACTIONS(5005), 1, - anon_sym_BSLASH_PIPE, - STATE(1622), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4502), 9, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_QMARK2, - [66563] = 8, + [68644] = 8, ACTIONS(3774), 1, anon_sym_BSLASH, ACTIONS(3786), 1, aux_sym_filename_token3, - ACTIONS(4923), 1, + ACTIONS(4959), 1, anon_sym_BANG, - STATE(1710), 1, + STATE(1766), 1, sym_bang, - STATE(2477), 1, + STATE(2602), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -124962,132 +126676,233 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(5007), 3, + ACTIONS(5107), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66593] = 6, - ACTIONS(2321), 1, - anon_sym_EQ, - ACTIONS(2325), 1, - anon_sym_EQ_LT_LT, - STATE(374), 1, - sym__let_operator, - STATE(2745), 1, - sym__let_heredoc, + [68674] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2323), 7, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - [66619] = 7, - ACTIONS(3768), 1, + ACTIONS(1313), 4, anon_sym_LBRACE, - ACTIONS(3770), 1, aux_sym_identifier_token1, - STATE(1509), 1, - sym__curly_braces_name_expression, + aux_sym_identifier_token2, + anon_sym_EQ, + ACTIONS(1311), 7, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_EQ_LT_LT, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [68694] = 4, + ACTIONS(5109), 1, + anon_sym_BSLASH_PIPE, + STATE(1592), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3772), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4876), 2, + ACTIONS(4535), 9, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_QMARK2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [68716] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5112), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [68734] = 4, + ACTIONS(5114), 1, + anon_sym_BSLASH_PIPE, + STATE(1594), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4535), 9, sym__newline_or_pipe, sym_comment, - STATE(1581), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [66647] = 8, - ACTIONS(3859), 1, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_QMARK2, + [68756] = 8, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(5009), 1, - anon_sym_PLUS, - STATE(2825), 1, - sym_filename, + ACTIONS(4436), 1, + anon_sym_LBRACK, + ACTIONS(4438), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1981), 1, + sym__pattern_branch, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1315), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1317), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4440), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [68786] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5117), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [68804] = 8, + ACTIONS(4979), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4981), 1, + anon_sym_BSLASH, + ACTIONS(4985), 1, + anon_sym_LT2, + STATE(387), 1, + sym__map_lhs, + STATE(1012), 1, + sym_keycode, + STATE(1542), 1, + aux_sym_map_statement_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5119), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [68834] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(5121), 4, + anon_sym_BSLASH, + anon_sym_PLUS, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(3969), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1693), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [66677] = 8, - ACTIONS(3859), 1, + ACTIONS(5123), 7, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [68854] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5125), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [68872] = 8, + ACTIONS(3774), 1, anon_sym_BSLASH, - ACTIONS(5009), 1, - anon_sym_PLUS, - STATE(2781), 1, + ACTIONS(3786), 1, + aux_sym_filename_token3, + ACTIONS(4959), 1, + anon_sym_BANG, + STATE(1750), 1, + sym_bang, + STATE(2410), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3784), 3, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4846), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1693), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [66707] = 2, + aux_sym_filename_token4, + ACTIONS(5127), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [68902] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5011), 11, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1311), 4, + anon_sym_LBRACE2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66725] = 2, + ACTIONS(1313), 7, + aux_sym_identifier_token2, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [68922] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5013), 11, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1303), 4, + anon_sym_LBRACE2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66743] = 2, + ACTIONS(1305), 7, + aux_sym_identifier_token2, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [68942] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5015), 11, + ACTIONS(5129), 11, sym__normal, sym__source, sym__global, @@ -125099,51 +126914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66761] = 5, - ACTIONS(5017), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4880), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1576), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4885), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - [66785] = 7, - ACTIONS(5022), 1, - anon_sym_icon, - ACTIONS(5026), 1, - anon_sym_text, - STATE(1607), 1, - aux_sym__sign_define_repeat1, - STATE(1776), 1, - sym__sign_define_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5020), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5024), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [66813] = 2, + [68960] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5028), 11, + ACTIONS(5131), 11, sym__normal, sym__source, sym__global, @@ -125155,205 +126930,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66831] = 8, - ACTIONS(5034), 1, - anon_sym_name, - ACTIONS(5036), 1, - anon_sym_group, - ACTIONS(5038), 1, - anon_sym_file, - STATE(1604), 1, - aux_sym__sign_place_place_repeat1, - STATE(1774), 1, - sym__sign_place_place_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5030), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5032), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [66861] = 10, - ACTIONS(5040), 1, - anon_sym_COLON, - ACTIONS(5042), 1, - anon_sym_BANG, - ACTIONS(5046), 1, - sym__normal, - ACTIONS(5048), 1, - sym__source, - ACTIONS(5050), 1, - sym__global, - ACTIONS(5052), 1, - sym__call, - STATE(1911), 1, - sym__bang_filter_bangs, - STATE(1919), 1, - sym_bang, + [68978] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5044), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [66895] = 7, - ACTIONS(5057), 1, + ACTIONS(1305), 4, anon_sym_LBRACE, - ACTIONS(5060), 1, aux_sym_identifier_token1, - STATE(1509), 1, - sym__curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4753), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5054), 2, + aux_sym_identifier_token2, + anon_sym_EQ, + ACTIONS(1303), 7, sym__scope_dict, anon_sym_a_COLON, - STATE(1581), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [66923] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4893), 11, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH2, + anon_sym_LBRACE2, + anon_sym_EQ_LT_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [66941] = 3, + [68998] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5065), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5063), 9, + ACTIONS(5133), 11, sym__normal, sym__source, sym__global, sym__call, anon_sym_COLON, anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [66961] = 7, - ACTIONS(5022), 1, - anon_sym_icon, - ACTIONS(5026), 1, - anon_sym_text, - STATE(1577), 1, - aux_sym__sign_define_repeat1, - STATE(1776), 1, - sym__sign_define_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5067), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5024), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [66989] = 8, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(5009), 1, - anon_sym_PLUS, - STATE(2778), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4030), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1693), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [67019] = 5, - ACTIONS(5069), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1586), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4880), 3, + [69016] = 8, + ACTIONS(3471), 1, anon_sym_BSLASH, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4885), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token4, - [67043] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2263), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [67061] = 2, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4955), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1344), 1, + sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2267), 11, - sym_command_name, - anon_sym_DASHnargs, - anon_sym_DASHcomplete, - anon_sym_DASHrange, - anon_sym_DASHcount, - anon_sym_DASHaddr, - anon_sym_DASHbang, - anon_sym_DASHbar, - anon_sym_DASHregister, - anon_sym_DASHbuffer, - anon_sym_DASHkeepscript, - [67079] = 2, + STATE(998), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(999), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3479), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [69046] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1832), 11, + ACTIONS(5135), 11, sym_command_name, anon_sym_DASHnargs, anon_sym_DASHcomplete, @@ -125365,58 +127001,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHregister, anon_sym_DASHbuffer, anon_sym_DASHkeepscript, - [67097] = 7, - ACTIONS(5074), 1, - sym__hl_color_nr, - ACTIONS(5076), 1, - anon_sym_SQUOTE, - ACTIONS(5078), 1, - aux_sym_color_token1, - STATE(1193), 1, - sym__hl_quoted_name, - STATE(1194), 1, - sym_color, + [69064] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5072), 6, - sym__hl_none, - anon_sym_bg, - anon_sym_background, - anon_sym_fg, - anon_sym_foreground, - aux_sym_color_token2, - [67125] = 8, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(5009), 1, - anon_sym_PLUS, - STATE(2694), 1, - sym_filename, + ACTIONS(2131), 2, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(2129), 9, + sym__newline_or_pipe, + sym_comment, + anon_sym_BANG, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [69084] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4028), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1693), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [67155] = 3, - ACTIONS(5080), 1, - anon_sym_QMARK2, + ACTIONS(1303), 4, + anon_sym_LBRACE2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(1305), 7, + aux_sym_identifier_token2, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [69104] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4826), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5137), 11, sym__normal, sym__source, sym__global, @@ -125425,54 +127048,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - [67175] = 8, - ACTIONS(3819), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [69122] = 8, + ACTIONS(3133), 1, anon_sym_BSLASH, - ACTIONS(3823), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(4764), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2098), 1, + STATE(1393), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1115), 2, + STATE(913), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1116), 2, + STATE(914), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3827), 3, + ACTIONS(3143), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67205] = 3, + [69152] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5084), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH2, - ACTIONS(4893), 8, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [67225] = 3, - ACTIONS(5080), 1, - anon_sym_SLASH2, + ACTIONS(5139), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [69170] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4826), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5141), 11, sym__normal, sym__source, sym__global, @@ -125481,137 +127102,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - [67245] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4660), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH2, - ACTIONS(4576), 8, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [67265] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4576), 11, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_BSLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [67283] = 6, - ACTIONS(5088), 1, - anon_sym_, - STATE(2053), 1, - sym__set_operator, - STATE(2237), 1, - sym__set_rhs, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5090), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5086), 5, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - [67309] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1317), 4, - anon_sym_LBRACE2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(1319), 7, - aux_sym_identifier_token2, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [67329] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(721), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(719), 7, + [69188] = 4, + ACTIONS(5143), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [67349] = 3, + STATE(1615), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2125), 2, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(2123), 9, + ACTIONS(4535), 9, sym__newline_or_pipe, sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, anon_sym_BANG, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [67369] = 3, + anon_sym_SLASH2, + [69210] = 8, + ACTIONS(4527), 1, + sym_hl_group, + ACTIONS(4529), 1, + anon_sym_link, + ACTIONS(4531), 1, + anon_sym_clear, + ACTIONS(4533), 1, + sym__default, + STATE(2785), 1, + sym__hl_body_link, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1301), 4, - anon_sym_LBRACE2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(1303), 7, - aux_sym_identifier_token2, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [67389] = 3, + ACTIONS(4942), 2, + sym__newline_or_pipe, + sym_comment, + STATE(2644), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [69240] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1317), 4, + ACTIONS(1311), 4, anon_sym_LBRACE2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(1319), 7, + ACTIONS(1313), 7, aux_sym_identifier_token2, anon_sym_icon, anon_sym_linehl, @@ -125619,323 +127162,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [67409] = 8, - ACTIONS(5097), 1, - anon_sym_name, - ACTIONS(5100), 1, - anon_sym_group, - ACTIONS(5103), 1, - anon_sym_file, - STATE(1604), 1, - aux_sym__sign_place_place_repeat1, - STATE(1774), 1, - sym__sign_place_place_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5092), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5094), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [67439] = 3, + [69260] = 10, + ACTIONS(5146), 1, + anon_sym_COLON, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5152), 1, + sym__normal, + ACTIONS(5154), 1, + sym__source, + ACTIONS(5156), 1, + sym__global, + ACTIONS(5158), 1, + sym__call, + STATE(1897), 1, + sym__bang_filter_bangs, + STATE(1899), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1301), 4, - anon_sym_LBRACE2, + ACTIONS(5150), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(1303), 7, - aux_sym_identifier_token2, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [67459] = 4, + [69294] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5106), 2, - anon_sym_vi, - anon_sym_vim, - ACTIONS(5110), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5108), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [67481] = 7, - ACTIONS(5114), 1, - anon_sym_icon, - ACTIONS(5120), 1, - anon_sym_text, - STATE(1607), 1, - aux_sym__sign_define_repeat1, - STATE(1776), 1, - sym__sign_define_argument, + ACTIONS(2277), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [69312] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5112), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5117), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [67509] = 4, - ACTIONS(5123), 1, - sym__printable, - STATE(1746), 1, - sym__sign_define_arg_text, + ACTIONS(2273), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [69330] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4135), 9, + ACTIONS(5162), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5160), 9, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [67531] = 5, - STATE(1624), 1, - aux_sym_filename_repeat1, + [69350] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5127), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5125), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(3996), 5, + ACTIONS(2269), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [69368] = 6, + ACTIONS(3982), 1, + anon_sym_BSLASH2, + ACTIONS(3984), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1625), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4908), 2, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [67555] = 8, - ACTIONS(3859), 1, + ACTIONS(4646), 6, anon_sym_BSLASH, - ACTIONS(5009), 1, anon_sym_PLUS, - STATE(2805), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4712), 2, + aux_sym_filename_token4, + [69394] = 7, + ACTIONS(5166), 1, + sym__hl_color_nr, + ACTIONS(5168), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + aux_sym_color_token1, + STATE(1301), 1, + sym__hl_quoted_name, + STATE(1303), 1, + sym_color, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5164), 6, + sym__hl_none, + anon_sym_bg, + anon_sym_background, + anon_sym_fg, + anon_sym_foreground, + aux_sym_color_token2, + [69422] = 6, + ACTIONS(5172), 1, + anon_sym_BSLASH2, + ACTIONS(5175), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1625), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4906), 2, sym__newline_or_pipe, sym_comment, - STATE(1693), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [67585] = 8, - ACTIONS(4066), 1, + ACTIONS(4650), 6, anon_sym_BSLASH, - ACTIONS(4070), 1, - anon_sym_LBRACK, - ACTIONS(4695), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2005), 1, - sym__pattern_branch, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [69448] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1204), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1206), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4074), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [67615] = 4, - ACTIONS(5129), 1, + ACTIONS(721), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(719), 7, anon_sym_BSLASH_PIPE, - STATE(1612), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [69468] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(2159), 2, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(2157), 9, + sym__newline_or_pipe, + sym_comment, + anon_sym_BANG, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [69488] = 3, + STATE(1592), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 9, + ACTIONS(4473), 10, sym__normal, sym__source, sym__global, sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_SLASH2, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [67637] = 8, - ACTIONS(3505), 1, + [69508] = 8, + ACTIONS(3839), 1, anon_sym_BSLASH, - ACTIONS(3509), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(4684), 1, + ACTIONS(5178), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1355), 1, + STATE(1981), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(990), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(998), 2, + STATE(1123), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3513), 3, + STATE(1125), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3847), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67667] = 5, - STATE(1614), 1, - aux_sym_filename_repeat1, + [69538] = 3, + STATE(1539), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5135), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5132), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4003), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [67691] = 5, - STATE(1614), 1, - aux_sym_filename_repeat1, + ACTIONS(4473), 10, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [69558] = 5, + ACTIONS(5180), 1, + anon_sym_BANG, + ACTIONS(5182), 1, + anon_sym_AMP, + ACTIONS(5184), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5140), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5138), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4038), 5, + ACTIONS(4777), 8, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [67715] = 3, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [69582] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 4, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - ACTIONS(1317), 7, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_EQ_LT_LT, + ACTIONS(4688), 11, + sym_command_name, + anon_sym_DASHnargs, + anon_sym_DASHcomplete, + anon_sym_DASHrange, + anon_sym_DASHcount, + anon_sym_DASHaddr, + anon_sym_DASHbang, + anon_sym_DASHbar, + anon_sym_DASHregister, + anon_sym_DASHbuffer, + anon_sym_DASHkeepscript, + [69600] = 4, + ACTIONS(5186), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [67735] = 5, STATE(1615), 1, - aux_sym_filename_repeat1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5144), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5142), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4062), 5, + ACTIONS(4473), 9, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [67759] = 4, - ACTIONS(5146), 1, - anon_sym_BSLASH_PIPE, - STATE(1618), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4447), 9, sym__normal, sym__source, sym__global, sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_QMARK2, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [67781] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1303), 4, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - ACTIONS(1301), 7, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_EQ_LT_LT, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [67801] = 4, - ACTIONS(5149), 1, + anon_sym_SLASH2, + [69622] = 4, + ACTIONS(5186), 1, anon_sym_BSLASH_PIPE, - STATE(1620), 1, + STATE(1633), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 9, + ACTIONS(4481), 9, sym__newline_or_pipe, sym_comment, sym__normal, @@ -125944,534 +127472,442 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_COLON, anon_sym_BANG, - anon_sym_QMARK2, - [67823] = 8, - ACTIONS(3873), 1, + anon_sym_SLASH2, + [69644] = 8, + ACTIONS(3550), 1, anon_sym_BSLASH, - ACTIONS(3877), 1, + ACTIONS(3554), 1, anon_sym_LBRACK, - ACTIONS(5152), 1, + ACTIONS(4714), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2005), 1, + STATE(1393), 1, sym__pattern_branch, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1130), 2, + STATE(989), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1133), 2, + STATE(1014), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3881), 3, + ACTIONS(3558), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67853] = 4, - ACTIONS(5005), 1, - anon_sym_BSLASH_PIPE, - STATE(1620), 1, - aux_sym_pattern_repeat1, + [69674] = 7, + ACTIONS(5188), 1, + anon_sym_icon, + ACTIONS(5194), 1, + anon_sym_text, + STATE(1636), 1, + aux_sym__sign_define_repeat1, + STATE(1830), 1, + sym__sign_define_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 9, + ACTIONS(5010), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_QMARK2, - [67875] = 8, - ACTIONS(3422), 1, - anon_sym_BSLASH, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(4763), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1358), 1, - sym__pattern_branch, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(979), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(980), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3430), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [67905] = 5, - STATE(1614), 1, - aux_sym_filename_repeat1, + ACTIONS(5191), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [69701] = 5, + ACTIONS(5197), 1, + sym__printable, + STATE(1856), 1, + sym__sign_define_arg_text, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5140), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5138), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4062), 5, + ACTIONS(4091), 2, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [67929] = 8, - ACTIONS(3432), 1, - anon_sym_BSLASH, - ACTIONS(3436), 1, - anon_sym_LBRACK, - ACTIONS(4708), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1355), 1, - sym__pattern_branch, + ACTIONS(4093), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [69724] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(981), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1003), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3440), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [67959] = 3, + ACTIONS(5199), 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_contained, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + aux_sym__syn_keyword_token1, + [69741] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5084), 3, + ACTIONS(1311), 3, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH2, - ACTIONS(4893), 7, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [67978] = 7, - ACTIONS(4348), 1, + anon_sym_LBRACE2, + ACTIONS(1313), 7, + aux_sym_identifier_token2, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [69760] = 7, + ACTIONS(3550), 1, anon_sym_BSLASH, - ACTIONS(4352), 1, + ACTIONS(3554), 1, anon_sym_LBRACK, - ACTIONS(4354), 1, + ACTIONS(4714), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1292), 2, + STATE(989), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1339), 2, + STATE(1028), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4356), 3, + ACTIONS(3558), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [68005] = 8, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3869), 1, - aux_sym_filename_token3, - ACTIONS(5154), 1, - anon_sym_BANG, - STATE(1844), 1, - sym_bang, - STATE(2841), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5007), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3867), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68034] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1301), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, - ACTIONS(1303), 7, - aux_sym_identifier_token2, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68053] = 7, - ACTIONS(4276), 1, - aux_sym_filename_token3, - ACTIONS(5156), 1, - anon_sym_BSLASH, - STATE(1640), 1, - aux_sym_runtime_statement_repeat1, - STATE(1854), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4278), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(5158), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [68080] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4929), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4931), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [68099] = 7, - ACTIONS(5160), 1, - anon_sym_icon, - ACTIONS(5166), 1, - anon_sym_text, - STATE(1632), 1, - aux_sym__sign_define_repeat1, - STATE(1820), 1, - sym__sign_define_argument, + [69787] = 7, + ACTIONS(5203), 1, + anon_sym_enc, + ACTIONS(5205), 1, + anon_sym_encoding, + ACTIONS(5211), 1, + anon_sym_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5112), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5163), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [68126] = 5, - ACTIONS(5169), 1, - sym__printable, - STATE(1805), 1, - sym__sign_define_arg_text, + ACTIONS(5201), 2, + anon_sym_ff, + anon_sym_fileformat, + ACTIONS(5207), 2, + anon_sym_bin, + anon_sym_nobin, + ACTIONS(5209), 3, + anon_sym_binary, + anon_sym_nobinary, + anon_sym_edit, + [69814] = 5, + STATE(2228), 1, + sym__set_operator, + STATE(2548), 1, + sym__set_rhs, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4133), 2, + ACTIONS(5044), 3, sym__newline_or_pipe, sym_comment, - ACTIONS(4135), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68149] = 6, - ACTIONS(5076), 1, + anon_sym_, + ACTIONS(5213), 5, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + [69837] = 6, + ACTIONS(5168), 1, anon_sym_SQUOTE, - ACTIONS(5078), 1, + ACTIONS(5170), 1, aux_sym_color_token1, - STATE(1193), 1, + STATE(1301), 1, sym__hl_quoted_name, - STATE(1202), 1, + STATE(1311), 1, sym_color, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5072), 6, + ACTIONS(5164), 6, sym__hl_none, anon_sym_bg, anon_sym_background, anon_sym_fg, anon_sym_foreground, aux_sym_color_token2, - [68174] = 3, + [69862] = 8, + ACTIONS(5218), 1, + anon_sym_name, + ACTIONS(5221), 1, + anon_sym_group, + ACTIONS(5224), 1, + anon_sym_file, + STATE(1644), 1, + aux_sym__sign_place_place_repeat1, + STATE(1821), 1, + sym__sign_place_place_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4991), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5215), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [69891] = 7, + ACTIONS(5229), 1, + anon_sym_enc, + ACTIONS(5231), 1, + anon_sym_encoding, + ACTIONS(5237), 1, + anon_sym_bad, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5227), 2, + anon_sym_ff, + anon_sym_fileformat, + ACTIONS(5233), 2, + anon_sym_bin, + anon_sym_nobin, + ACTIONS(5235), 3, + anon_sym_binary, + anon_sym_nobinary, + anon_sym_edit, + [69918] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5171), 3, + ACTIONS(4906), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH2, + ACTIONS(4650), 7, anon_sym_BSLASH, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5173), 7, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_POUND, aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, aux_sym_filename_token4, - [68193] = 2, + aux_sym__plus_cmd_arg_token1, + [69937] = 7, + ACTIONS(5239), 1, + anon_sym_clear, + ACTIONS(5245), 1, + anon_sym_fromstart, + ACTIONS(5247), 1, + anon_sym_ccomment, + ACTIONS(5249), 1, + anon_sym_linecont, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5241), 2, + anon_sym_match, + anon_sym_region, + ACTIONS(5243), 4, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_linebreaks, + anon_sym_lines2, + [69964] = 7, + ACTIONS(3133), 1, + anon_sym_BSLASH, + ACTIONS(3139), 1, + anon_sym_LBRACK, + ACTIONS(4764), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5011), 10, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - [68210] = 7, - ACTIONS(2949), 1, + STATE(914), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(950), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3143), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [69991] = 7, + ACTIONS(3471), 1, anon_sym_BSLASH, - ACTIONS(2955), 1, + ACTIONS(3475), 1, anon_sym_LBRACK, - ACTIONS(4700), 1, + ACTIONS(4955), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(835), 2, + STATE(998), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(967), 2, + STATE(1045), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(2959), 3, + ACTIONS(3479), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [68237] = 7, - ACTIONS(3819), 1, + [70018] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5251), 2, + anon_sym_vi, + anon_sym_vim, + ACTIONS(5028), 8, + sym__newline_or_pipe, + sym_comment, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [70037] = 7, + ACTIONS(3839), 1, anon_sym_BSLASH, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5178), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1116), 2, + STATE(1125), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, STATE(1167), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3827), 3, + ACTIONS(3847), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [68264] = 3, + [70064] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5175), 3, + ACTIONS(721), 4, anon_sym_BSLASH, + anon_sym_PLUS, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(5177), 7, - anon_sym_PLUS, + ACTIONS(719), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token4, - [68283] = 7, - ACTIONS(5179), 1, - anon_sym_BSLASH, - ACTIONS(5187), 1, - aux_sym_filename_token3, - STATE(1640), 1, - aux_sym_runtime_statement_repeat1, - STATE(1854), 1, - sym_filename, + anon_sym_PLUS_PLUS, + [70083] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5182), 3, + ACTIONS(5253), 3, + anon_sym_BSLASH, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5255), 7, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5184), 3, + anon_sym_POUND, aux_sym_filename_token1, - aux_sym_filename_token2, aux_sym_filename_token4, - [68310] = 5, - STATE(1641), 1, - aux_sym_map_statement_repeat1, + [70102] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5190), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_LT2, - ACTIONS(5192), 2, - anon_sym_BSLASH, - anon_sym_LTexpr_GT, - ACTIONS(5194), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [68333] = 7, - ACTIONS(3432), 1, + ACTIONS(5257), 3, anon_sym_BSLASH, - ACTIONS(3436), 1, - anon_sym_LBRACK, - ACTIONS(4708), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1003), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1007), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3440), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68360] = 7, - ACTIONS(3422), 1, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5259), 7, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + [70121] = 8, + ACTIONS(5261), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5263), 1, anon_sym_BSLASH, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(4763), 1, - aux_sym__pattern_ordinary_atom_token2, + ACTIONS(5265), 1, + anon_sym_BANG, + ACTIONS(5269), 1, + sym_string_literal, + STATE(1843), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(979), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1010), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3430), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68387] = 7, - ACTIONS(3056), 1, + STATE(1847), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + ACTIONS(5267), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [70150] = 7, + ACTIONS(4432), 1, anon_sym_BSLASH, - ACTIONS(3060), 1, + ACTIONS(4436), 1, anon_sym_LBRACK, - ACTIONS(4702), 1, + ACTIONS(4438), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(855), 2, + STATE(1315), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(972), 2, + STATE(1391), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3064), 3, + ACTIONS(4440), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [68414] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5013), 10, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - [68431] = 6, - ACTIONS(4937), 1, - anon_sym_SQUOTE, - ACTIONS(4939), 1, - aux_sym_color_token1, - STATE(1231), 1, - sym__hl_quoted_name, - STATE(1250), 1, - sym_color, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4933), 6, - sym__hl_none, - anon_sym_bg, - anon_sym_background, - anon_sym_fg, - anon_sym_foreground, - aux_sym_color_token2, - [68456] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5015), 10, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - [68473] = 2, + [70177] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5028), 10, + ACTIONS(1305), 4, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + anon_sym_EQ, + ACTIONS(1303), 6, sym__newline_or_pipe, + sym__scope_dict, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_SEMI, - [68490] = 3, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_EQ_LT_LT, + [70196] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4929), 3, + ACTIONS(5062), 3, anon_sym_PLUS, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4931), 7, + ACTIONS(5064), 7, sym__newline_or_pipe, sym_comment, anon_sym_BSLASH, @@ -126479,323 +127915,221 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_filename_token1, aux_sym_filename_token4, anon_sym_PLUS_PLUS, - [68509] = 7, - ACTIONS(3505), 1, + [70215] = 7, + ACTIONS(4351), 1, anon_sym_BSLASH, - ACTIONS(3509), 1, + ACTIONS(4355), 1, anon_sym_LBRACK, - ACTIONS(4684), 1, + ACTIONS(4357), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(990), 2, + STATE(1281), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1019), 2, + STATE(1330), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3513), 3, + ACTIONS(4359), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [68536] = 7, - ACTIONS(5199), 1, - anon_sym_enc, - ACTIONS(5201), 1, - anon_sym_encoding, - ACTIONS(5207), 1, - anon_sym_bad, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5197), 2, - anon_sym_ff, - anon_sym_fileformat, - ACTIONS(5203), 2, - anon_sym_bin, - anon_sym_nobin, - ACTIONS(5205), 3, - anon_sym_binary, - anon_sym_nobinary, - anon_sym_edit, - [68563] = 7, - ACTIONS(4276), 1, + [70242] = 7, + ACTIONS(4377), 1, aux_sym_filename_token3, - ACTIONS(5156), 1, + ACTIONS(5271), 1, anon_sym_BSLASH, - STATE(1640), 1, + STATE(1667), 1, aux_sym_runtime_statement_repeat1, - STATE(1854), 1, + STATE(1814), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4278), 3, + ACTIONS(4379), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(5209), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [68590] = 3, - ACTIONS(5211), 1, - sym__printable, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5213), 9, + ACTIONS(5273), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68609] = 7, - ACTIONS(3873), 1, - anon_sym_BSLASH, - ACTIONS(3877), 1, - anon_sym_LBRACK, - ACTIONS(5152), 1, - aux_sym__pattern_ordinary_atom_token2, + [70269] = 7, + ACTIONS(5277), 1, + anon_sym_enc, + ACTIONS(5279), 1, + anon_sym_encoding, + ACTIONS(5285), 1, + anon_sym_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1130), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1172), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3881), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68636] = 8, - ACTIONS(5218), 1, - anon_sym_name, - ACTIONS(5221), 1, - anon_sym_group, - ACTIONS(5224), 1, - anon_sym_file, - STATE(1655), 1, - aux_sym__sign_place_place_repeat1, - STATE(1803), 1, - sym__sign_place_place_argument, + ACTIONS(5275), 2, + anon_sym_ff, + anon_sym_fileformat, + ACTIONS(5281), 2, + anon_sym_bin, + anon_sym_nobin, + ACTIONS(5283), 3, + anon_sym_binary, + anon_sym_nobinary, + anon_sym_edit, + [70296] = 5, + ACTIONS(5287), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5092), 2, + ACTIONS(4893), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1662), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4898), 5, sym__newline_or_pipe, sym_comment, - ACTIONS(5215), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [68665] = 7, - ACTIONS(4224), 1, anon_sym_BSLASH, - ACTIONS(4228), 1, + aux_sym_filename_token1, + aux_sym_filename_token4, + [70319] = 7, + ACTIONS(3451), 1, + anon_sym_BSLASH, + ACTIONS(3455), 1, anon_sym_LBRACK, - ACTIONS(4230), 1, + ACTIONS(4716), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1277), 2, + STATE(991), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1362), 2, + STATE(1018), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4232), 3, + ACTIONS(3459), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [68692] = 10, - ACTIONS(5042), 1, - anon_sym_BANG, - ACTIONS(5227), 1, - anon_sym_COLON, - ACTIONS(5229), 1, - sym__normal, - ACTIONS(5231), 1, - sym__source, - ACTIONS(5233), 1, - sym__global, - ACTIONS(5235), 1, - sym__call, - STATE(1919), 1, - sym_bang, - STATE(1920), 1, - sym__bang_filter_bangs, + [70346] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5044), 2, + ACTIONS(721), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(719), 7, sym__newline_or_pipe, sym_comment, - [68725] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3707), 10, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68742] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3703), 10, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68759] = 7, - ACTIONS(4066), 1, anon_sym_BSLASH, - ACTIONS(4070), 1, - anon_sym_LBRACK, - ACTIONS(4695), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1204), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1280), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4074), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68786] = 8, - ACTIONS(5239), 1, - anon_sym_name, - ACTIONS(5241), 1, - anon_sym_group, - ACTIONS(5243), 1, - anon_sym_file, - STATE(1655), 1, - aux_sym__sign_place_place_repeat1, - STATE(1803), 1, - sym__sign_place_place_argument, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [70365] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5030), 2, + ACTIONS(1313), 4, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + anon_sym_EQ, + ACTIONS(1311), 6, sym__newline_or_pipe, + sym__scope_dict, sym_comment, - ACTIONS(5237), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [68815] = 3, - ACTIONS(2415), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(2417), 9, - anon_sym_in, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, + anon_sym_a_COLON, + anon_sym_LBRACE2, anon_sym_EQ_LT_LT, - [68834] = 8, - ACTIONS(3859), 1, + [70384] = 8, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3869), 1, + ACTIONS(3935), 1, aux_sym_filename_token3, - ACTIONS(5154), 1, + ACTIONS(5290), 1, anon_sym_BANG, - STATE(1833), 1, + STATE(1868), 1, sym_bang, - STATE(2672), 1, + STATE(2821), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4925), 2, + ACTIONS(5127), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3867), 3, + ACTIONS(3933), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [68863] = 8, - ACTIONS(5245), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5247), 1, + [70413] = 7, + ACTIONS(5292), 1, anon_sym_BSLASH, - ACTIONS(5249), 1, - anon_sym_BANG, - ACTIONS(5253), 1, - sym_string_literal, - STATE(1787), 1, - sym_bang, + ACTIONS(5300), 1, + aux_sym_filename_token3, + STATE(1667), 1, + aux_sym_runtime_statement_repeat1, + STATE(1814), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1788), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - ACTIONS(5251), 3, + ACTIONS(5295), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [68892] = 7, - ACTIONS(3495), 1, + ACTIONS(5297), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [70440] = 7, + ACTIONS(4377), 1, + aux_sym_filename_token3, + ACTIONS(5271), 1, anon_sym_BSLASH, - ACTIONS(3499), 1, - anon_sym_LBRACK, - ACTIONS(4761), 1, - aux_sym__pattern_ordinary_atom_token2, + STATE(1667), 1, + aux_sym_runtime_statement_repeat1, + STATE(1814), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(988), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1045), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3503), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68919] = 3, + ACTIONS(4379), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(5303), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [70467] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4989), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH2, + ACTIONS(4925), 7, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + aux_sym__plus_cmd_arg_token1, + [70486] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5255), 2, + ACTIONS(5305), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(5063), 8, + ACTIONS(5160), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -126804,228 +128138,242 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_COLON, anon_sym_BANG, - [68938] = 7, - ACTIONS(5259), 1, - anon_sym_enc, - ACTIONS(5261), 1, - anon_sym_encoding, - ACTIONS(5267), 1, - anon_sym_bad, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5257), 2, - anon_sym_ff, - anon_sym_fileformat, - ACTIONS(5263), 2, - anon_sym_bin, - anon_sym_nobin, - ACTIONS(5265), 3, - anon_sym_binary, - anon_sym_nobinary, - anon_sym_edit, - [68965] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1317), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, - ACTIONS(1319), 7, - aux_sym_identifier_token2, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68984] = 3, - ACTIONS(5271), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5269), 9, - anon_sym_in, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_LT_LT, - [69003] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5273), 10, - anon_sym_conceal, - anon_sym_cchar, - anon_sym_contained, - anon_sym_containedin, - anon_sym_nextgroup, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - aux_sym__syn_keyword_token1, - [69020] = 7, - ACTIONS(5277), 1, - anon_sym_enc, - ACTIONS(5279), 1, - anon_sym_encoding, - ACTIONS(5285), 1, - anon_sym_bad, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5275), 2, - anon_sym_ff, - anon_sym_fileformat, - ACTIONS(5281), 2, - anon_sym_bin, - anon_sym_nobin, - ACTIONS(5283), 3, - anon_sym_binary, - anon_sym_nobinary, - anon_sym_edit, - [69047] = 3, + [70505] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 4, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - ACTIONS(1317), 6, + ACTIONS(5137), 10, sym__newline_or_pipe, - sym__scope_dict, sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_EQ_LT_LT, - [69066] = 7, - ACTIONS(3268), 1, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + [70522] = 7, + ACTIONS(3165), 1, anon_sym_BSLASH, - ACTIONS(3272), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(4891), 1, + ACTIONS(4769), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(931), 2, + STATE(920), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(941), 2, + STATE(974), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3276), 3, + ACTIONS(3173), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69093] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4660), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH2, - ACTIONS(4576), 7, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [69112] = 7, - ACTIONS(5287), 1, - anon_sym_clear, - ACTIONS(5293), 1, - anon_sym_fromstart, - ACTIONS(5295), 1, - anon_sym_ccomment, - ACTIONS(5297), 1, - anon_sym_linecont, + [70549] = 7, + ACTIONS(3531), 1, + anon_sym_BSLASH, + ACTIONS(3535), 1, + anon_sym_LBRACK, + ACTIONS(4710), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5289), 2, - anon_sym_match, - anon_sym_region, - ACTIONS(5291), 4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_linebreaks, - anon_sym_lines2, - [69139] = 7, - ACTIONS(5299), 1, + STATE(1006), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1026), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3539), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [70576] = 7, + ACTIONS(5307), 1, anon_sym_icon, - ACTIONS(5303), 1, + ACTIONS(5311), 1, anon_sym_text, - STATE(1632), 1, + STATE(1636), 1, aux_sym__sign_define_repeat1, - STATE(1820), 1, + STATE(1830), 1, sym__sign_define_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5020), 2, + ACTIONS(5087), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5301), 4, + ACTIONS(5309), 4, anon_sym_linehl, anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [69166] = 7, - ACTIONS(3212), 1, + [70603] = 7, + ACTIONS(3241), 1, anon_sym_BSLASH, - ACTIONS(3216), 1, + ACTIONS(3245), 1, anon_sym_LBRACK, - ACTIONS(4889), 1, + ACTIONS(4864), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(908), 2, + STATE(934), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(946), 2, + STATE(986), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3220), 3, + ACTIONS(3249), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69193] = 5, - STATE(1678), 1, + [70630] = 10, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5313), 1, + anon_sym_COLON, + ACTIONS(5315), 1, + sym__normal, + ACTIONS(5317), 1, + sym__source, + ACTIONS(5319), 1, + sym__global, + ACTIONS(5321), 1, + sym__call, + STATE(1899), 1, + sym_bang, + STATE(1901), 1, + sym__bang_filter_bangs, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5150), 2, + sym__newline_or_pipe, + sym_comment, + [70663] = 8, + ACTIONS(5325), 1, + anon_sym_name, + ACTIONS(5327), 1, + anon_sym_group, + ACTIONS(5329), 1, + anon_sym_file, + STATE(1644), 1, + aux_sym__sign_place_place_repeat1, + STATE(1821), 1, + sym__sign_place_place_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5089), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5323), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [70692] = 7, + ACTIONS(5333), 1, + anon_sym_enc, + ACTIONS(5335), 1, + anon_sym_encoding, + ACTIONS(5341), 1, + anon_sym_bad, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5331), 2, + anon_sym_ff, + anon_sym_fileformat, + ACTIONS(5337), 2, + anon_sym_bin, + anon_sym_nobin, + ACTIONS(5339), 3, + anon_sym_binary, + anon_sym_nobinary, + anon_sym_edit, + [70719] = 7, + ACTIONS(4377), 1, + aux_sym_filename_token3, + ACTIONS(5271), 1, + anon_sym_BSLASH, + STATE(1667), 1, + aux_sym_runtime_statement_repeat1, + STATE(1814), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4379), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(5343), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [70746] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5141), 10, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + [70763] = 6, + ACTIONS(5036), 1, + anon_sym_SQUOTE, + ACTIONS(5038), 1, + aux_sym_color_token1, + STATE(1197), 1, + sym_color, + STATE(1202), 1, + sym__hl_quoted_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5032), 6, + sym__hl_none, + anon_sym_bg, + anon_sym_background, + anon_sym_fg, + anon_sym_foreground, + aux_sym_color_token2, + [70788] = 5, + STATE(1682), 1, aux_sym__syn_sync_repeat1, - STATE(1828), 1, + STATE(1829), 1, sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5307), 2, + ACTIONS(5347), 2, anon_sym_minlines, anon_sym_maxlines, - ACTIONS(5305), 6, + ACTIONS(5345), 6, anon_sym_BSLASH, anon_sym_LBRACK, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69216] = 2, + [70811] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4969), 10, + ACTIONS(5133), 10, sym__newline_or_pipe, sym_comment, sym__normal, @@ -127036,49 +128384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_COMMA, anon_sym_SEMI, - [69233] = 7, - ACTIONS(5310), 1, - anon_sym_clear, - ACTIONS(5316), 1, - anon_sym_fromstart, - ACTIONS(5318), 1, - anon_sym_ccomment, - ACTIONS(5320), 1, - anon_sym_linecont, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5312), 2, - anon_sym_match, - anon_sym_region, - ACTIONS(5314), 4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_linebreaks, - anon_sym_lines2, - [69260] = 3, + [70828] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4982), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4984), 7, + ACTIONS(5131), 10, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [69279] = 3, - ACTIONS(5324), 1, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + [70845] = 3, + ACTIONS(2447), 1, anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5322), 9, + ACTIONS(2449), 9, anon_sym_in, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -127088,317 +128415,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_DOT_DOT_EQ, anon_sym_EQ_LT_LT, - [69298] = 3, + [70864] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(719), 7, + ACTIONS(5129), 10, sym__newline_or_pipe, sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_SEMI, + [70881] = 5, + STATE(1687), 1, + aux_sym_map_statement_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5350), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_LT2, + ACTIONS(5352), 2, anon_sym_BSLASH, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [69317] = 4, - ACTIONS(5326), 1, + anon_sym_LTexpr_GT, + ACTIONS(5354), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [70904] = 4, + ACTIONS(5357), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4133), 3, + ACTIONS(4091), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(4135), 6, + ACTIONS(4093), 6, anon_sym_icon, anon_sym_linehl, anon_sym_numhl, anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [69338] = 7, - ACTIONS(3971), 1, + [70925] = 3, + ACTIONS(5361), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5359), 9, + anon_sym_in, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + [70944] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5121), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5123), 6, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [70963] = 7, + ACTIONS(3893), 1, anon_sym_BSLASH, - ACTIONS(3975), 1, + ACTIONS(3897), 1, anon_sym_LBRACK, - ACTIONS(3977), 1, + ACTIONS(5005), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1221), 2, + STATE(1137), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1274), 2, + STATE(1161), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3979), 3, + ACTIONS(3901), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69365] = 7, - ACTIONS(5330), 1, - anon_sym_enc, - ACTIONS(5332), 1, - anon_sym_encoding, - ACTIONS(5338), 1, - anon_sym_bad, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5328), 2, - anon_sym_ff, - anon_sym_fileformat, - ACTIONS(5334), 2, - anon_sym_bin, - anon_sym_nobin, - ACTIONS(5336), 3, - anon_sym_binary, - anon_sym_nobinary, - anon_sym_edit, - [69392] = 7, - ACTIONS(5342), 1, - anon_sym_enc, - ACTIONS(5344), 1, - anon_sym_encoding, - ACTIONS(5350), 1, - anon_sym_bad, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5340), 2, - anon_sym_ff, - anon_sym_fileformat, - ACTIONS(5346), 2, - anon_sym_bin, - anon_sym_nobin, - ACTIONS(5348), 3, - anon_sym_binary, - anon_sym_nobinary, - anon_sym_edit, - [69419] = 3, + [70990] = 7, + ACTIONS(3199), 1, + anon_sym_BSLASH, + ACTIONS(3203), 1, + anon_sym_LBRACK, + ACTIONS(4879), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 4, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - ACTIONS(1301), 6, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_EQ_LT_LT, - [69438] = 3, + STATE(926), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(972), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3207), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71017] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5352), 2, - anon_sym_vi, - anon_sym_vim, - ACTIONS(5108), 8, + ACTIONS(5121), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5123), 7, sym__newline_or_pipe, sym_comment, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [69457] = 7, - ACTIONS(4276), 1, - aux_sym_filename_token3, - ACTIONS(5156), 1, anon_sym_BSLASH, - STATE(1640), 1, - aux_sym_runtime_statement_repeat1, - STATE(1854), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4278), 3, + anon_sym_POUND, aux_sym_filename_token1, - aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(5354), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [69484] = 3, + anon_sym_PLUS_PLUS, + [71036] = 7, + ACTIONS(4120), 1, + anon_sym_BSLASH, + ACTIONS(4124), 1, + anon_sym_LBRACK, + ACTIONS(4812), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 3, - sym__newline_or_pipe, - sym_comment, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3703), 7, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + STATE(1240), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1250), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4128), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69503] = 3, + [71063] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 3, - sym__newline_or_pipe, - sym_comment, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3707), 7, + ACTIONS(3703), 10, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69522] = 5, - ACTIONS(5356), 1, - anon_sym_PLUS, + [71080] = 7, + ACTIONS(5363), 1, + anon_sym_clear, + ACTIONS(5369), 1, + anon_sym_fromstart, + ACTIONS(5371), 1, + anon_sym_ccomment, + ACTIONS(5373), 1, + anon_sym_linecont, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4880), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1693), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4885), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token4, - [69545] = 3, + ACTIONS(5365), 2, + anon_sym_match, + anon_sym_region, + ACTIONS(5367), 4, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_linebreaks, + anon_sym_lines2, + [71107] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 4, + ACTIONS(3707), 10, anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(719), 6, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [69564] = 3, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71124] = 8, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3935), 1, + aux_sym_filename_token3, + ACTIONS(5290), 1, + anon_sym_BANG, + STATE(1824), 1, + sym_bang, + STATE(2800), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4982), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4984), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(4961), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3933), 3, aux_sym_filename_token1, + aux_sym_filename_token2, aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [69583] = 8, - ACTIONS(3859), 1, + [71153] = 8, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3869), 1, + ACTIONS(3935), 1, aux_sym_filename_token3, - ACTIONS(5154), 1, + ACTIONS(5290), 1, anon_sym_BANG, - STATE(1795), 1, + STATE(1864), 1, sym_bang, - STATE(2803), 1, + STATE(2851), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4959), 2, + ACTIONS(5107), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3867), 3, + ACTIONS(3933), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [69612] = 5, - STATE(2218), 1, - sym__set_operator, - STATE(2460), 1, - sym__set_rhs, + [71182] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5088), 3, + ACTIONS(1311), 3, sym__newline_or_pipe, sym_comment, - anon_sym_, - ACTIONS(5359), 5, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - [69635] = 7, - ACTIONS(5299), 1, + anon_sym_LBRACE2, + ACTIONS(1313), 7, + aux_sym_identifier_token2, anon_sym_icon, - ACTIONS(5303), 1, + anon_sym_linehl, + anon_sym_numhl, anon_sym_text, - STATE(1676), 1, - aux_sym__sign_define_repeat1, - STATE(1820), 1, - sym__sign_define_argument, + anon_sym_texthl, + anon_sym_culhl, + [71201] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5067), 2, + ACTIONS(1303), 3, sym__newline_or_pipe, sym_comment, - ACTIONS(5301), 4, + anon_sym_LBRACE2, + ACTIONS(1305), 7, + aux_sym_identifier_token2, + anon_sym_icon, anon_sym_linehl, anon_sym_numhl, + anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [69662] = 3, + [71220] = 3, + ACTIONS(5375), 1, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1301), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, - ACTIONS(1303), 7, - aux_sym_identifier_token2, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [69681] = 3, + ACTIONS(5377), 9, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [71239] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5062), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5064), 6, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [71258] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1317), 3, + ACTIONS(1303), 3, sym__newline_or_pipe, sym_comment, anon_sym_LBRACE2, - ACTIONS(1319), 7, + ACTIONS(1305), 7, aux_sym_identifier_token2, anon_sym_line, anon_sym_name, @@ -127406,85 +128745,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [69700] = 5, - STATE(1755), 1, - aux_sym__bang_filter_command_argument_repeat1, + [71277] = 7, + ACTIONS(5381), 1, + anon_sym_enc, + ACTIONS(5383), 1, + anon_sym_encoding, + ACTIONS(5389), 1, + anon_sym_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5361), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5363), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5365), 4, - sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [69722] = 8, - ACTIONS(783), 1, - anon_sym_LT, - ACTIONS(785), 1, - anon_sym_BSLASH2, - ACTIONS(3467), 1, - aux_sym__map_rhs_statement_token1, - ACTIONS(5367), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1736), 1, - aux_sym__map_lhs_repeat1, - STATE(1935), 1, - sym__immediate_keycode, + ACTIONS(5379), 2, + anon_sym_ff, + anon_sym_fileformat, + ACTIONS(5385), 2, + anon_sym_bin, + anon_sym_nobin, + ACTIONS(5387), 3, + anon_sym_binary, + anon_sym_nobinary, + anon_sym_edit, + [71304] = 7, + ACTIONS(5307), 1, + anon_sym_icon, + ACTIONS(5311), 1, + anon_sym_text, + STATE(1674), 1, + aux_sym__sign_define_repeat1, + STATE(1830), 1, + sym__sign_define_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3471), 3, + ACTIONS(5054), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5309), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [71331] = 7, + ACTIONS(4146), 1, anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [69750] = 5, - STATE(1756), 1, - aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(4150), 1, + anon_sym_LBRACK, + ACTIONS(4152), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5361), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5369), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5365), 4, - sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [69772] = 5, - STATE(1765), 1, - aux_sym_filename_repeat1, + STATE(1235), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1284), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4154), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71358] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5371), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(3996), 3, + ACTIONS(3705), 3, + sym__newline_or_pipe, + sym_comment, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3703), 7, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5373), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [69794] = 3, + anon_sym_LBRACK, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71377] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3705), 2, - sym__separator, + ACTIONS(3709), 3, + sym__newline_or_pipe, + sym_comment, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3703), 7, + ACTIONS(3707), 7, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -127492,166 +128837,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [69812] = 3, + [71396] = 3, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5391), 9, + anon_sym_in, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_LT_LT, + [71415] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3709), 2, - sym__separator, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3707), 7, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(5397), 3, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [69830] = 7, - ACTIONS(5375), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5395), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [71433] = 7, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(5381), 1, - aux_sym_filename_token3, - STATE(1707), 1, - aux_sym_runtime_statement_repeat1, - STATE(1901), 1, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2665), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5182), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5378), 3, + ACTIONS(3933), 2, aux_sym_filename_token1, - aux_sym_filename_token2, aux_sym_filename_token4, - [69856] = 7, - ACTIONS(4326), 1, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [71459] = 3, + STATE(1566), 1, + sym__command_attribute_address_behavior, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5401), 8, + anon_sym_lines, + anon_sym_arguments, + anon_sym_buffers, + anon_sym_loaded_buffers, + anon_sym_windows, + anon_sym_tabs, + anon_sym_quickfix, + anon_sym_other, + [71477] = 3, + ACTIONS(5405), 1, + anon_sym_text, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5403), 8, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [71495] = 7, + ACTIONS(4319), 1, anon_sym_BSLASH, - ACTIONS(4328), 1, + ACTIONS(4323), 1, aux_sym_filename_token3, - STATE(1707), 1, + STATE(1717), 1, aux_sym_runtime_statement_repeat1, - STATE(1901), 1, + STATE(1883), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5209), 2, + ACTIONS(5303), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4330), 3, + ACTIONS(4325), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [69882] = 7, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(5384), 1, - anon_sym_PLUS, - STATE(2592), 1, - sym_filename, + [71521] = 4, + ACTIONS(5407), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [69908] = 6, - ACTIONS(3774), 1, + ACTIONS(4091), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4093), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [71541] = 7, + ACTIONS(5409), 1, anon_sym_BSLASH, - ACTIONS(3786), 1, + ACTIONS(5415), 1, aux_sym_filename_token3, - STATE(2369), 1, + STATE(1717), 1, + aux_sym_runtime_statement_repeat1, + STATE(1883), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 3, + ACTIONS(5295), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5412), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(5386), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [69932] = 3, - STATE(1563), 1, - sym__command_attribute_address_behavior, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5388), 8, - anon_sym_lines, - anon_sym_arguments, - anon_sym_buffers, - anon_sym_loaded_buffers, - anon_sym_windows, - anon_sym_tabs, - anon_sym_quickfix, - anon_sym_other, - [69950] = 5, - ACTIONS(4370), 1, + [71567] = 8, + ACTIONS(783), 1, + anon_sym_LT, + ACTIONS(785), 1, anon_sym_BSLASH2, - ACTIONS(4372), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1760), 1, - aux_sym__plus_cmd_arg, + ACTIONS(3461), 1, + aux_sym__map_rhs_statement_token1, + ACTIONS(5418), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1742), 1, + aux_sym__map_lhs_repeat1, + STATE(1902), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4454), 6, + ACTIONS(3465), 3, anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [69972] = 5, - ACTIONS(5390), 1, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [71595] = 5, + ACTIONS(5420), 1, anon_sym_PLUS_PLUS, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1713), 2, + STATE(1719), 2, sym_plus_plus_opt, aux_sym_edit_statement_repeat1, - ACTIONS(4464), 3, + ACTIONS(4557), 3, anon_sym_PLUS, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4466), 3, + ACTIONS(4559), 3, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token4, - [69994] = 3, + [71617] = 5, + STATE(1759), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5423), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5425), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5427), 4, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [71639] = 5, + STATE(1760), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5423), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5429), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5427), 4, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [71661] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4929), 3, + ACTIONS(5062), 3, anon_sym_PLUS, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4931), 6, + ACTIONS(5064), 6, sym__newline_or_pipe, sym_comment, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token4, anon_sym_PLUS_PLUS, - [70012] = 7, - ACTIONS(4256), 1, + [71679] = 7, + ACTIONS(4381), 1, anon_sym_BSLASH, - ACTIONS(5384), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - STATE(2394), 1, + STATE(2420), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -127662,452 +129073,456 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1853), 2, + STATE(1867), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [70038] = 3, + [71705] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5395), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5393), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [70056] = 8, - ACTIONS(5397), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5399), 1, + ACTIONS(721), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(719), 7, + anon_sym_START, + anon_sym_OPT, + anon_sym_PACK, + anon_sym_ALL, anon_sym_BSLASH, - ACTIONS(5401), 1, - anon_sym_BANG, - ACTIONS(5403), 1, - sym_string_literal, - STATE(1880), 1, - sym_bang, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5251), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1882), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [70084] = 7, - ACTIONS(4256), 1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [71723] = 7, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(5384), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - STATE(2418), 1, + STATE(2722), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3786), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1853), 2, + STATE(1867), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [70110] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5407), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5405), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [70128] = 5, - ACTIONS(5192), 1, + [71749] = 5, + ACTIONS(5352), 1, anon_sym_BSLASH, - STATE(1720), 1, + STATE(1726), 1, aux_sym_map_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5190), 2, + ACTIONS(5350), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_LT2, - ACTIONS(5409), 5, + ACTIONS(5431), 5, anon_sym_LTbuffer_GT, anon_sym_LTnowait_GT, anon_sym_LTsilent_GT, anon_sym_LTunique_GT, anon_sym_LTscript_GT, - [70150] = 3, + [71771] = 7, + ACTIONS(4381), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2417), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5414), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5412), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [70168] = 3, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [71797] = 7, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2730), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 3, - anon_sym_PLUS, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(719), 6, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [71823] = 4, + ACTIONS(5434), 1, + sym__printable, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5436), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5377), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [71843] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5253), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5255), 7, sym__newline_or_pipe, sym_comment, anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_POUND, aux_sym_filename_token1, aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [70186] = 8, - ACTIONS(5418), 1, - anon_sym_group, - ACTIONS(5420), 1, - anon_sym_STAR2, - ACTIONS(5422), 1, - sym_integer_literal, - STATE(2357), 1, - sym__sign_unplace_id, - STATE(2358), 1, - sym__sign_unplace_cursor, - STATE(2359), 1, - sym__sign_unplace_cursor_argument, + [71861] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5416), 3, + ACTIONS(3705), 2, + sym__separator, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3703), 7, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [70214] = 5, - ACTIONS(1327), 1, - aux_sym_identifier_token1, - ACTIONS(2427), 1, - aux_sym_argument_token1, - ACTIONS(2429), 1, - aux_sym_argument_token2, + anon_sym_LBRACK, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71879] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1321), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [70236] = 7, - ACTIONS(4326), 1, + ACTIONS(3709), 2, + sym__separator, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3707), 7, anon_sym_BSLASH, - ACTIONS(4328), 1, - aux_sym_filename_token3, - STATE(1707), 1, - aux_sym_runtime_statement_repeat1, - STATE(1901), 1, - sym_filename, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71897] = 5, + ACTIONS(4428), 1, + anon_sym_BSLASH2, + ACTIONS(4430), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1781), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5158), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4330), 3, + ACTIONS(4555), 6, + anon_sym_BSLASH, + anon_sym_PLUS, aux_sym_filename_token1, aux_sym_filename_token2, + aux_sym_filename_token3, aux_sym_filename_token4, - [70262] = 7, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(5384), 1, - anon_sym_PLUS, - STATE(2575), 1, - sym_filename, + [71919] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, + ACTIONS(5257), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [70288] = 7, - ACTIONS(3859), 1, + ACTIONS(5259), 7, + sym__newline_or_pipe, + sym_comment, anon_sym_BSLASH, - ACTIONS(5384), 1, anon_sym_PLUS, - STATE(2836), 1, - sym_filename, + anon_sym_POUND, + aux_sym_filename_token1, + aux_sym_filename_token4, + [71937] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(721), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(719), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + anon_sym_PLUS_PLUS, + [71955] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5121), 3, + anon_sym_PLUS, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [70314] = 5, - STATE(1728), 1, + ACTIONS(5123), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [71973] = 5, + STATE(1720), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5438), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5440), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5442), 4, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [71995] = 5, + STATE(1767), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5424), 2, + ACTIONS(5444), 2, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token7, - ACTIONS(4003), 3, + ACTIONS(4101), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5427), 3, + ACTIONS(5446), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [70336] = 3, + [72017] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5432), 3, + ACTIONS(5448), 9, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5430), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [70354] = 8, - ACTIONS(723), 1, + [72033] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5257), 3, + anon_sym_BSLASH, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5259), 6, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token4, + [72051] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5253), 3, + anon_sym_BSLASH, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5255), 6, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token4, + [72069] = 8, + ACTIONS(3481), 1, aux_sym__map_rhs_statement_token1, - ACTIONS(777), 1, + ACTIONS(5450), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(783), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(785), 1, + ACTIONS(5456), 1, anon_sym_BSLASH2, - STATE(1766), 1, + STATE(1742), 1, aux_sym__map_lhs_repeat1, - STATE(1935), 1, + STATE(1902), 1, sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(727), 3, + ACTIONS(3486), 3, anon_sym_BSLASH, anon_sym_LT2, aux_sym__map_rhs_token1, - [70382] = 5, - STATE(1728), 1, - aux_sym_filename_repeat1, + [72097] = 8, + ACTIONS(5459), 1, + anon_sym_BANG, + ACTIONS(5461), 1, + aux_sym_command_argument_token1, + ACTIONS(5465), 1, + sym_string_literal, + STATE(1882), 1, + sym_bang, + STATE(1912), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2074), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5434), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4038), 3, + ACTIONS(5463), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5436), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [70404] = 7, - ACTIONS(4326), 1, + [72125] = 7, + ACTIONS(4319), 1, anon_sym_BSLASH, - ACTIONS(4328), 1, + ACTIONS(4323), 1, aux_sym_filename_token3, - STATE(1707), 1, + STATE(1717), 1, aux_sym_runtime_statement_repeat1, - STATE(1901), 1, + STATE(1883), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5354), 2, + ACTIONS(5273), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4330), 3, + ACTIONS(4325), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [70430] = 6, - ACTIONS(3774), 1, - anon_sym_BSLASH, - ACTIONS(3786), 1, - aux_sym_filename_token3, - STATE(2427), 1, - sym_filename, + [72151] = 6, + ACTIONS(983), 1, + sym_au_event, + ACTIONS(5467), 1, + anon_sym_LBRACE2, + ACTIONS(5469), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4959), 3, + STATE(1747), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(985), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70454] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(721), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(719), 7, - anon_sym_START, - anon_sym_OPT, - anon_sym_PACK, - anon_sym_ALL, - anon_sym_BSLASH, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70472] = 7, - ACTIONS(3859), 1, + aux_sym__autocmd_pattern_token1, + [72175] = 7, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(5384), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - STATE(2743), 1, + STATE(2798), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3933), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1853), 2, + STATE(1867), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [70498] = 8, - ACTIONS(783), 1, - anon_sym_LT, - ACTIONS(785), 1, - anon_sym_BSLASH2, - ACTIONS(3459), 1, - aux_sym__map_rhs_statement_token1, - ACTIONS(5438), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1777), 1, - aux_sym__map_lhs_repeat1, - STATE(1935), 1, - sym__immediate_keycode, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3463), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [70526] = 6, - ACTIONS(995), 1, + [72201] = 6, + ACTIONS(911), 1, sym_au_event, - ACTIONS(5440), 1, + ACTIONS(5467), 1, anon_sym_LBRACE2, - ACTIONS(5443), 1, + ACTIONS(5471), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1737), 2, + STATE(1748), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(997), 4, + ACTIONS(913), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, aux_sym__autocmd_pattern_token1, - [70550] = 5, - ACTIONS(1898), 1, - aux_sym_identifier_token1, - ACTIONS(1900), 1, - anon_sym_EQ, - ACTIONS(1902), 1, - anon_sym_EQ_LT_LT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1896), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [70572] = 6, - ACTIONS(989), 1, + [72225] = 6, + ACTIONS(919), 1, sym_au_event, - ACTIONS(5446), 1, + ACTIONS(5473), 1, anon_sym_LBRACE2, - ACTIONS(5448), 1, + ACTIONS(5476), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, - sym_line_continuation_comment, - STATE(1737), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(991), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [70596] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5450), 9, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, + sym_line_continuation_comment, + STATE(1748), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(921), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70612] = 6, + aux_sym__autocmd_pattern_token1, + [72249] = 7, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2803), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [72275] = 6, ACTIONS(3774), 1, anon_sym_BSLASH, ACTIONS(3786), 1, aux_sym_filename_token3, - STATE(2476), 1, + STATE(2369), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -128116,49 +129531,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(5452), 3, + ACTIONS(5479), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70636] = 3, + [72299] = 7, + ACTIONS(4381), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2371), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4982), 3, - anon_sym_PLUS, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(4984), 6, - sym__newline_or_pipe, - sym_comment, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [72325] = 7, + ACTIONS(4319), 1, anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [70654] = 6, - ACTIONS(981), 1, - sym_au_event, - ACTIONS(5446), 1, - anon_sym_LBRACE2, - ACTIONS(5454), 1, - aux_sym_identifier_token2, + ACTIONS(4323), 1, + aux_sym_filename_token3, + STATE(1717), 1, + aux_sym_runtime_statement_repeat1, + STATE(1883), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1739), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(983), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [70678] = 6, + ACTIONS(5343), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4325), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [72351] = 6, ACTIONS(3774), 1, anon_sym_BSLASH, ACTIONS(3786), 1, aux_sym_filename_token3, - STATE(2596), 1, + STATE(2412), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, @@ -128167,32 +129587,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(5456), 3, + ACTIONS(5127), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70702] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5171), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5173), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - [70720] = 3, - ACTIONS(5460), 1, + [72375] = 3, + ACTIONS(5483), 1, anon_sym_text, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5458), 8, + ACTIONS(5481), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -128201,30 +129606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [70738] = 7, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(5384), 1, - anon_sym_PLUS, - STATE(2344), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [70764] = 2, + [72393] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5462), 9, + ACTIONS(5485), 9, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -128234,369 +129620,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [70780] = 7, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(5384), 1, - anon_sym_PLUS, - STATE(2341), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3784), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3786), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [70806] = 3, - ACTIONS(3705), 1, - aux_sym__pattern_ordinary_atom_token2, + [72409] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3703), 8, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(5487), 9, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [70824] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5175), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5177), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - anon_sym_PLUS, - anon_sym_POUND, - aux_sym_filename_token1, - aux_sym_filename_token4, - [70842] = 3, - ACTIONS(3709), 1, - aux_sym__pattern_ordinary_atom_token2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [72425] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3707), 8, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(5491), 3, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [70860] = 7, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(5384), 1, - anon_sym_PLUS, - STATE(2787), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [70886] = 8, - ACTIONS(5464), 1, - anon_sym_BANG, - ACTIONS(5466), 1, - aux_sym_command_argument_token1, - ACTIONS(5470), 1, - sym_string_literal, - STATE(1910), 1, - sym_bang, - STATE(1913), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5489), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [72443] = 5, + ACTIONS(1349), 1, + aux_sym_identifier_token1, + ACTIONS(2455), 1, + aux_sym_argument_token1, + ACTIONS(2457), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5468), 3, + ACTIONS(1343), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70914] = 5, - STATE(1755), 1, + [72465] = 5, + STATE(1759), 1, aux_sym__bang_filter_command_argument_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5472), 2, + ACTIONS(5493), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5474), 2, + ACTIONS(5495), 2, aux_sym__bang_filter_command_argument_token3, aux_sym__bang_filter_command_argument_token4, - ACTIONS(5477), 4, + ACTIONS(5498), 4, sym_string_literal, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70936] = 5, - STATE(1755), 1, + [72487] = 5, + STATE(1759), 1, aux_sym__bang_filter_command_argument_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5363), 2, + ACTIONS(5425), 2, aux_sym__bang_filter_command_argument_token3, aux_sym__bang_filter_command_argument_token4, - ACTIONS(5479), 2, + ACTIONS(5500), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5481), 4, + ACTIONS(5502), 4, sym_string_literal, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70958] = 2, + [72509] = 8, + ACTIONS(5459), 1, + anon_sym_BANG, + ACTIONS(5461), 1, + aux_sym_command_argument_token1, + ACTIONS(5465), 1, + sym_string_literal, + STATE(1921), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(1923), 1, + sym_bang, + STATE(2074), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5483), 9, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(5504), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [70974] = 4, - ACTIONS(5485), 1, - sym__printable, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5487), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5213), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [70994] = 7, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(5384), 1, - anon_sym_PLUS, - STATE(2690), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3867), 2, - aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [71020] = 5, - ACTIONS(5489), 1, - anon_sym_BSLASH2, - ACTIONS(5492), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1760), 1, - aux_sym__plus_cmd_arg, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4576), 6, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [71042] = 7, - ACTIONS(5495), 1, + [72537] = 7, + ACTIONS(5506), 1, anon_sym_a_COLON, - ACTIONS(5497), 1, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(5499), 1, + ACTIONS(5510), 1, aux_sym_identifier_token1, - ACTIONS(5501), 1, + ACTIONS(5512), 1, sym_scope, - STATE(969), 1, + STATE(982), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1524), 4, + STATE(1543), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - [71068] = 7, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(5507), 1, - sym_integer_literal, - STATE(969), 1, - sym__curly_braces_name_expression, + [72563] = 5, + STATE(1783), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2364), 2, - sym_identifier, - sym__sign_name, - ACTIONS(5505), 3, + ACTIONS(5514), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4061), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71094] = 4, - ACTIONS(5509), 1, - sym_hl_group, + ACTIONS(5516), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [72585] = 8, + ACTIONS(783), 1, + anon_sym_LT, + ACTIONS(785), 1, + anon_sym_BSLASH2, + ACTIONS(3494), 1, + aux_sym__map_rhs_statement_token1, + ACTIONS(5418), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1742), 1, + aux_sym__map_lhs_repeat1, + STATE(1902), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4133), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4135), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [71114] = 5, - ACTIONS(4370), 1, - anon_sym_BSLASH2, - ACTIONS(4372), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1760), 1, - aux_sym__plus_cmd_arg, + ACTIONS(3496), 3, + anon_sym_BSLASH, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [72613] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4538), 6, + ACTIONS(5520), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5518), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [72631] = 6, + ACTIONS(3774), 1, anon_sym_BSLASH, - anon_sym_PLUS, + ACTIONS(3786), 1, + aux_sym_filename_token3, + STATE(2513), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 3, aux_sym_filename_token1, aux_sym_filename_token2, - aux_sym_filename_token3, aux_sym_filename_token4, - [71136] = 5, - STATE(1728), 1, + ACTIONS(5522), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [72655] = 5, + STATE(1782), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5434), 2, + ACTIONS(5524), 2, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token7, - ACTIONS(4062), 3, + ACTIONS(4061), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5436), 3, + ACTIONS(5526), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [71158] = 8, + [72677] = 8, ACTIONS(783), 1, anon_sym_LT, ACTIONS(785), 1, anon_sym_BSLASH2, - ACTIONS(3467), 1, + ACTIONS(3461), 1, aux_sym__map_rhs_statement_token1, - ACTIONS(5438), 1, + ACTIONS(5528), 1, aux_sym__bang_filter_command_argument_token3, - STATE(1777), 1, + STATE(1764), 1, aux_sym__map_lhs_repeat1, - STATE(1935), 1, + STATE(1902), 1, sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3471), 3, + ACTIONS(3465), 3, anon_sym_BSLASH, anon_sym_LT2, aux_sym__map_rhs_token1, - [71186] = 5, - STATE(1731), 1, - aux_sym_filename_repeat1, + [72705] = 8, + ACTIONS(5530), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5532), 1, + anon_sym_BSLASH, + ACTIONS(5534), 1, + anon_sym_BANG, + ACTIONS(5536), 1, + sym_string_literal, + STATE(1932), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5511), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4062), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5513), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [71208] = 3, + ACTIONS(5267), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1933), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [72733] = 7, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2774), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5175), 3, - anon_sym_BSLASH, + ACTIONS(3933), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3935), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(5177), 6, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [72759] = 7, + ACTIONS(4381), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + STATE(2374), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 2, aux_sym_filename_token1, aux_sym_filename_token4, - [71226] = 3, + ACTIONS(3786), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [72785] = 7, + ACTIONS(4381), 1, + anon_sym_BSLASH, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(2487), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5171), 3, - anon_sym_BSLASH, + ACTIONS(3784), 2, + aux_sym_filename_token1, + aux_sym_filename_token4, + ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - ACTIONS(5173), 6, - anon_sym_PLUS, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + [72811] = 5, + ACTIONS(1639), 1, + aux_sym_identifier_token1, + ACTIONS(1641), 1, + anon_sym_EQ, + ACTIONS(1643), 1, + anon_sym_EQ_LT_LT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1637), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym_filename_token1, - aux_sym_filename_token4, - [71244] = 2, + [72833] = 7, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(5542), 1, + sym_integer_literal, + STATE(982), 1, + sym__curly_braces_name_expression, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2503), 2, + sym_identifier, + sym__sign_name, + ACTIONS(5540), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [72859] = 8, + ACTIONS(5546), 1, + anon_sym_group, + ACTIONS(5548), 1, + anon_sym_STAR2, + ACTIONS(5550), 1, + sym_integer_literal, + STATE(2499), 1, + sym__sign_unplace_id, + STATE(2500), 1, + sym__sign_unplace_cursor, + STATE(2501), 1, + sym__sign_unplace_cursor_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5544), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [72887] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5515), 9, + ACTIONS(5552), 9, sym__normal, sym__source, sym__global, @@ -128606,65 +129993,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71260] = 3, - ACTIONS(5519), 1, - anon_sym_text, + [72903] = 8, + ACTIONS(723), 1, + aux_sym__map_rhs_statement_token1, + ACTIONS(777), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(783), 1, + anon_sym_LT, + ACTIONS(785), 1, + anon_sym_BSLASH2, + STATE(1718), 1, + aux_sym__map_lhs_repeat1, + STATE(1902), 1, + sym__immediate_keycode, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(727), 3, + anon_sym_BSLASH, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [72931] = 3, + ACTIONS(3709), 1, + aux_sym__pattern_ordinary_atom_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5517), 8, + ACTIONS(3707), 8, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [71278] = 7, - ACTIONS(3859), 1, + anon_sym_LBRACK, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [72949] = 7, + ACTIONS(4381), 1, anon_sym_BSLASH, - ACTIONS(5384), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - STATE(2708), 1, + STATE(2490), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3784), 2, aux_sym_filename_token1, aux_sym_filename_token4, - ACTIONS(3869), 2, + ACTIONS(3786), 2, aux_sym_filename_token2, aux_sym_filename_token3, - STATE(1853), 2, + STATE(1867), 2, sym_plus_cmd, aux_sym_edit_statement_repeat2, - [71304] = 8, - ACTIONS(5464), 1, - anon_sym_BANG, - ACTIONS(5466), 1, - aux_sym_command_argument_token1, - ACTIONS(5470), 1, - sym_string_literal, - STATE(1914), 1, - sym_bang, - STATE(1916), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, + [72975] = 3, + ACTIONS(3705), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3703), 8, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [72993] = 5, + ACTIONS(5554), 1, + anon_sym_BSLASH2, + ACTIONS(5557), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1781), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4650), 6, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [73015] = 5, + STATE(1782), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5560), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4078), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5563), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [73037] = 5, + STATE(1782), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5521), 3, + ACTIONS(5524), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4071), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71332] = 2, + ACTIONS(5526), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [73059] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5523), 9, + ACTIONS(5566), 9, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, @@ -128674,308 +130127,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [71348] = 7, - ACTIONS(3859), 1, + [73075] = 3, + ACTIONS(5570), 1, + anon_sym_text, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5568), 8, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [73093] = 5, + ACTIONS(4428), 1, + anon_sym_BSLASH2, + ACTIONS(4430), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1781), 1, + aux_sym__plus_cmd_arg, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4646), 6, anon_sym_BSLASH, - ACTIONS(5384), 1, anon_sym_PLUS, - STATE(2780), 1, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [73115] = 6, + ACTIONS(3774), 1, + anon_sym_BSLASH, + ACTIONS(3786), 1, + aux_sym_filename_token3, + STATE(2286), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 2, + ACTIONS(3784), 3, aux_sym_filename_token1, - aux_sym_filename_token4, - ACTIONS(3869), 2, aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - [71374] = 3, - ACTIONS(5527), 1, - anon_sym_text, + aux_sym_filename_token4, + ACTIONS(5572), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [73139] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5525), 8, + ACTIONS(5576), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [71392] = 8, - ACTIONS(3407), 1, - aux_sym__map_rhs_statement_token1, - ACTIONS(5529), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5532), 1, - anon_sym_LT, - ACTIONS(5535), 1, - anon_sym_BSLASH2, - STATE(1777), 1, - aux_sym__map_lhs_repeat1, - STATE(1935), 1, - sym__immediate_keycode, + ACTIONS(5574), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [73157] = 8, + ACTIONS(5578), 1, + anon_sym_BANG, + ACTIONS(5580), 1, + aux_sym_command_argument_token1, + ACTIONS(5584), 1, + sym_string_literal, + STATE(2027), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2028), 1, + sym_bang, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3412), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [71420] = 5, - STATE(1701), 1, - aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5582), 2, + sym__newline_or_pipe, + sym_comment, + [73184] = 5, + STATE(1822), 1, + aux_sym__syn_cluster_repeat1, + STATE(2041), 1, + sym__syn_arguments_cluster, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5538), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5540), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5542), 4, - sym_string_literal, + ACTIONS(5586), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71442] = 6, - ACTIONS(5544), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5547), 1, - anon_sym_BSLASH, - ACTIONS(5552), 1, - sym_string_literal, + ACTIONS(5588), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [73205] = 6, + ACTIONS(5592), 1, + sym_hl_group, + STATE(1911), 1, + aux_sym__syn_sync_repeat1, + STATE(2138), 1, + sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1779), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - ACTIONS(5550), 3, + ACTIONS(5594), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(5590), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71465] = 5, + [73228] = 5, STATE(25), 1, sym__cmd_separator, - STATE(1826), 1, + STATE(1937), 1, aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5557), 2, + ACTIONS(5598), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5555), 4, + ACTIONS(5596), 4, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [71486] = 7, - ACTIONS(5034), 1, - anon_sym_name, - ACTIONS(5036), 1, - anon_sym_group, - ACTIONS(5038), 1, - anon_sym_file, - STATE(1579), 1, - aux_sym__sign_place_place_repeat1, - STATE(1774), 1, - sym__sign_place_place_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5032), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [71511] = 7, - ACTIONS(5561), 1, + [73249] = 7, + ACTIONS(5602), 1, anon_sym_buffer, - ACTIONS(5563), 1, + ACTIONS(5604), 1, anon_sym_group, - ACTIONS(5565), 1, + ACTIONS(5606), 1, anon_sym_file, - STATE(1864), 1, + STATE(1815), 1, aux_sym__sign_unplace_id_repeat1, - STATE(1943), 1, + STATE(2009), 1, sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5559), 3, + ACTIONS(5600), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71536] = 6, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3869), 1, - aux_sym_filename_token3, - STATE(2704), 1, - sym_filename, + [73274] = 6, + ACTIONS(921), 1, + aux_sym__autocmd_pattern_token1, + ACTIONS(5608), 1, + anon_sym_LBRACE2, + ACTIONS(5611), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5452), 2, + STATE(1794), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(919), 3, sym__newline_or_pipe, sym_comment, - ACTIONS(3867), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71559] = 3, - ACTIONS(4660), 1, - anon_sym_BSLASH2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4576), 7, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [71576] = 7, - ACTIONS(5569), 1, + sym_au_event, + [73297] = 7, + ACTIONS(5602), 1, anon_sym_buffer, - ACTIONS(5572), 1, + ACTIONS(5604), 1, anon_sym_group, - ACTIONS(5575), 1, + ACTIONS(5606), 1, anon_sym_file, - STATE(1785), 1, - aux_sym__sign_place_list, - STATE(1995), 1, - sym__sign_place_list_argument, + STATE(1815), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2009), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5567), 3, + ACTIONS(5614), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71601] = 7, - ACTIONS(5580), 1, + [73322] = 7, + ACTIONS(5618), 1, anon_sym_buffer, - ACTIONS(5582), 1, + ACTIONS(5620), 1, anon_sym_group, - ACTIONS(5584), 1, + ACTIONS(5622), 1, anon_sym_file, - STATE(1858), 1, + STATE(1819), 1, aux_sym__sign_jump_repeat1, - STATE(1994), 1, + STATE(2002), 1, sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5578), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [71626] = 6, - ACTIONS(5245), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5247), 1, - anon_sym_BSLASH, - ACTIONS(5253), 1, - sym_string_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1849), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - ACTIONS(5586), 3, + ACTIONS(5616), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71649] = 6, - ACTIONS(5245), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5247), 1, - anon_sym_BSLASH, - ACTIONS(5253), 1, - sym_string_literal, + [73347] = 5, + STATE(30), 1, + sym__cmd_separator, + STATE(1792), 1, + aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1779), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - ACTIONS(5586), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [71672] = 7, - ACTIONS(5580), 1, + ACTIONS(5626), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5624), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [73368] = 7, + ACTIONS(5618), 1, anon_sym_buffer, - ACTIONS(5582), 1, + ACTIONS(5620), 1, anon_sym_group, - ACTIONS(5584), 1, + ACTIONS(5622), 1, anon_sym_file, - STATE(1858), 1, + STATE(1819), 1, aux_sym__sign_jump_repeat1, - STATE(1994), 1, + STATE(2002), 1, sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5588), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [71697] = 7, - ACTIONS(5561), 1, - anon_sym_buffer, - ACTIONS(5563), 1, - anon_sym_group, - ACTIONS(5565), 1, - anon_sym_file, - STATE(1864), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(1943), 1, - sym__sign_unplace_id_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5590), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [71722] = 7, - ACTIONS(5594), 1, - anon_sym_buffer, - ACTIONS(5596), 1, - anon_sym_group, - ACTIONS(5598), 1, - anon_sym_file, - STATE(1785), 1, - aux_sym__sign_place_list, - STATE(1995), 1, - sym__sign_place_list_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5592), 3, + ACTIONS(5628), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71747] = 3, - STATE(1097), 1, + [73393] = 3, + STATE(1118), 1, sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2536), 7, + ACTIONS(2592), 7, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -128983,362 +130379,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - [71764] = 7, - ACTIONS(5561), 1, - anon_sym_buffer, - ACTIONS(5563), 1, - anon_sym_group, - ACTIONS(5565), 1, - anon_sym_file, - STATE(1782), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(1943), 1, - sym__sign_unplace_id_argument, + [73410] = 5, + STATE(25), 1, + sym__cmd_separator, + STATE(1804), 1, + aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5600), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [71789] = 9, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_RPAREN, - ACTIONS(5606), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2388), 1, - sym_default_parameter, - STATE(2405), 1, - sym_identifier, + ACTIONS(5598), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5630), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [73431] = 3, + ACTIONS(4906), 1, + anon_sym_BSLASH2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [71818] = 6, - ACTIONS(3859), 1, + ACTIONS(4650), 7, anon_sym_BSLASH, - ACTIONS(3869), 1, - aux_sym_filename_token3, - STATE(2710), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5456), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3867), 3, + anon_sym_PLUS, aux_sym_filename_token1, aux_sym_filename_token2, + aux_sym_filename_token3, aux_sym_filename_token4, - [71841] = 8, - ACTIONS(5608), 1, - anon_sym_BANG, - ACTIONS(5610), 1, - aux_sym_command_argument_token1, - ACTIONS(5614), 1, - sym_string_literal, - STATE(1954), 1, - sym_bang, - STATE(1955), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5612), 2, - sym__newline_or_pipe, - sym_comment, - [71868] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5450), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - [71883] = 7, - ACTIONS(4097), 1, - sym_au_event, - ACTIONS(4099), 1, - aux_sym__autocmd_pattern_token1, - STATE(2071), 1, - sym_au_event_list, - STATE(2403), 1, - sym__autocmd_command, - STATE(2404), 1, - sym__autocmd_pattern, + aux_sym__plus_cmd_arg_token1, + [73448] = 7, + ACTIONS(5634), 1, + anon_sym_buffer, + ACTIONS(5637), 1, + anon_sym_group, + ACTIONS(5640), 1, + anon_sym_file, + STATE(1802), 1, + aux_sym__sign_place_list, + STATE(1959), 1, + sym__sign_place_list_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5616), 3, + ACTIONS(5632), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [71908] = 7, - ACTIONS(791), 1, - anon_sym_LT, - ACTIONS(793), 1, - anon_sym_BSLASH2, - ACTIONS(797), 1, - aux_sym__map_rhs_token2, - STATE(1868), 1, - aux_sym__map_rhs_repeat1, - STATE(2008), 1, - sym__immediate_keycode, + [73473] = 5, + ACTIONS(1639), 1, + aux_sym_identifier_token1, + ACTIONS(1641), 1, + anon_sym_EQ, + ACTIONS(1643), 1, + anon_sym_EQ_LT_LT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(795), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [71933] = 3, - STATE(901), 1, - sym__syn_pattern_offset, + ACTIONS(1637), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + [73494] = 5, + STATE(51), 1, + sym__cmd_separator, + STATE(1937), 1, + aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2435), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [71950] = 2, + ACTIONS(5643), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5596), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [73515] = 9, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(5645), 1, + anon_sym_COMMA, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(5649), 1, + sym_spread, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2442), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5618), 8, - anon_sym_BSLASH, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [71965] = 5, - ACTIONS(1327), 1, + [73544] = 5, + ACTIONS(1349), 1, aux_sym_identifier_token1, - ACTIONS(2427), 1, + ACTIONS(2455), 1, aux_sym_argument_token1, - ACTIONS(2429), 1, + ACTIONS(2457), 1, aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1321), 5, + ACTIONS(1343), 5, sym__newline_or_pipe, sym__scope_dict, sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - [71986] = 2, + [73565] = 7, + ACTIONS(5093), 1, + anon_sym_name, + ACTIONS(5095), 1, + anon_sym_group, + ACTIONS(5097), 1, + anon_sym_file, + STATE(1583), 1, + aux_sym__sign_place_place_repeat1, + STATE(1784), 1, + sym__sign_place_place_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5523), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5091), 3, anon_sym_line, - anon_sym_name, anon_sym_buffer, - anon_sym_group, anon_sym_priority, - anon_sym_file, - [72001] = 7, - ACTIONS(5580), 1, - anon_sym_buffer, - ACTIONS(5582), 1, - anon_sym_group, - ACTIONS(5584), 1, - anon_sym_file, - STATE(1789), 1, - aux_sym__sign_jump_repeat1, - STATE(1994), 1, - sym__sign_jump_argument, + [73590] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5620), 3, + ACTIONS(721), 2, + anon_sym_BSLASH, + aux_sym_filename_token3, + ACTIONS(719), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72026] = 3, - ACTIONS(5460), 1, - anon_sym_text, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5458), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [72043] = 6, - ACTIONS(997), 1, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73607] = 6, + ACTIONS(913), 1, aux_sym__autocmd_pattern_token1, - ACTIONS(5622), 1, + ACTIONS(5651), 1, anon_sym_LBRACE2, - ACTIONS(5625), 1, + ACTIONS(5653), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1806), 2, + STATE(1794), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(995), 3, + ACTIONS(911), 3, sym__newline_or_pipe, sym_comment, sym_au_event, - [72066] = 7, - ACTIONS(4097), 1, - sym_au_event, - ACTIONS(4099), 1, - aux_sym__autocmd_pattern_token1, - STATE(2100), 1, - sym_au_event_list, - STATE(2285), 1, - sym__autocmd_command, - STATE(2286), 1, - sym__autocmd_pattern, + [73630] = 5, + STATE(42), 1, + sym__cmd_separator, + STATE(1875), 1, + aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5628), 3, + ACTIONS(5657), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5655), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [73651] = 5, + STATE(1790), 1, + aux_sym__syn_cluster_repeat1, + STATE(2041), 1, + sym__syn_arguments_cluster, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5588), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + ACTIONS(5659), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72091] = 2, + [73672] = 5, + ACTIONS(5663), 1, + aux_sym_filename_token7, + STATE(1866), 1, + aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5462), 8, + ACTIONS(4061), 2, sym__newline_or_pipe, sym_comment, - anon_sym_line, - anon_sym_name, + ACTIONS(5661), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [73693] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5552), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + [73708] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5665), 2, + anon_sym_BSLASH, + aux_sym_filename_token3, + ACTIONS(5667), 6, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73725] = 7, + ACTIONS(5671), 1, anon_sym_buffer, + ACTIONS(5674), 1, anon_sym_group, - anon_sym_priority, + ACTIONS(5677), 1, anon_sym_file, - [72106] = 7, - ACTIONS(791), 1, - anon_sym_LT, - ACTIONS(793), 1, - anon_sym_BSLASH2, - ACTIONS(5632), 1, - aux_sym__map_rhs_token2, - STATE(1812), 1, - aux_sym__map_rhs_repeat1, - STATE(2008), 1, - sym__immediate_keycode, + STATE(1815), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2009), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5630), 3, + ACTIONS(5669), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72131] = 7, - ACTIONS(5580), 1, + [73750] = 5, + ACTIONS(5682), 1, + aux_sym_filename_token7, + STATE(1865), 1, + aux_sym_filename_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4061), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5680), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [73771] = 7, + ACTIONS(5602), 1, anon_sym_buffer, - ACTIONS(5582), 1, + ACTIONS(5604), 1, anon_sym_group, - ACTIONS(5584), 1, + ACTIONS(5606), 1, anon_sym_file, - STATE(1786), 1, - aux_sym__sign_jump_repeat1, - STATE(1994), 1, - sym__sign_jump_argument, + STATE(1793), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2009), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5634), 3, + ACTIONS(5684), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72156] = 8, - ACTIONS(5636), 1, - anon_sym_group, - ACTIONS(5638), 1, - anon_sym_STAR2, - ACTIONS(5640), 1, - sym_integer_literal, - STATE(2755), 1, - sym__sign_unplace_id, - STATE(2760), 1, - sym__sign_unplace_cursor, - STATE(2761), 1, - sym__sign_unplace_cursor_argument, + [73796] = 6, + ACTIONS(5686), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5688), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1840), 1, + aux_sym__bang_filter_command_argument_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5416), 2, + ACTIONS(5423), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5427), 3, sym__newline_or_pipe, - sym_comment, - [72183] = 7, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5645), 1, - anon_sym_BSLASH2, - ACTIONS(5650), 1, - aux_sym__map_rhs_token2, - STATE(1812), 1, - aux_sym__map_rhs_repeat1, - STATE(2008), 1, - sym__immediate_keycode, + sym_string_literal, + sym_comment, + [73819] = 7, + ACTIONS(5692), 1, + anon_sym_buffer, + ACTIONS(5695), 1, + anon_sym_group, + ACTIONS(5698), 1, + anon_sym_file, + STATE(1819), 1, + aux_sym__sign_jump_repeat1, + STATE(2002), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5648), 3, + ACTIONS(5690), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72208] = 8, - ACTIONS(5608), 1, - anon_sym_BANG, - ACTIONS(5610), 1, - aux_sym_command_argument_token1, - ACTIONS(5614), 1, + [73844] = 6, + ACTIONS(5701), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5703), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1839), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5423), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5427), 3, + sym__newline_or_pipe, sym_string_literal, - STATE(1971), 1, - sym_bang, - STATE(1972), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + sym_comment, + [73867] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5653), 2, + ACTIONS(5566), 8, sym__newline_or_pipe, sym_comment, - [72235] = 2, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [73882] = 5, + STATE(1822), 1, + aux_sym__syn_cluster_repeat1, + STATE(2041), 1, + sym__syn_arguments_cluster, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5705), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + ACTIONS(5707), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [73903] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5393), 8, + ACTIONS(5518), 8, sym__newline_or_pipe, sym_comment, anon_sym_EQ2, @@ -129347,78 +130765,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_DASH_EQ2, anon_sym_, - [72250] = 6, - ACTIONS(5655), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5658), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1815), 1, - aux_sym__bang_filter_command_argument_repeat1, + [73918] = 6, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3935), 1, + aux_sym_filename_token3, + STATE(2808), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5472), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5477), 3, + ACTIONS(5127), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, - [72273] = 5, - STATE(1831), 1, - aux_sym__syn_cluster_repeat1, - STATE(2004), 1, - sym__syn_arguments_cluster, + ACTIONS(3933), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73941] = 5, + ACTIONS(3153), 1, + sym_hl_group, + STATE(2036), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5661), 3, + ACTIONS(5710), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5663), 3, + ACTIONS(5712), 3, anon_sym_contains, anon_sym_add, anon_sym_remove, - [72294] = 6, - ACTIONS(5665), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5667), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1815), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5479), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5481), 3, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - [72317] = 6, - ACTIONS(991), 1, + [73962] = 6, + ACTIONS(985), 1, aux_sym__autocmd_pattern_token1, - ACTIONS(5669), 1, + ACTIONS(5651), 1, anon_sym_LBRACE2, - ACTIONS(5671), 1, + ACTIONS(5714), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1806), 2, + STATE(1809), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(989), 3, + ACTIONS(983), 3, sym__newline_or_pipe, sym_comment, sym_au_event, - [72340] = 2, + [73985] = 3, + ACTIONS(5570), 1, + anon_sym_text, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5568), 7, + sym__newline_or_pipe, + sym_comment, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [74002] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5515), 8, + ACTIONS(5448), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -129427,13 +130842,26 @@ static const uint16_t ts_small_parse_table[] = { sym__call, anon_sym_COLON, anon_sym_BANG, - [72355] = 3, - ACTIONS(5527), 1, + [74017] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5716), 8, + anon_sym_BSLASH, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [74032] = 3, + ACTIONS(5405), 1, anon_sym_text, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5525), 7, + ACTIONS(5403), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -129441,85 +130869,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [72372] = 5, - ACTIONS(5675), 1, - aux_sym_filename_token7, - STATE(1856), 1, - aux_sym_filename_repeat1, + [74049] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4062), 2, + ACTIONS(5395), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(5673), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [72393] = 9, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5679), 1, - anon_sym_RPAREN, - ACTIONS(5681), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2405), 1, - sym_identifier, - STATE(2410), 1, - sym_default_parameter, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [74064] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [72422] = 5, - ACTIONS(5685), 1, - aux_sym_filename_token7, - STATE(1855), 1, - aux_sym_filename_repeat1, + ACTIONS(5718), 8, + anon_sym_BSLASH, + anon_sym_LBRACK, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [74079] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4062), 2, + ACTIONS(5574), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(5683), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [72443] = 9, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(5687), 1, - anon_sym_COMMA, - ACTIONS(5689), 1, - anon_sym_RPAREN, - ACTIONS(5691), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2202), 1, - sym_identifier, - STATE(2371), 1, - sym_default_parameter, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [74094] = 5, + STATE(33), 1, + sym__cmd_separator, + STATE(1937), 1, + aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [72472] = 3, - STATE(1090), 1, + ACTIONS(5720), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5596), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74115] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5487), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym__global, + sym__call, + anon_sym_COLON, + anon_sym_BANG, + [74130] = 3, + STATE(923), 1, sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2489), 7, + ACTIONS(2496), 7, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -129527,5150 +130951,5187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - [72489] = 5, - STATE(35), 1, - sym__cmd_separator, - STATE(1888), 1, - aux_sym_function_definition_repeat1, + [74147] = 9, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(5722), 1, + anon_sym_COMMA, + ACTIONS(5724), 1, + anon_sym_RPAREN, + ACTIONS(5726), 1, + sym_spread, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2311), 1, + sym_default_parameter, + STATE(2317), 1, + sym_identifier, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [74176] = 8, + ACTIONS(5578), 1, + anon_sym_BANG, + ACTIONS(5580), 1, + aux_sym_command_argument_token1, + ACTIONS(5584), 1, + sym_string_literal, + STATE(1952), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2011), 1, + sym_bang, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5695), 2, + ACTIONS(5728), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5693), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [72510] = 7, - ACTIONS(5561), 1, - anon_sym_buffer, - ACTIONS(5563), 1, - anon_sym_group, - ACTIONS(5565), 1, - anon_sym_file, - STATE(1790), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(1943), 1, - sym__sign_unplace_id_argument, + [74203] = 6, + ACTIONS(5686), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5688), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1840), 1, + aux_sym__bang_filter_command_argument_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5697), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [72535] = 2, + ACTIONS(5500), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5502), 3, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + [74226] = 6, + ACTIONS(5730), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5733), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1840), 1, + aux_sym__bang_filter_command_argument_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5699), 8, + ACTIONS(5493), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [72550] = 5, - ACTIONS(3081), 1, - sym_hl_group, - STATE(1974), 1, - sym_hl_groups, + ACTIONS(5498), 3, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + [74249] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5701), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - ACTIONS(5703), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [72571] = 5, - STATE(35), 1, + ACTIONS(5253), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5255), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token4, + [74266] = 5, + STATE(41), 1, sym__cmd_separator, - STATE(1842), 1, + STATE(1834), 1, aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5695), 2, + ACTIONS(5738), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5705), 4, + ACTIONS(5736), 4, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [72592] = 5, - STATE(1834), 1, - aux_sym__syn_cluster_repeat1, - STATE(2004), 1, - sym__syn_arguments_cluster, + [74287] = 6, + ACTIONS(5261), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5263), 1, + anon_sym_BSLASH, + ACTIONS(5269), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5663), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - ACTIONS(5707), 3, + STATE(1870), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + ACTIONS(5740), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72613] = 2, + [74310] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5412), 8, + ACTIONS(5257), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5259), 6, sym__newline_or_pipe, sym_comment, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [72628] = 6, - ACTIONS(3859), 1, anon_sym_BSLASH, - ACTIONS(3869), 1, - aux_sym_filename_token3, - STATE(2799), 1, - sym_filename, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token4, + [74327] = 7, + ACTIONS(4142), 1, + sym_au_event, + ACTIONS(4144), 1, + aux_sym__autocmd_pattern_token1, + STATE(2143), 1, + sym_au_event_list, + STATE(2452), 1, + sym__autocmd_command, + STATE(2453), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4959), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3867), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [72651] = 5, - STATE(1834), 1, - aux_sym__syn_cluster_repeat1, - STATE(2004), 1, - sym__syn_arguments_cluster, + ACTIONS(5742), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74352] = 7, + ACTIONS(791), 1, + anon_sym_LT, + ACTIONS(793), 1, + anon_sym_BSLASH2, + ACTIONS(5746), 1, + aux_sym__map_rhs_token2, + STATE(1862), 1, + aux_sym__map_rhs_repeat1, + STATE(2012), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5709), 3, + ACTIONS(5744), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - ACTIONS(5711), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [72672] = 7, - ACTIONS(5714), 1, - anon_sym_LBRACE, - ACTIONS(5716), 1, - aux_sym_identifier_token1, - ACTIONS(5718), 1, - sym_integer_literal, - STATE(1990), 1, - sym__curly_braces_name_expression, + [74377] = 6, + ACTIONS(5261), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5263), 1, + anon_sym_BSLASH, + ACTIONS(5269), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5505), 2, - sym__newline_or_pipe, - sym_comment, - STATE(2777), 2, - sym_identifier, - sym__sign_name, - [72697] = 3, + STATE(1869), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + ACTIONS(5740), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74400] = 7, + ACTIONS(5750), 1, + anon_sym_buffer, + ACTIONS(5752), 1, + anon_sym_group, + ACTIONS(5754), 1, + anon_sym_file, + STATE(1802), 1, + aux_sym__sign_place_list, + STATE(1959), 1, + sym__sign_place_list_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5171), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5173), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token4, - [72714] = 5, - STATE(42), 1, - sym__cmd_separator, - STATE(1888), 1, - aux_sym_function_definition_repeat1, + ACTIONS(5748), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74425] = 9, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(5758), 1, + anon_sym_RPAREN, + ACTIONS(5760), 1, + sym_spread, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2315), 1, + sym_default_parameter, + STATE(2317), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5720), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5693), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [72735] = 2, + [74454] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5405), 8, + ACTIONS(5485), 8, sym__newline_or_pipe, sym_comment, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [72750] = 3, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [74469] = 7, + ACTIONS(791), 1, + anon_sym_LT, + ACTIONS(793), 1, + anon_sym_BSLASH2, + ACTIONS(797), 1, + aux_sym__map_rhs_token2, + STATE(1846), 1, + aux_sym__map_rhs_repeat1, + STATE(2012), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5175), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5177), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token4, - [72767] = 5, - ACTIONS(1898), 1, - aux_sym_identifier_token1, - ACTIONS(1900), 1, - anon_sym_EQ, - ACTIONS(1902), 1, - anon_sym_EQ_LT_LT, + ACTIONS(795), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74494] = 7, + ACTIONS(5602), 1, + anon_sym_buffer, + ACTIONS(5604), 1, + anon_sym_group, + ACTIONS(5606), 1, + anon_sym_file, + STATE(1795), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2009), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1896), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - [72788] = 3, - ACTIONS(5084), 1, + ACTIONS(5762), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74519] = 7, + ACTIONS(791), 1, + anon_sym_LT, + ACTIONS(793), 1, anon_sym_BSLASH2, + ACTIONS(5764), 1, + aux_sym__map_rhs_token2, + STATE(1878), 1, + aux_sym__map_rhs_repeat1, + STATE(2012), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4893), 7, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - aux_sym__plus_cmd_arg_token1, - [72805] = 5, - STATE(50), 1, - sym__cmd_separator, - STATE(1888), 1, - aux_sym_function_definition_repeat1, + ACTIONS(5744), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74544] = 8, + ACTIONS(5766), 1, + anon_sym_group, + ACTIONS(5768), 1, + anon_sym_STAR2, + ACTIONS(5770), 1, + sym_integer_literal, + STATE(2689), 1, + sym__sign_unplace_cursor, + STATE(2703), 1, + sym__sign_unplace_cursor_argument, + STATE(2783), 1, + sym__sign_unplace_id, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5722), 2, + ACTIONS(5544), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5693), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [72826] = 6, - ACTIONS(5724), 1, + [74571] = 6, + ACTIONS(5772), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(5726), 1, + ACTIONS(5774), 1, aux_sym__bang_filter_command_argument_token4, - STATE(1817), 1, + STATE(1818), 1, aux_sym__bang_filter_command_argument_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5361), 2, + ACTIONS(5438), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5365), 3, + ACTIONS(5442), 3, sym__newline_or_pipe, sym_string_literal, sym_comment, - [72849] = 6, - ACTIONS(3859), 1, + [74594] = 3, + ACTIONS(5483), 1, + anon_sym_text, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5481), 7, + sym__newline_or_pipe, + sym_comment, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [74611] = 6, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3869), 1, + ACTIONS(3935), 1, aux_sym_filename_token3, - STATE(2784), 1, + STATE(2714), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5386), 2, + ACTIONS(5572), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3867), 3, + ACTIONS(3933), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [72872] = 7, - ACTIONS(5239), 1, - anon_sym_name, - ACTIONS(5241), 1, - anon_sym_group, - ACTIONS(5243), 1, - anon_sym_file, - STATE(1661), 1, - aux_sym__sign_place_place_repeat1, - STATE(1803), 1, - sym__sign_place_place_argument, + [74634] = 3, + STATE(1008), 1, + sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5237), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [72897] = 6, - ACTIONS(5665), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5667), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1815), 1, - aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(2545), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [74651] = 7, + ACTIONS(5618), 1, + anon_sym_buffer, + ACTIONS(5620), 1, + anon_sym_group, + ACTIONS(5622), 1, + anon_sym_file, + STATE(1796), 1, + aux_sym__sign_jump_repeat1, + STATE(2002), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5361), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5365), 3, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - [72920] = 6, - ACTIONS(5728), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5730), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1846), 1, - aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5776), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74676] = 7, + ACTIONS(5618), 1, + anon_sym_buffer, + ACTIONS(5620), 1, + anon_sym_group, + ACTIONS(5622), 1, + anon_sym_file, + STATE(1798), 1, + aux_sym__sign_jump_repeat1, + STATE(2002), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5538), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5542), 3, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - [72943] = 5, - ACTIONS(5734), 1, + ACTIONS(5778), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74701] = 5, + ACTIONS(5782), 1, aux_sym_filename_token7, - STATE(1823), 1, + STATE(1816), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3996), 2, + ACTIONS(4101), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5732), 4, + ACTIONS(5780), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [72964] = 6, - ACTIONS(5245), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5247), 1, - anon_sym_BSLASH, - ACTIONS(5253), 1, - sym_string_literal, + [74722] = 7, + ACTIONS(5784), 1, + anon_sym_LT, + ACTIONS(5787), 1, + anon_sym_BSLASH2, + ACTIONS(5792), 1, + aux_sym__map_rhs_token2, + STATE(1862), 1, + aux_sym__map_rhs_repeat1, + STATE(2012), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1779), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - ACTIONS(5736), 3, + ACTIONS(5790), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [72987] = 5, - STATE(18), 1, - sym__cmd_separator, - STATE(1837), 1, - aux_sym_function_definition_repeat1, + [74747] = 7, + ACTIONS(5795), 1, + anon_sym_LBRACE, + ACTIONS(5797), 1, + aux_sym_identifier_token1, + ACTIONS(5799), 1, + sym_integer_literal, + STATE(1971), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5740), 2, + ACTIONS(5540), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5738), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73008] = 5, - STATE(18), 1, - sym__cmd_separator, - STATE(1888), 1, - aux_sym_function_definition_repeat1, + STATE(2761), 2, + sym_identifier, + sym__sign_name, + [74772] = 6, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3935), 1, + aux_sym_filename_token3, + STATE(2805), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5740), 2, + ACTIONS(5522), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5693), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73029] = 6, - ACTIONS(5744), 1, - sym_hl_group, - STATE(1896), 1, - aux_sym__syn_sync_repeat1, - STATE(2105), 1, - sym__syn_sync_lines, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5746), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5742), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73052] = 5, - ACTIONS(5748), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4880), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - STATE(1853), 2, - sym_plus_cmd, - aux_sym_edit_statement_repeat2, - ACTIONS(4885), 3, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token4, - [73073] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5751), 2, - anon_sym_BSLASH, - aux_sym_filename_token3, - ACTIONS(5753), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(3933), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [73090] = 5, - ACTIONS(5758), 1, + [74795] = 5, + ACTIONS(5804), 1, aux_sym_filename_token7, - STATE(1855), 1, + STATE(1865), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4003), 2, + ACTIONS(4078), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5755), 4, + ACTIONS(5801), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [73111] = 5, - ACTIONS(5685), 1, + [74816] = 5, + ACTIONS(5682), 1, aux_sym_filename_token7, - STATE(1855), 1, + STATE(1865), 1, aux_sym_filename_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4038), 2, + ACTIONS(4071), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5683), 4, + ACTIONS(5680), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [73132] = 7, - ACTIONS(791), 1, - anon_sym_LT, - ACTIONS(793), 1, - anon_sym_BSLASH2, - ACTIONS(5763), 1, - aux_sym__map_rhs_token2, - STATE(1809), 1, - aux_sym__map_rhs_repeat1, - STATE(2008), 1, - sym__immediate_keycode, + [74837] = 5, + ACTIONS(5807), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4893), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + STATE(1867), 2, + sym_plus_cmd, + aux_sym_edit_statement_repeat2, + ACTIONS(4898), 3, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token4, + [74858] = 6, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3935), 1, + aux_sym_filename_token3, + STATE(2708), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5479), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3933), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [74881] = 6, + ACTIONS(5810), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5813), 1, + anon_sym_BSLASH, + ACTIONS(5818), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5761), 3, + STATE(1869), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + ACTIONS(5816), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73157] = 7, - ACTIONS(5767), 1, - anon_sym_buffer, - ACTIONS(5770), 1, - anon_sym_group, - ACTIONS(5773), 1, - anon_sym_file, - STATE(1858), 1, - aux_sym__sign_jump_repeat1, - STATE(1994), 1, - sym__sign_jump_argument, + [74904] = 6, + ACTIONS(5261), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5263), 1, + anon_sym_BSLASH, + ACTIONS(5269), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5765), 3, + STATE(1869), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + ACTIONS(5821), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73182] = 3, - STATE(985), 1, - sym__syn_pattern_offset, + [74927] = 7, + ACTIONS(4142), 1, + sym_au_event, + ACTIONS(4144), 1, + aux_sym__autocmd_pattern_token1, + STATE(2109), 1, + sym_au_event_list, + STATE(2561), 1, + sym__autocmd_command, + STATE(2564), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2508), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [73199] = 2, + ACTIONS(5823), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [74952] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5483), 8, + ACTIONS(5489), 8, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym__global, - sym__call, - anon_sym_COLON, - anon_sym_BANG, - [73214] = 9, - ACTIONS(5497), 1, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [74967] = 7, + ACTIONS(5325), 1, + anon_sym_name, + ACTIONS(5327), 1, + anon_sym_group, + ACTIONS(5329), 1, + anon_sym_file, + STATE(1677), 1, + aux_sym__sign_place_place_repeat1, + STATE(1821), 1, + sym__sign_place_place_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5323), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [74992] = 9, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(5538), 1, aux_sym_identifier_token1, - ACTIONS(5776), 1, + ACTIONS(5825), 1, anon_sym_COMMA, - ACTIONS(5778), 1, + ACTIONS(5827), 1, anon_sym_RPAREN, - ACTIONS(5780), 1, + ACTIONS(5829), 1, sym_spread, - STATE(969), 1, + STATE(982), 1, sym__curly_braces_name_expression, - STATE(2284), 1, - sym_default_parameter, - STATE(2881), 1, + STATE(2208), 1, sym_identifier, + STATE(2441), 1, + sym_default_parameter, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [73243] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5430), 8, - sym__newline_or_pipe, - sym_comment, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [73258] = 5, - STATE(24), 1, + [75021] = 5, + STATE(41), 1, sym__cmd_separator, - STATE(1851), 1, + STATE(1937), 1, aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5784), 2, + ACTIONS(5738), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5782), 4, + ACTIONS(5596), 4, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [73279] = 7, - ACTIONS(5788), 1, - anon_sym_buffer, - ACTIONS(5791), 1, - anon_sym_group, - ACTIONS(5794), 1, - anon_sym_file, - STATE(1864), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(1943), 1, - sym__sign_unplace_id_argument, + [75042] = 3, + STATE(1093), 1, + sym__syn_pattern_offset, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5786), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73304] = 3, + ACTIONS(2537), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [75059] = 3, + ACTIONS(4989), 1, + anon_sym_BSLASH2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 2, + ACTIONS(4925), 7, anon_sym_BSLASH, - aux_sym_filename_token3, - ACTIONS(719), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + anon_sym_PLUS, aux_sym_filename_token1, aux_sym_filename_token2, + aux_sym_filename_token3, aux_sym_filename_token4, - [73321] = 3, - ACTIONS(5519), 1, - anon_sym_text, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5517), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [73338] = 6, - ACTIONS(983), 1, - aux_sym__autocmd_pattern_token1, - ACTIONS(5669), 1, - anon_sym_LBRACE2, - ACTIONS(5797), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(1818), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(981), 3, - sym__newline_or_pipe, - sym_comment, - sym_au_event, - [73361] = 7, + aux_sym__plus_cmd_arg_token1, + [75076] = 7, ACTIONS(791), 1, anon_sym_LT, ACTIONS(793), 1, anon_sym_BSLASH2, - ACTIONS(5632), 1, + ACTIONS(5746), 1, aux_sym__map_rhs_token2, - STATE(1812), 1, + STATE(1862), 1, aux_sym__map_rhs_repeat1, - STATE(2008), 1, + STATE(2012), 1, sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5761), 3, + ACTIONS(5831), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73386] = 3, + [75101] = 7, + ACTIONS(5833), 1, + anon_sym_buffer, + ACTIONS(5836), 1, + anon_sym_group, + ACTIONS(5839), 1, + anon_sym_file, + STATE(1879), 1, + aux_sym__sign_place_list, + STATE(2132), 1, + sym__sign_place_list_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 3, - sym_hl_group, - anon_sym_link, - anon_sym_clear, - ACTIONS(719), 4, - sym__default, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73402] = 3, + ACTIONS(5632), 2, + sym__newline_or_pipe, + sym_comment, + [75125] = 7, + ACTIONS(5842), 1, + anon_sym_buffer, + ACTIONS(5844), 1, + anon_sym_group, + ACTIONS(5846), 1, + anon_sym_file, + STATE(1891), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2113), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(719), 4, + ACTIONS(5614), 2, + sym__newline_or_pipe, + sym_comment, + [75149] = 6, + ACTIONS(4319), 1, anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [73418] = 3, - ACTIONS(1327), 1, - aux_sym_identifier_token1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(1321), 6, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73434] = 5, - STATE(1925), 1, - aux_sym__syn_sync_repeat1, - STATE(2105), 1, - sym__syn_sync_lines, + ACTIONS(4323), 1, + aux_sym_filename_token3, + STATE(1744), 1, + aux_sym_runtime_statement_repeat1, + STATE(1883), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5801), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5799), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73454] = 5, - STATE(1904), 1, - aux_sym__syn_sync_repeat1, - STATE(2105), 1, - sym__syn_sync_lines, + ACTIONS(4325), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75171] = 6, + ACTIONS(5461), 1, + aux_sym_command_argument_token1, + ACTIONS(5465), 1, + sym_string_literal, + STATE(1942), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2074), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5801), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5803), 3, + ACTIONS(5848), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73474] = 7, - ACTIONS(4429), 1, - sym_au_event, - ACTIONS(4431), 1, - aux_sym__autocmd_pattern_token1, - STATE(2229), 1, - sym_au_event_list, - STATE(2792), 1, - sym__autocmd_pattern, - STATE(2795), 1, - sym__autocmd_command, + [75193] = 3, + ACTIONS(5665), 1, + aux_sym_filename_token3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5805), 2, + ACTIONS(5667), 6, sym__newline_or_pipe, sym_comment, - [73498] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3632), 2, - anon_sym_BSLASH2, - aux_sym__map_rhs_statement_token1, - ACTIONS(3634), 5, anon_sym_BSLASH, - aux_sym__bang_filter_command_argument_token3, - anon_sym_LT, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [73514] = 6, - ACTIONS(5807), 1, - aux_sym_command_argument_token1, - ACTIONS(5812), 1, - sym_string_literal, - STATE(1876), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75209] = 6, + ACTIONS(4319), 1, + anon_sym_BSLASH, + ACTIONS(4323), 1, + aux_sym_filename_token3, + STATE(1715), 1, + aux_sym_runtime_statement_repeat1, + STATE(1883), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5810), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73536] = 6, - ACTIONS(5466), 1, - aux_sym_command_argument_token1, - ACTIONS(5470), 1, - sym_string_literal, - STATE(1876), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, + ACTIONS(4325), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75231] = 3, + ACTIONS(719), 1, + sym_au_event, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5815), 3, + ACTIONS(721), 6, + anon_sym_LBRACE, + aux_sym_identifier_token1, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73558] = 3, + aux_sym__autocmd_pattern_token1, + [75247] = 6, + ACTIONS(3786), 1, + aux_sym_filename_token3, + ACTIONS(4381), 1, + anon_sym_BSLASH, + ACTIONS(5850), 1, + anon_sym_AT, + STATE(2522), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4982), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4984), 4, - anon_sym_BSLASH, + ACTIONS(3784), 3, aux_sym_filename_token1, + aux_sym_filename_token2, aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [73574] = 5, - STATE(1890), 1, - aux_sym__syn_cluster_repeat1, + [75269] = 7, + ACTIONS(5852), 1, + anon_sym_buffer, + ACTIONS(5854), 1, + anon_sym_group, + ACTIONS(5856), 1, + anon_sym_file, + STATE(1879), 1, + aux_sym__sign_place_list, + STATE(2132), 1, + sym__sign_place_list_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5748), 2, + sym__newline_or_pipe, + sym_comment, + [75293] = 7, + ACTIONS(5842), 1, + anon_sym_buffer, + ACTIONS(5844), 1, + anon_sym_group, + ACTIONS(5846), 1, + anon_sym_file, + STATE(1945), 1, + aux_sym__sign_unplace_id_repeat1, STATE(2113), 1, - sym__syn_arguments_cluster, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5661), 2, + ACTIONS(5684), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5817), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [73594] = 6, - ACTIONS(5397), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5399), 1, - anon_sym_BSLASH, - ACTIONS(5403), 1, - sym_string_literal, + [75317] = 7, + ACTIONS(5842), 1, + anon_sym_buffer, + ACTIONS(5844), 1, + anon_sym_group, + ACTIONS(5846), 1, + anon_sym_file, + STATE(1880), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2113), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5586), 2, + ACTIONS(5762), 2, sym__newline_or_pipe, sym_comment, - STATE(1895), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [73616] = 6, - ACTIONS(5466), 1, - aux_sym_command_argument_token1, - ACTIONS(5470), 1, - sym_string_literal, - STATE(1876), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, + [75341] = 4, + ACTIONS(5858), 1, + anon_sym_BSLASH_AMP, + STATE(1890), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5819), 3, + ACTIONS(3322), 5, + sym__newline_or_pipe, + sym_comment, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [73638] = 6, - ACTIONS(5397), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5399), 1, - anon_sym_BSLASH, - ACTIONS(5403), 1, - sym_string_literal, + anon_sym_minlines, + anon_sym_maxlines, + [75359] = 7, + ACTIONS(5861), 1, + anon_sym_buffer, + ACTIONS(5864), 1, + anon_sym_group, + ACTIONS(5867), 1, + anon_sym_file, + STATE(1891), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2113), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5586), 2, + ACTIONS(5669), 2, sym__newline_or_pipe, sym_comment, - STATE(1898), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [73660] = 3, + [75383] = 6, + ACTIONS(4375), 1, + anon_sym_BSLASH, + ACTIONS(4377), 1, + aux_sym_filename_token3, + STATE(1668), 1, + aux_sym_runtime_statement_repeat1, + STATE(1814), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4929), 3, - anon_sym_PLUS, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(4931), 4, - anon_sym_BSLASH, + ACTIONS(4379), 3, aux_sym_filename_token1, + aux_sym_filename_token2, aux_sym_filename_token4, - anon_sym_PLUS_PLUS, - [73676] = 3, - ACTIONS(1301), 1, - sym_au_event, + [75405] = 7, + ACTIONS(5870), 1, + anon_sym_buffer, + ACTIONS(5872), 1, + anon_sym_group, + ACTIONS(5874), 1, + anon_sym_file, + STATE(1926), 1, + aux_sym__sign_jump_repeat1, + STATE(2084), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 6, - anon_sym_LBRACE2, - aux_sym_identifier_token2, + ACTIONS(5776), 2, + sym__newline_or_pipe, + sym_comment, + [75429] = 4, + ACTIONS(5876), 1, + anon_sym_BSLASH_AMP, + STATE(1920), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4313), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [73692] = 6, - ACTIONS(4326), 1, - anon_sym_BSLASH, - ACTIONS(4328), 1, - aux_sym_filename_token3, - STATE(1725), 1, - aux_sym_runtime_statement_repeat1, - STATE(1901), 1, - sym_filename, + anon_sym_minlines, + anon_sym_maxlines, + [75447] = 7, + ACTIONS(5870), 1, + anon_sym_buffer, + ACTIONS(5872), 1, + anon_sym_group, + ACTIONS(5874), 1, + anon_sym_file, + STATE(1924), 1, + aux_sym__sign_jump_repeat1, + STATE(2084), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4330), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [73714] = 7, - ACTIONS(5821), 1, + ACTIONS(5778), 2, + sym__newline_or_pipe, + sym_comment, + [75471] = 8, + ACTIONS(5750), 1, anon_sym_buffer, - ACTIONS(5823), 1, + ACTIONS(5752), 1, anon_sym_group, - ACTIONS(5825), 1, + ACTIONS(5754), 1, anon_sym_file, - STATE(1927), 1, + ACTIONS(5878), 1, + sym_integer_literal, + STATE(1848), 1, aux_sym__sign_place_list, - STATE(2134), 1, + STATE(1959), 1, sym__sign_place_list_argument, + STATE(2502), 1, + sym__sign_place_place, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5592), 2, - sym__newline_or_pipe, - sym_comment, - [73738] = 7, - ACTIONS(803), 1, - anon_sym_LT, - ACTIONS(805), 1, - anon_sym_BSLASH2, - ACTIONS(807), 1, - aux_sym__map_rhs_token2, - STATE(1928), 1, - aux_sym__map_rhs_repeat1, - STATE(2126), 1, - sym__immediate_keycode, + [75497] = 6, + ACTIONS(5880), 1, + anon_sym_BSLASH, + ACTIONS(5884), 1, + aux_sym_filename_token3, + STATE(1655), 1, + sym_filename, + STATE(2481), 1, + sym__bang_filter_command, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(809), 2, - sym__newline_or_pipe, - sym_comment, - [73762] = 4, - STATE(1888), 1, - aux_sym_function_definition_repeat1, + ACTIONS(5882), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75519] = 4, + ACTIONS(5886), 1, + anon_sym_BSLASH_AMP, + STATE(1890), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5830), 2, + ACTIONS(4313), 5, sym__newline_or_pipe, sym_comment, - ACTIONS(5827), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73780] = 7, - ACTIONS(5832), 1, - anon_sym_buffer, - ACTIONS(5834), 1, - anon_sym_group, - ACTIONS(5836), 1, - anon_sym_file, - STATE(1940), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2096), 1, - sym__sign_unplace_id_argument, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + [75537] = 5, + ACTIONS(5890), 1, + anon_sym_BANG, + ACTIONS(5892), 1, + aux_sym_filename_token3, + STATE(2076), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5600), 2, - sym__newline_or_pipe, - sym_comment, - [73804] = 5, - STATE(1917), 1, + ACTIONS(5888), 4, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75557] = 5, + STATE(1916), 1, aux_sym__syn_cluster_repeat1, - STATE(2113), 1, + STATE(2100), 1, sym__syn_arguments_cluster, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5707), 2, + ACTIONS(5586), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5817), 3, + ACTIONS(5894), 3, anon_sym_contains, anon_sym_add, anon_sym_remove, - [73824] = 7, - ACTIONS(5832), 1, - anon_sym_buffer, - ACTIONS(5834), 1, - anon_sym_group, - ACTIONS(5836), 1, - anon_sym_file, - STATE(1900), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2096), 1, - sym__sign_unplace_id_argument, + [75577] = 6, + ACTIONS(5896), 1, + anon_sym_BSLASH, + ACTIONS(5900), 1, + aux_sym_filename_token3, + STATE(1769), 1, + sym_filename, + STATE(2788), 1, + sym__bang_filter_command, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5697), 2, - sym__newline_or_pipe, - sym_comment, - [73848] = 4, - ACTIONS(5838), 1, - anon_sym_BSLASH_AMP, - STATE(1892), 1, - aux_sym__pattern_branch_repeat1, + ACTIONS(5898), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75599] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 5, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3668), 2, + anon_sym_BSLASH2, + aux_sym__map_rhs_statement_token1, + ACTIONS(3670), 5, + anon_sym_BSLASH, + aux_sym__bang_filter_command_argument_token3, + anon_sym_LT, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [75615] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(721), 3, + sym_hl_group, + anon_sym_link, + anon_sym_clear, + ACTIONS(719), 4, + sym__default, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [75631] = 3, + ACTIONS(1303), 1, + sym_au_event, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1305), 6, + anon_sym_LBRACE2, + aux_sym_identifier_token2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym__autocmd_pattern_token1, + [75647] = 5, + STATE(1910), 1, + aux_sym__syn_sync_repeat1, + STATE(2138), 1, + sym__syn_sync_lines, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5904), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(5902), 3, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [75667] = 5, + STATE(1934), 1, + aux_sym__syn_sync_repeat1, + STATE(2138), 1, + sym__syn_sync_lines, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5904), 2, anon_sym_minlines, anon_sym_maxlines, - [73866] = 3, - ACTIONS(721), 1, - aux_sym_filename_token3, + ACTIONS(5906), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [75687] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5121), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5123), 4, anon_sym_BSLASH, aux_sym_filename_token1, - aux_sym_filename_token2, aux_sym_filename_token4, - [73882] = 5, - STATE(1873), 1, - aux_sym__syn_sync_repeat1, - STATE(2105), 1, - sym__syn_sync_lines, + anon_sym_PLUS_PLUS, + [75703] = 3, + ACTIONS(1349), 1, + aux_sym_identifier_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5801), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5841), 3, + ACTIONS(1343), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73902] = 6, - ACTIONS(5397), 1, + [75719] = 6, + ACTIONS(5908), 1, aux_sym__bang_filter_command_argument_token1, - ACTIONS(5399), 1, + ACTIONS(5911), 1, anon_sym_BSLASH, - ACTIONS(5403), 1, + ACTIONS(5914), 1, sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5736), 2, + ACTIONS(5816), 2, sym__newline_or_pipe, sym_comment, - STATE(1898), 2, + STATE(1909), 2, sym__bang_filter_command_argument, aux_sym__bang_filter_command_repeat1, - [73924] = 5, - STATE(1904), 1, + [75741] = 5, + STATE(1910), 1, aux_sym__syn_sync_repeat1, - STATE(2105), 1, + STATE(2138), 1, sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5801), 2, + ACTIONS(5919), 2, anon_sym_minlines, anon_sym_maxlines, - ACTIONS(5843), 3, + ACTIONS(5917), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [73944] = 8, - ACTIONS(5845), 1, - anon_sym_BSLASH, - ACTIONS(5847), 1, - anon_sym_LT2, - ACTIONS(5849), 1, - aux_sym__map_rhs_statement_token1, - ACTIONS(5851), 1, - aux_sym__map_rhs_token1, - STATE(1799), 1, - sym_keycode, - STATE(2396), 1, - sym__map_rhs, - STATE(2397), 1, - sym__map_rhs_statement, + [75761] = 5, + STATE(1910), 1, + aux_sym__syn_sync_repeat1, + STATE(2138), 1, + sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [73970] = 6, - ACTIONS(5853), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5856), 1, - anon_sym_BSLASH, - ACTIONS(5859), 1, + ACTIONS(5904), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(5922), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [75781] = 6, + ACTIONS(5461), 1, + aux_sym_command_argument_token1, + ACTIONS(5465), 1, sym_string_literal, + STATE(1930), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2074), 1, + sym_command_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5924), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [75803] = 7, + ACTIONS(807), 1, + anon_sym_LT, + ACTIONS(809), 1, + anon_sym_BSLASH2, + ACTIONS(811), 1, + aux_sym__map_rhs_token2, + STATE(1939), 1, + aux_sym__map_rhs_repeat1, + STATE(2141), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5550), 2, + ACTIONS(813), 2, sym__newline_or_pipe, sym_comment, - STATE(1898), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [73992] = 6, - ACTIONS(4326), 1, + [75827] = 6, + ACTIONS(5530), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5532), 1, anon_sym_BSLASH, - ACTIONS(4328), 1, - aux_sym_filename_token3, - STATE(1708), 1, - aux_sym_runtime_statement_repeat1, - STATE(1901), 1, - sym_filename, + ACTIONS(5536), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4330), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74014] = 7, - ACTIONS(5832), 1, - anon_sym_buffer, - ACTIONS(5834), 1, - anon_sym_group, - ACTIONS(5836), 1, - anon_sym_file, - STATE(1915), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2096), 1, - sym__sign_unplace_id_argument, + ACTIONS(5821), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1909), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [75849] = 5, + ACTIONS(3757), 1, + sym_hl_group, + STATE(2119), 1, + sym_hl_groups, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5590), 2, + ACTIONS(5710), 2, sym__newline_or_pipe, sym_comment, - [74038] = 3, - ACTIONS(5751), 1, - aux_sym_filename_token3, + ACTIONS(5712), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [75869] = 5, + STATE(1916), 1, + aux_sym__syn_cluster_repeat1, + STATE(2100), 1, + sym__syn_arguments_cluster, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5753), 6, + ACTIONS(5705), 2, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74054] = 6, - ACTIONS(3786), 1, - aux_sym_filename_token3, - ACTIONS(4256), 1, - anon_sym_BSLASH, - ACTIONS(5862), 1, - anon_sym_AT, - STATE(2378), 1, - sym_filename, + ACTIONS(5926), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [75889] = 5, + STATE(1900), 1, + aux_sym__syn_cluster_repeat1, + STATE(2100), 1, + sym__syn_arguments_cluster, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74076] = 3, - ACTIONS(1317), 1, + ACTIONS(5659), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5894), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [75909] = 3, + ACTIONS(1311), 1, sym_au_event, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 6, + ACTIONS(1313), 6, anon_sym_LBRACE2, aux_sym_identifier_token2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, aux_sym__autocmd_pattern_token1, - [74092] = 5, - STATE(1904), 1, - aux_sym__syn_sync_repeat1, - STATE(2105), 1, - sym__syn_sync_lines, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5866), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5864), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [74112] = 3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3407), 2, - anon_sym_BSLASH2, - aux_sym__map_rhs_statement_token1, - ACTIONS(3412), 5, - anon_sym_BSLASH, - aux_sym__bang_filter_command_argument_token3, - anon_sym_LT, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [74128] = 7, - ACTIONS(5869), 1, - anon_sym_buffer, - ACTIONS(5872), 1, - anon_sym_group, - ACTIONS(5875), 1, - anon_sym_file, - STATE(1906), 1, - aux_sym__sign_jump_repeat1, - STATE(2106), 1, - sym__sign_jump_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5765), 2, - sym__newline_or_pipe, - sym_comment, - [74152] = 8, - ACTIONS(5878), 1, + [75925] = 8, + ACTIONS(5929), 1, anon_sym_BSLASH, - ACTIONS(5880), 1, + ACTIONS(5931), 1, anon_sym_LT2, - ACTIONS(5882), 1, + ACTIONS(5933), 1, aux_sym__map_rhs_statement_token1, - ACTIONS(5884), 1, + ACTIONS(5935), 1, aux_sym__map_rhs_token1, - STATE(1887), 1, + STATE(1851), 1, sym_keycode, - STATE(2758), 1, - sym__map_rhs_statement, - STATE(2812), 1, + STATE(2552), 1, sym__map_rhs, + STATE(2553), 1, + sym__map_rhs_statement, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [74178] = 3, - ACTIONS(719), 1, - sym_au_event, + [75951] = 4, + ACTIONS(5937), 1, + anon_sym_BSLASH_AMP, + STATE(1920), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 6, - anon_sym_LBRACE, - aux_sym_identifier_token1, + ACTIONS(3322), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [74194] = 8, - ACTIONS(5594), 1, - anon_sym_buffer, - ACTIONS(5596), 1, - anon_sym_group, - ACTIONS(5598), 1, - anon_sym_file, - ACTIONS(5886), 1, - sym_integer_literal, - STATE(1791), 1, - aux_sym__sign_place_list, - STATE(1995), 1, - sym__sign_place_list_argument, - STATE(2363), 1, - sym__sign_place_place, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [74220] = 6, - ACTIONS(5466), 1, + anon_sym_minlines, + anon_sym_maxlines, + [75969] = 6, + ACTIONS(5461), 1, aux_sym_command_argument_token1, - ACTIONS(5470), 1, + ACTIONS(5465), 1, sym_string_literal, - STATE(1877), 1, + STATE(1930), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, + STATE(2074), 1, sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5888), 3, + ACTIONS(5940), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [74242] = 6, - ACTIONS(5890), 1, - anon_sym_BSLASH, - ACTIONS(5894), 1, - aux_sym_filename_token3, - STATE(1664), 1, - sym_filename, - STATE(2328), 1, - sym__bang_filter_command, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5892), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74264] = 8, - ACTIONS(5821), 1, + [75991] = 8, + ACTIONS(5852), 1, anon_sym_buffer, - ACTIONS(5823), 1, + ACTIONS(5854), 1, anon_sym_group, - ACTIONS(5825), 1, + ACTIONS(5856), 1, anon_sym_file, - ACTIONS(5896), 1, + ACTIONS(5942), 1, sym_integer_literal, - STATE(1886), 1, + STATE(1887), 1, aux_sym__sign_place_list, - STATE(2134), 1, + STATE(2132), 1, sym__sign_place_list_argument, - STATE(2764), 1, + STATE(2678), 1, sym__sign_place_place, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [74290] = 6, - ACTIONS(5466), 1, - aux_sym_command_argument_token1, - ACTIONS(5470), 1, - sym_string_literal, - STATE(1876), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5898), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [74312] = 6, - ACTIONS(5466), 1, + [76017] = 6, + ACTIONS(5461), 1, aux_sym_command_argument_token1, - ACTIONS(5470), 1, + ACTIONS(5465), 1, sym_string_literal, - STATE(1881), 1, + STATE(1948), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, + STATE(2074), 1, sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5900), 3, + ACTIONS(5944), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [74334] = 7, - ACTIONS(5902), 1, + [76039] = 7, + ACTIONS(5870), 1, anon_sym_buffer, - ACTIONS(5905), 1, + ACTIONS(5872), 1, anon_sym_group, - ACTIONS(5908), 1, + ACTIONS(5874), 1, anon_sym_file, - STATE(1915), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2096), 1, - sym__sign_unplace_id_argument, + STATE(1947), 1, + aux_sym__sign_jump_repeat1, + STATE(2084), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5786), 2, + ACTIONS(5628), 2, sym__newline_or_pipe, sym_comment, - [74358] = 6, - ACTIONS(5466), 1, - aux_sym_command_argument_token1, - ACTIONS(5470), 1, - sym_string_literal, - STATE(1876), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2078), 1, - sym_command_argument, + [76063] = 6, + ACTIONS(4375), 1, + anon_sym_BSLASH, + ACTIONS(4377), 1, + aux_sym_filename_token3, + STATE(1660), 1, + aux_sym_runtime_statement_repeat1, + STATE(1814), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5911), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [74380] = 5, - STATE(1917), 1, - aux_sym__syn_cluster_repeat1, - STATE(2113), 1, - sym__syn_arguments_cluster, + ACTIONS(4379), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [76085] = 7, + ACTIONS(5870), 1, + anon_sym_buffer, + ACTIONS(5872), 1, + anon_sym_group, + ACTIONS(5874), 1, + anon_sym_file, + STATE(1947), 1, + aux_sym__sign_jump_repeat1, + STATE(2084), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5709), 2, + ACTIONS(5616), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5913), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [74400] = 7, - ACTIONS(4429), 1, + [76109] = 7, + ACTIONS(4247), 1, sym_au_event, - ACTIONS(4431), 1, + ACTIONS(4249), 1, aux_sym__autocmd_pattern_token1, - STATE(2142), 1, + STATE(2247), 1, sym_au_event_list, - STATE(2634), 1, + STATE(2672), 1, sym__autocmd_command, - STATE(2640), 1, + STATE(2687), 1, sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5916), 2, + ACTIONS(5946), 2, sym__newline_or_pipe, sym_comment, - [74424] = 5, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(5922), 1, - aux_sym_filename_token3, - STATE(2073), 1, - sym_bang, + [76133] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5918), 4, + ACTIONS(5062), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5064), 4, anon_sym_BSLASH, aux_sym_filename_token1, - aux_sym_filename_token2, aux_sym_filename_token4, - [74444] = 6, - ACTIONS(5924), 1, - anon_sym_BSLASH, - ACTIONS(5928), 1, - aux_sym_filename_token3, - STATE(1717), 1, - sym_filename, - STATE(2671), 1, - sym__bang_filter_command, + anon_sym_PLUS_PLUS, + [76149] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5926), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74466] = 6, - ACTIONS(4272), 1, + ACTIONS(3481), 2, + anon_sym_BSLASH2, + aux_sym__map_rhs_statement_token1, + ACTIONS(3486), 5, anon_sym_BSLASH, - ACTIONS(4276), 1, - aux_sym_filename_token3, - STATE(1652), 1, - aux_sym_runtime_statement_repeat1, - STATE(1854), 1, - sym_filename, + aux_sym__bang_filter_command_argument_token3, + anon_sym_LT, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [76165] = 6, + ACTIONS(5948), 1, + aux_sym_command_argument_token1, + ACTIONS(5953), 1, + sym_string_literal, + STATE(1930), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2074), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4278), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74488] = 7, - ACTIONS(5930), 1, - anon_sym_buffer, - ACTIONS(5932), 1, - anon_sym_group, - ACTIONS(5934), 1, - anon_sym_file, - STATE(1931), 1, - aux_sym__sign_jump_repeat1, - STATE(2106), 1, - sym__sign_jump_argument, + ACTIONS(5951), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [76187] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5620), 2, - sym__newline_or_pipe, - sym_comment, - [74512] = 7, - ACTIONS(5936), 1, - anon_sym_LT, - ACTIONS(5939), 1, - anon_sym_BSLASH2, - ACTIONS(5942), 1, - aux_sym__map_rhs_token2, - STATE(1923), 1, - aux_sym__map_rhs_repeat1, - STATE(2126), 1, - sym__immediate_keycode, + ACTIONS(721), 3, + anon_sym_PLUS, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(719), 4, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token4, + anon_sym_PLUS_PLUS, + [76203] = 6, + ACTIONS(5530), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5532), 1, + anon_sym_BSLASH, + ACTIONS(5536), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5945), 2, + ACTIONS(5740), 2, sym__newline_or_pipe, sym_comment, - [74536] = 7, - ACTIONS(5930), 1, - anon_sym_buffer, - ACTIONS(5932), 1, - anon_sym_group, - ACTIONS(5934), 1, - anon_sym_file, - STATE(1929), 1, - aux_sym__sign_jump_repeat1, - STATE(2106), 1, - sym__sign_jump_argument, + STATE(1914), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [76225] = 6, + ACTIONS(5530), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5532), 1, + anon_sym_BSLASH, + ACTIONS(5536), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5634), 2, + ACTIONS(5740), 2, sym__newline_or_pipe, sym_comment, - [74560] = 5, - STATE(1904), 1, + STATE(1909), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [76247] = 5, + STATE(1910), 1, aux_sym__syn_sync_repeat1, - STATE(2105), 1, + STATE(2138), 1, sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5801), 2, + ACTIONS(5904), 2, anon_sym_minlines, anon_sym_maxlines, - ACTIONS(5947), 3, + ACTIONS(5956), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [74580] = 4, - ACTIONS(5949), 1, - anon_sym_BSLASH_AMP, - STATE(1926), 1, - aux_sym__pattern_branch_repeat1, + [76267] = 3, + ACTIONS(721), 1, + aux_sym_filename_token3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(719), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [76283] = 6, + ACTIONS(3925), 1, + anon_sym_BSLASH, + ACTIONS(3935), 1, + aux_sym_filename_token3, + ACTIONS(5958), 1, + anon_sym_AT, + STATE(2861), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3933), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [76305] = 4, + STATE(1937), 1, + aux_sym_function_definition_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [74598] = 7, - ACTIONS(5952), 1, - anon_sym_buffer, - ACTIONS(5955), 1, - anon_sym_group, - ACTIONS(5958), 1, - anon_sym_file, - STATE(1927), 1, - aux_sym__sign_place_list, - STATE(2134), 1, - sym__sign_place_list_argument, + ACTIONS(5963), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5960), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [76323] = 7, + ACTIONS(4247), 1, + sym_au_event, + ACTIONS(4249), 1, + aux_sym__autocmd_pattern_token1, + STATE(2277), 1, + sym_au_event_list, + STATE(2838), 1, + sym__autocmd_command, + STATE(2845), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5567), 2, + ACTIONS(5965), 2, sym__newline_or_pipe, sym_comment, - [74622] = 7, - ACTIONS(803), 1, + [76347] = 7, + ACTIONS(807), 1, anon_sym_LT, - ACTIONS(805), 1, + ACTIONS(809), 1, anon_sym_BSLASH2, - ACTIONS(5961), 1, + ACTIONS(5967), 1, aux_sym__map_rhs_token2, - STATE(1923), 1, + STATE(1941), 1, aux_sym__map_rhs_repeat1, - STATE(2126), 1, + STATE(2141), 1, sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5963), 2, + ACTIONS(5969), 2, sym__newline_or_pipe, sym_comment, - [74646] = 7, - ACTIONS(5930), 1, - anon_sym_buffer, - ACTIONS(5932), 1, - anon_sym_group, - ACTIONS(5934), 1, - anon_sym_file, - STATE(1906), 1, - aux_sym__sign_jump_repeat1, - STATE(2106), 1, - sym__sign_jump_argument, + [76371] = 5, + STATE(1905), 1, + aux_sym__syn_sync_repeat1, + STATE(2138), 1, + sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5578), 2, - sym__newline_or_pipe, - sym_comment, - [74670] = 7, - ACTIONS(803), 1, + ACTIONS(5904), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(5971), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [76391] = 7, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(805), 1, + ACTIONS(5976), 1, anon_sym_BSLASH2, - ACTIONS(5961), 1, + ACTIONS(5979), 1, aux_sym__map_rhs_token2, - STATE(1923), 1, + STATE(1941), 1, aux_sym__map_rhs_repeat1, - STATE(2126), 1, + STATE(2141), 1, sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5965), 2, + ACTIONS(5982), 2, sym__newline_or_pipe, sym_comment, - [74694] = 7, - ACTIONS(5930), 1, - anon_sym_buffer, - ACTIONS(5932), 1, - anon_sym_group, - ACTIONS(5934), 1, - anon_sym_file, - STATE(1906), 1, - aux_sym__sign_jump_repeat1, - STATE(2106), 1, - sym__sign_jump_argument, + [76415] = 6, + ACTIONS(5461), 1, + aux_sym_command_argument_token1, + ACTIONS(5465), 1, + sym_string_literal, + STATE(1930), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2074), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5588), 2, - sym__newline_or_pipe, - sym_comment, - [74718] = 7, - ACTIONS(803), 1, + ACTIONS(5984), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [76437] = 7, + ACTIONS(807), 1, anon_sym_LT, - ACTIONS(805), 1, + ACTIONS(809), 1, anon_sym_BSLASH2, - ACTIONS(5967), 1, + ACTIONS(5986), 1, aux_sym__map_rhs_token2, - STATE(1930), 1, + STATE(1950), 1, aux_sym__map_rhs_repeat1, - STATE(2126), 1, + STATE(2141), 1, sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5963), 2, + ACTIONS(5969), 2, sym__newline_or_pipe, sym_comment, - [74742] = 3, + [76461] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3663), 2, + ACTIONS(3676), 2, anon_sym_BSLASH2, aux_sym__map_rhs_statement_token1, - ACTIONS(3665), 5, + ACTIONS(3678), 5, anon_sym_BSLASH, aux_sym__bang_filter_command_argument_token3, anon_sym_LT, anon_sym_LT2, aux_sym__map_rhs_token1, - [74758] = 5, - ACTIONS(3687), 1, - sym_hl_group, - STATE(2050), 1, - sym_hl_groups, + [76477] = 7, + ACTIONS(5842), 1, + anon_sym_buffer, + ACTIONS(5844), 1, + anon_sym_group, + ACTIONS(5846), 1, + anon_sym_file, + STATE(1891), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2113), 1, + sym__sign_unplace_id_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5701), 2, + ACTIONS(5600), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5703), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [74778] = 3, + [76501] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3636), 2, + ACTIONS(3664), 2, anon_sym_BSLASH2, aux_sym__map_rhs_statement_token1, - ACTIONS(3638), 5, + ACTIONS(3666), 5, anon_sym_BSLASH, aux_sym__bang_filter_command_argument_token3, anon_sym_LT, anon_sym_LT2, aux_sym__map_rhs_token1, - [74794] = 4, - ACTIONS(5969), 1, - anon_sym_BSLASH_AMP, - STATE(1892), 1, - aux_sym__pattern_branch_repeat1, + [76517] = 7, + ACTIONS(5988), 1, + anon_sym_buffer, + ACTIONS(5991), 1, + anon_sym_group, + ACTIONS(5994), 1, + anon_sym_file, + STATE(1947), 1, + aux_sym__sign_jump_repeat1, + STATE(2084), 1, + sym__sign_jump_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 5, + ACTIONS(5690), 2, sym__newline_or_pipe, sym_comment, + [76541] = 6, + ACTIONS(5461), 1, + aux_sym_command_argument_token1, + ACTIONS(5465), 1, + sym_string_literal, + STATE(1930), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2074), 1, + sym_command_argument, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5997), 3, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [74812] = 6, - ACTIONS(4272), 1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [76563] = 8, + ACTIONS(5999), 1, anon_sym_BSLASH, - ACTIONS(4276), 1, - aux_sym_filename_token3, - STATE(1630), 1, - aux_sym_runtime_statement_repeat1, - STATE(1854), 1, - sym_filename, + ACTIONS(6001), 1, + anon_sym_LT2, + ACTIONS(6003), 1, + aux_sym__map_rhs_statement_token1, + ACTIONS(6005), 1, + aux_sym__map_rhs_token1, + STATE(1913), 1, + sym_keycode, + STATE(2752), 1, + sym__map_rhs, + STATE(2771), 1, + sym__map_rhs_statement, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4278), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74834] = 6, - ACTIONS(3859), 1, - anon_sym_BSLASH, - ACTIONS(3869), 1, - aux_sym_filename_token3, - ACTIONS(5971), 1, - anon_sym_AT, - STATE(2831), 1, - sym_filename, + [76589] = 7, + ACTIONS(807), 1, + anon_sym_LT, + ACTIONS(809), 1, + anon_sym_BSLASH2, + ACTIONS(5967), 1, + aux_sym__map_rhs_token2, + STATE(1941), 1, + aux_sym__map_rhs_repeat1, + STATE(2141), 1, + sym__immediate_keycode, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74856] = 6, - ACTIONS(5973), 1, + ACTIONS(6007), 2, + sym__newline_or_pipe, + sym_comment, + [76613] = 6, + ACTIONS(6009), 1, sym_hl_group, - STATE(2020), 1, + STATE(1993), 1, aux_sym__syn_sync_repeat1, - STATE(2219), 1, + STATE(2270), 1, sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5742), 2, + ACTIONS(5590), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5975), 2, + ACTIONS(6011), 2, anon_sym_minlines, anon_sym_maxlines, - [74878] = 7, - ACTIONS(5832), 1, - anon_sym_buffer, - ACTIONS(5834), 1, - anon_sym_group, - ACTIONS(5836), 1, - anon_sym_file, - STATE(1915), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2096), 1, - sym__sign_unplace_id_argument, + [76635] = 5, + STATE(2039), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5559), 2, + ACTIONS(5584), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6013), 2, sym__newline_or_pipe, sym_comment, - [74902] = 4, - ACTIONS(5977), 1, - anon_sym_BSLASH_AMP, - STATE(1926), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4234), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [74920] = 5, - ACTIONS(3786), 1, - aux_sym_filename_token3, - ACTIONS(4256), 1, - anon_sym_BSLASH, - STATE(2526), 1, - sym_filename, + [76654] = 6, + ACTIONS(6015), 1, + anon_sym_LBRACE, + ACTIONS(6017), 1, + aux_sym_identifier_token1, + ACTIONS(6019), 1, + sym_integer_literal, + STATE(1478), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3784), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74939] = 2, + STATE(1850), 2, + sym_identifier, + sym__sign_name, + [76675] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5979), 6, + ACTIONS(721), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(719), 4, + sym_string_literal, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [74952] = 4, - ACTIONS(5981), 1, - anon_sym_BSLASH_PIPE, - STATE(2006), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4502), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [74969] = 4, - ACTIONS(5983), 1, - anon_sym_BSLASH_PIPE, - STATE(1945), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4447), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [74986] = 5, - ACTIONS(5986), 1, - anon_sym_BSLASH, - ACTIONS(5990), 1, + [76690] = 3, + ACTIONS(721), 1, aux_sym_filename_token3, - STATE(1949), 1, - sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5988), 3, + ACTIONS(719), 5, + anon_sym_BSLASH, + anon_sym_BANG, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [75005] = 5, - STATE(2040), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + [76705] = 6, + ACTIONS(6021), 1, + anon_sym_LBRACE2, + ACTIONS(6023), 1, + aux_sym__immediate_identifier_token1, + STATE(403), 1, + sym__method_call_expression, + STATE(2107), 1, + sym__immediate_curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5614), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(5992), 2, - sym__newline_or_pipe, - sym_comment, - [75024] = 3, + STATE(3164), 2, + sym__immediate_identifier, + sym__immediate_lambda_expression, + [76726] = 5, + ACTIONS(6025), 1, + anon_sym_LBRACE2, + ACTIONS(6027), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 3, + ACTIONS(911), 2, sym__newline_or_pipe, sym_comment, - sym_au_event, - ACTIONS(721), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym__autocmd_pattern_token1, - [75039] = 2, + STATE(2003), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [76745] = 6, + ACTIONS(6021), 1, + anon_sym_LBRACE2, + ACTIONS(6023), 1, + aux_sym__immediate_identifier_token1, + STATE(494), 1, + sym__method_call_expression, + STATE(2107), 1, + sym__immediate_curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5994), 6, + STATE(3128), 2, + sym__immediate_identifier, + sym__immediate_lambda_expression, + [76766] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6029), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_buffer, anon_sym_group, anon_sym_file, - [75052] = 6, - ACTIONS(161), 1, - sym__catch, - ACTIONS(163), 1, - sym__finally, - ACTIONS(5996), 1, - sym__endtry, - STATE(3140), 1, - sym_finally_statement, + [76779] = 7, + ACTIONS(5795), 1, + anon_sym_LBRACE, + ACTIONS(5797), 1, + aux_sym_identifier_token1, + ACTIONS(6031), 1, + anon_sym_BANG, + STATE(1971), 1, + sym__curly_braces_name_expression, + STATE(2171), 1, + sym_bang, + STATE(2773), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [75073] = 6, - ACTIONS(171), 1, - sym__elseif, - ACTIONS(173), 1, - sym__else, - ACTIONS(5998), 1, - sym__endif, - STATE(3142), 1, - sym_else_statement, + [76802] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2080), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [75094] = 6, - ACTIONS(6000), 1, - anon_sym_LBRACE, - ACTIONS(6002), 1, - aux_sym_identifier_token1, - ACTIONS(6004), 1, - sym_integer_literal, - STATE(1328), 1, - sym__curly_braces_name_expression, + ACTIONS(6033), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [76821] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1748), 2, + ACTIONS(5438), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5442), 4, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [76836] = 7, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(6031), 1, + anon_sym_BANG, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2257), 1, + sym_bang, + STATE(2515), 1, sym_identifier, - sym__sign_name, - [75115] = 5, - STATE(2041), 1, - aux_sym__syn_sync_repeat1, - STATE(2219), 1, - sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5799), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6006), 2, - anon_sym_minlines, - anon_sym_maxlines, - [75134] = 5, - STATE(1947), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + [76859] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5614), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6008), 2, + ACTIONS(6035), 6, sym__newline_or_pipe, sym_comment, - [75153] = 5, - STATE(2040), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [76872] = 6, + ACTIONS(6037), 1, + anon_sym_LBRACE, + ACTIONS(6039), 1, + aux_sym_identifier_token1, + ACTIONS(6041), 1, + sym_integer_literal, + STATE(1491), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5614), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6010), 2, - sym__newline_or_pipe, - sym_comment, - [75172] = 5, - STATE(1956), 1, - aux_sym__syn_sync_repeat1, - STATE(2219), 1, - sym__syn_sync_lines, + STATE(1706), 2, + sym_identifier, + sym__sign_name, + [76893] = 4, + ACTIONS(6043), 1, + anon_sym_BSLASH_PIPE, + STATE(2007), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5864), 2, + ACTIONS(4481), 4, sym__newline_or_pipe, sym_comment, - ACTIONS(6012), 2, anon_sym_minlines, anon_sym_maxlines, - [75191] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5648), 6, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym__map_rhs_token2, - [75204] = 4, - ACTIONS(6015), 1, + [76910] = 4, + ACTIONS(6045), 1, anon_sym_COMMA, - STATE(2032), 1, + STATE(1967), 1, aux_sym_au_event_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6017), 4, + ACTIONS(6048), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, aux_sym__autocmd_pattern_token1, - [75221] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + [76927] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6019), 3, + ACTIONS(3666), 6, + anon_sym_LT, + anon_sym_BSLASH2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [75240] = 3, - STATE(2039), 1, - aux_sym_pattern_repeat1, + aux_sym__map_rhs_token2, + [76940] = 5, + STATE(1972), 1, + aux_sym__syn_sync_repeat1, + STATE(2270), 1, + sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, + ACTIONS(5956), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6050), 2, anon_sym_minlines, anon_sym_maxlines, - [75255] = 2, + [76959] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3634), 6, - anon_sym_LT, - anon_sym_BSLASH2, + ACTIONS(6052), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym__map_rhs_token2, - [75268] = 3, + [76978] = 5, + ACTIONS(6025), 1, + anon_sym_LBRACE2, + ACTIONS(6054), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 3, + ACTIONS(983), 2, sym__newline_or_pipe, sym_comment, - sym__default, - ACTIONS(721), 3, - sym_hl_group, - anon_sym_link, - anon_sym_clear, - [75283] = 6, - ACTIONS(161), 1, - sym__catch, - ACTIONS(163), 1, - sym__finally, - ACTIONS(6021), 1, - sym__endtry, - STATE(2906), 1, - sym_finally_statement, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [75304] = 5, - STATE(1956), 1, + STATE(1957), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [76997] = 5, + STATE(1972), 1, aux_sym__syn_sync_repeat1, - STATE(2219), 1, + STATE(2270), 1, sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5803), 2, + ACTIONS(5917), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(6006), 2, + ACTIONS(6056), 2, anon_sym_minlines, anon_sym_maxlines, - [75323] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + [77016] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6023), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [75342] = 3, + ACTIONS(5253), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5255), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token4, + [77031] = 5, + STATE(1984), 1, + aux_sym__syn_sync_repeat1, + STATE(2270), 1, + sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1317), 3, + ACTIONS(5971), 2, sym__newline_or_pipe, sym_comment, - sym_au_event, - ACTIONS(1319), 3, - anon_sym_LBRACE2, - aux_sym_identifier_token2, - aux_sym__autocmd_pattern_token1, - [75357] = 6, - ACTIONS(171), 1, - sym__elseif, - ACTIONS(173), 1, - sym__else, - ACTIONS(6025), 1, - sym__endif, - STATE(3064), 1, - sym_else_statement, + ACTIONS(6050), 2, + anon_sym_minlines, + anon_sym_maxlines, + [77050] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2080), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [75378] = 6, - ACTIONS(161), 1, - sym__catch, - ACTIONS(163), 1, - sym__finally, - ACTIONS(6027), 1, - sym__endtry, - STATE(3164), 1, - sym_finally_statement, + ACTIONS(6059), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [77063] = 4, + ACTIONS(6061), 1, + anon_sym_BSLASH_PIPE, + STATE(1976), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [75399] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + ACTIONS(4535), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_minlines, + anon_sym_maxlines, + [77080] = 6, + ACTIONS(6021), 1, + anon_sym_LBRACE2, + ACTIONS(6023), 1, + aux_sym__immediate_identifier_token1, + STATE(601), 1, + sym__method_call_expression, + STATE(2107), 1, + sym__immediate_curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6029), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [75418] = 5, - ACTIONS(6033), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + STATE(3046), 2, + sym__immediate_identifier, + sym__immediate_lambda_expression, + [77101] = 3, + STATE(2044), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6031), 3, + ACTIONS(4473), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [75437] = 5, - STATE(2042), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + anon_sym_minlines, + anon_sym_maxlines, + [77116] = 5, + ACTIONS(6064), 1, + anon_sym_BSLASH, + ACTIONS(6068), 1, + aux_sym_filename_token3, + STATE(2059), 1, + sym_filename, ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5614), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6036), 2, - sym__newline_or_pipe, - sym_comment, - [75456] = 5, - STATE(2040), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6066), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [77135] = 5, + ACTIONS(6070), 1, + anon_sym_BSLASH, + ACTIONS(6074), 1, + aux_sym_filename_token3, + STATE(2063), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5614), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6038), 2, - sym__newline_or_pipe, - sym_comment, - [75475] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + ACTIONS(6072), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [77154] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6040), 3, + ACTIONS(4535), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [75494] = 2, + anon_sym_BSLASH_RPAREN, + anon_sym_minlines, + anon_sym_maxlines, + [77167] = 7, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(5760), 1, + sym_spread, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2681), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6042), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [75507] = 6, - ACTIONS(6044), 1, - anon_sym_LBRACE2, - ACTIONS(6046), 1, - aux_sym__immediate_identifier_token1, - STATE(809), 1, - sym__method_call_expression, - STATE(2114), 1, - sym__immediate_curly_braces_name_expression, + [77190] = 5, + ACTIONS(6076), 1, + anon_sym_BSLASH, + ACTIONS(6080), 1, + aux_sym_filename_token3, + STATE(1755), 1, + sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(3075), 2, - sym__immediate_identifier, - sym__immediate_lambda_expression, - [75528] = 6, - ACTIONS(6048), 1, + ACTIONS(6078), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [77209] = 5, + STATE(1972), 1, + aux_sym__syn_sync_repeat1, + STATE(2270), 1, + sym__syn_sync_lines, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5902), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6050), 2, + anon_sym_minlines, + anon_sym_maxlines, + [77228] = 6, + ACTIONS(5795), 1, anon_sym_LBRACE, - ACTIONS(6050), 1, + ACTIONS(5797), 1, aux_sym_identifier_token1, - ACTIONS(6052), 1, + ACTIONS(6082), 1, sym_integer_literal, - STATE(1511), 1, + STATE(1971), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1808), 2, + STATE(2762), 2, sym_identifier, sym__sign_name, - [75549] = 5, - ACTIONS(6054), 1, + [77249] = 5, + ACTIONS(6070), 1, anon_sym_BSLASH, - ACTIONS(6058), 1, + ACTIONS(6074), 1, aux_sym_filename_token3, - STATE(1748), 1, + STATE(2065), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6056), 3, + ACTIONS(6072), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [75568] = 5, - ACTIONS(5986), 1, + [77268] = 6, + ACTIONS(161), 1, + sym__elseif, + ACTIONS(163), 1, + sym__else, + ACTIONS(6084), 1, + sym__endif, + STATE(3083), 1, + sym_else_statement, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2093), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [77289] = 5, + STATE(1969), 1, + aux_sym__syn_sync_repeat1, + STATE(2270), 1, + sym__syn_sync_lines, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(5906), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6050), 2, + anon_sym_minlines, + anon_sym_maxlines, + [77308] = 5, + ACTIONS(6070), 1, anon_sym_BSLASH, - ACTIONS(5990), 1, + ACTIONS(6074), 1, aux_sym_filename_token3, - STATE(1992), 1, + STATE(2060), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5988), 3, + ACTIONS(6072), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [75587] = 3, - ACTIONS(1327), 1, + [77327] = 3, + ACTIONS(1349), 1, aux_sym_identifier_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1321), 5, + ACTIONS(1343), 5, sym__newline_or_pipe, sym__scope_dict, sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - [75602] = 5, - ACTIONS(5986), 1, + [77342] = 5, + ACTIONS(6064), 1, anon_sym_BSLASH, - ACTIONS(5990), 1, + ACTIONS(6068), 1, aux_sym_filename_token3, - STATE(1997), 1, + STATE(2013), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5988), 3, + ACTIONS(6066), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [75621] = 3, + [77361] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1301), 3, + ACTIONS(1311), 3, sym__newline_or_pipe, sym_comment, sym_au_event, - ACTIONS(1303), 3, + ACTIONS(1313), 3, anon_sym_LBRACE2, aux_sym_identifier_token2, aux_sym__autocmd_pattern_token1, - [75636] = 5, - ACTIONS(6060), 1, - anon_sym_BSLASH, - ACTIONS(6064), 1, - aux_sym_filename_token3, - STATE(1808), 1, - sym_filename, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6062), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [75655] = 7, - ACTIONS(5714), 1, - anon_sym_LBRACE, - ACTIONS(5716), 1, - aux_sym_identifier_token1, - ACTIONS(6066), 1, - anon_sym_BANG, - STATE(1990), 1, - sym__curly_braces_name_expression, - STATE(2146), 1, - sym_bang, - STATE(2753), 1, - sym_identifier, + [77376] = 5, + STATE(1972), 1, + aux_sym__syn_sync_repeat1, + STATE(2270), 1, + sym__syn_sync_lines, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [75678] = 3, + ACTIONS(5922), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6050), 2, + anon_sym_minlines, + anon_sym_maxlines, + [77395] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5538), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5542), 4, - sym_string_literal, + ACTIONS(6086), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [75693] = 6, - ACTIONS(5497), 1, + [77414] = 6, + ACTIONS(6088), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(6090), 1, aux_sym_identifier_token1, - ACTIONS(6068), 1, + ACTIONS(6092), 1, sym_integer_literal, - STATE(969), 1, + STATE(1348), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2366), 2, + STATE(1571), 2, sym_identifier, sym__sign_name, - [75714] = 6, - ACTIONS(6070), 1, + [77435] = 6, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(5538), 1, aux_sym_identifier_token1, - ACTIONS(6074), 1, + ACTIONS(6094), 1, sym_integer_literal, - STATE(1341), 1, + STATE(982), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1584), 2, + STATE(2509), 2, sym_identifier, sym__sign_name, - [75735] = 7, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(6076), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2670), 1, - sym_default_parameter, - STATE(2881), 1, - sym_identifier, + [77456] = 6, + ACTIONS(169), 1, + sym__catch, + ACTIONS(171), 1, + sym__finally, + ACTIONS(6096), 1, + sym__endtry, + STATE(2907), 1, + sym_finally_statement, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [75758] = 6, - ACTIONS(171), 1, + STATE(2122), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [77477] = 5, + STATE(17), 1, + sym__cmd_separator, + STATE(2517), 1, + sym__au_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6098), 2, + aux_sym__au_pattern_token1, + aux_sym__au_pattern_token2, + ACTIONS(6100), 2, + sym__newline_or_pipe, + sym_comment, + [77496] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6102), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [77515] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6104), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [77534] = 6, + ACTIONS(161), 1, sym__elseif, - ACTIONS(173), 1, + ACTIONS(163), 1, sym__else, - ACTIONS(6078), 1, + ACTIONS(6106), 1, sym__endif, - STATE(2905), 1, + STATE(2871), 1, sym_else_statement, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2080), 2, + STATE(2093), 2, sym_elseif_statement, aux_sym_if_statement_repeat1, - [75779] = 3, + [77555] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6080), 3, - anon_sym_default, - anon_sym_toplevel, - anon_sym_notoplevel, - ACTIONS(6082), 3, + ACTIONS(6108), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [75794] = 5, - ACTIONS(6084), 1, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [77568] = 5, + ACTIONS(6110), 1, anon_sym_LBRACE2, - ACTIONS(6086), 1, + ACTIONS(6113), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(981), 2, + ACTIONS(919), 2, sym__newline_or_pipe, sym_comment, - STATE(1991), 2, + STATE(2003), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - [75813] = 5, - ACTIONS(6084), 1, + [77587] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6116), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [77606] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(1303), 3, + sym__newline_or_pipe, + sym_comment, + sym_au_event, + ACTIONS(1305), 3, anon_sym_LBRACE2, - ACTIONS(6088), 1, aux_sym_identifier_token2, + aux_sym__autocmd_pattern_token1, + [77621] = 6, + ACTIONS(169), 1, + sym__catch, + ACTIONS(171), 1, + sym__finally, + ACTIONS(6118), 1, + sym__endtry, + STATE(3140), 1, + sym_finally_statement, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2122), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [77642] = 4, + ACTIONS(6043), 1, + anon_sym_BSLASH_PIPE, + STATE(1976), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(989), 2, + ACTIONS(4473), 4, sym__newline_or_pipe, sym_comment, - STATE(2003), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [75832] = 2, + anon_sym_minlines, + anon_sym_maxlines, + [77659] = 6, + ACTIONS(161), 1, + sym__elseif, + ACTIONS(163), 1, + sym__else, + ACTIONS(6120), 1, + sym__endif, + STATE(3148), 1, + sym_else_statement, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2093), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [77680] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6090), 6, + ACTIONS(6122), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_buffer, anon_sym_group, anon_sym_file, - [75845] = 2, + [77693] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3678), 6, + anon_sym_LT, + anon_sym_BSLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + aux_sym__map_rhs_token2, + [77706] = 5, + STATE(2038), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6092), 6, + ACTIONS(5584), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6124), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [75858] = 2, + [77725] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6094), 6, + ACTIONS(6126), 6, + anon_sym_LT, + anon_sym_BSLASH2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75871] = 2, + aux_sym__map_rhs_token2, + [77738] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6096), 6, + ACTIONS(6128), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_buffer, anon_sym_group, anon_sym_file, - [75884] = 7, - ACTIONS(5497), 1, + [77751] = 6, + ACTIONS(6130), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(6132), 1, aux_sym_identifier_token1, - ACTIONS(6066), 1, - anon_sym_BANG, - STATE(969), 1, + ACTIONS(6134), 1, + sym_integer_literal, + STATE(1328), 1, sym__curly_braces_name_expression, - STATE(2183), 1, - sym_bang, - STATE(2559), 1, - sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [75907] = 2, + STATE(1755), 2, + sym_identifier, + sym__sign_name, + [77772] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6098), 6, + ACTIONS(6136), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75920] = 5, - ACTIONS(3859), 1, + [77791] = 5, + ACTIONS(3925), 1, anon_sym_BSLASH, - ACTIONS(3869), 1, + ACTIONS(3935), 1, aux_sym_filename_token3, - STATE(2673), 1, + STATE(2698), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3867), 3, + ACTIONS(3933), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [75939] = 6, - ACTIONS(6044), 1, - anon_sym_LBRACE2, - ACTIONS(6046), 1, - aux_sym__immediate_identifier_token1, - STATE(587), 1, - sym__method_call_expression, - STATE(2114), 1, - sym__immediate_curly_braces_name_expression, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(3178), 2, - sym__immediate_identifier, - sym__immediate_lambda_expression, - [75960] = 3, + [77810] = 4, + ACTIONS(6138), 1, + anon_sym_COMMA, + STATE(1967), 1, + aux_sym_au_event_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(719), 4, - sym_string_literal, + ACTIONS(6140), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [75975] = 2, + aux_sym__autocmd_pattern_token1, + [77827] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6100), 6, + ACTIONS(6142), 6, sym__newline_or_pipe, sym_comment, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [75988] = 2, + [77840] = 6, + ACTIONS(161), 1, + sym__elseif, + ACTIONS(163), 1, + sym__else, + ACTIONS(6144), 1, + sym__endif, + STATE(3190), 1, + sym_else_statement, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3665), 6, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym__map_rhs_token2, - [76001] = 5, - ACTIONS(6102), 1, - anon_sym_LBRACE2, - ACTIONS(6105), 1, - aux_sym_identifier_token2, + STATE(2093), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [77861] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(995), 2, + ACTIONS(6146), 6, sym__newline_or_pipe, sym_comment, - STATE(2003), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [76020] = 2, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [77874] = 7, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(6148), 1, + sym_spread, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2681), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6108), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [76033] = 2, + [77897] = 7, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + ACTIONS(6150), 1, + sym_spread, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2681), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 6, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_BSLASH_RPAREN, - anon_sym_minlines, - anon_sym_maxlines, - [76046] = 4, - ACTIONS(5981), 1, - anon_sym_BSLASH_PIPE, - STATE(1945), 1, - aux_sym_pattern_repeat1, + [77920] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [76063] = 6, - ACTIONS(6044), 1, + ACTIONS(5257), 2, + aux_sym_filename_token2, + aux_sym_filename_token3, + ACTIONS(5259), 4, + anon_sym_BSLASH, + anon_sym_PLUS, + aux_sym_filename_token1, + aux_sym_filename_token4, + [77935] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6152), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [77954] = 6, + ACTIONS(6021), 1, anon_sym_LBRACE2, - ACTIONS(6046), 1, + ACTIONS(6023), 1, aux_sym__immediate_identifier_token1, - STATE(391), 1, + STATE(802), 1, sym__method_call_expression, - STATE(2114), 1, + STATE(2107), 1, sym__immediate_curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(3154), 2, + STATE(3085), 2, sym__immediate_identifier, sym__immediate_lambda_expression, - [76084] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6110), 6, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym__map_rhs_token2, - [76097] = 2, + [77975] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6112), 6, + ACTIONS(6154), 6, sym__newline_or_pipe, sym_comment, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [76110] = 7, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(5681), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2670), 1, - sym_default_parameter, - STATE(2881), 1, - sym_identifier, + [77988] = 5, + STATE(2039), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [76133] = 5, - STATE(16), 1, - sym__cmd_separator, - STATE(2543), 1, - sym__au_pattern, + ACTIONS(5584), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6156), 2, + sym__newline_or_pipe, + sym_comment, + [78007] = 5, + STATE(2056), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6114), 2, - aux_sym__au_pattern_token1, - aux_sym__au_pattern_token2, - ACTIONS(6116), 2, + ACTIONS(5584), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6158), 2, sym__newline_or_pipe, sym_comment, - [76152] = 5, - STATE(1964), 1, - aux_sym__syn_sync_repeat1, - STATE(2219), 1, - sym__syn_sync_lines, + [78026] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5841), 2, + ACTIONS(6160), 6, sym__newline_or_pipe, sym_comment, - ACTIONS(6006), 2, - anon_sym_minlines, - anon_sym_maxlines, - [76171] = 4, - ACTIONS(6118), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_au_event_list_repeat1, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [78039] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6121), 4, + ACTIONS(6162), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [76188] = 6, - ACTIONS(161), 1, - sym__catch, - ACTIONS(163), 1, - sym__finally, - ACTIONS(6123), 1, - sym__endtry, - STATE(3211), 1, - sym_finally_statement, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [76209] = 5, - ACTIONS(2592), 1, + [78058] = 5, + ACTIONS(2639), 1, anon_sym_end, - STATE(669), 1, + STATE(773), 1, sym__syn_region_end, - STATE(1970), 1, + STATE(2034), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6125), 3, + ACTIONS(6164), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76228] = 5, - ACTIONS(2592), 1, + [78077] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6166), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [78090] = 5, + ACTIONS(2639), 1, anon_sym_end, - STATE(669), 1, + STATE(773), 1, sym__syn_region_end, - STATE(1970), 1, + STATE(2034), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6127), 3, + ACTIONS(6168), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76247] = 5, - ACTIONS(2592), 1, + [78109] = 5, + ACTIONS(6172), 1, anon_sym_end, - STATE(669), 1, + STATE(773), 1, sym__syn_region_end, - STATE(1970), 1, + STATE(2034), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6129), 3, + ACTIONS(6170), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76266] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6131), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [76279] = 6, - ACTIONS(6044), 1, - anon_sym_LBRACE2, - ACTIONS(6046), 1, - aux_sym__immediate_identifier_token1, - STATE(667), 1, - sym__method_call_expression, - STATE(2114), 1, - sym__immediate_curly_braces_name_expression, + [78128] = 5, + ACTIONS(2639), 1, + anon_sym_end, + STATE(773), 1, + sym__syn_region_end, + STATE(2034), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(3137), 2, - sym__immediate_identifier, - sym__immediate_lambda_expression, - [76300] = 5, - STATE(1956), 1, - aux_sym__syn_sync_repeat1, - STATE(2219), 1, - sym__syn_sync_lines, + ACTIONS(6175), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [78147] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5843), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6006), 2, - anon_sym_minlines, - anon_sym_maxlines, - [76319] = 6, - ACTIONS(6044), 1, - anon_sym_LBRACE2, - ACTIONS(6046), 1, - aux_sym__immediate_identifier_token1, - STATE(460), 1, - sym__method_call_expression, - STATE(2114), 1, - sym__immediate_curly_braces_name_expression, + ACTIONS(6177), 6, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [78160] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(3118), 2, - sym__immediate_identifier, - sym__immediate_lambda_expression, - [76340] = 6, - ACTIONS(171), 1, - sym__elseif, - ACTIONS(173), 1, - sym__else, - ACTIONS(6133), 1, - sym__endif, - STATE(3204), 1, - sym_else_statement, + ACTIONS(719), 3, + sym__newline_or_pipe, + sym_comment, + sym_au_event, + ACTIONS(721), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym__autocmd_pattern_token1, + [78175] = 5, + STATE(2039), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2080), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [76361] = 2, + ACTIONS(5584), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6179), 2, + sym__newline_or_pipe, + sym_comment, + [78194] = 5, + STATE(2039), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6135), 6, + ACTIONS(6181), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6184), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [76374] = 7, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(6137), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2670), 1, - sym_default_parameter, - STATE(2881), 1, - sym_identifier, + [78213] = 6, + ACTIONS(169), 1, + sym__catch, + ACTIONS(171), 1, + sym__finally, + ACTIONS(6186), 1, + sym__endtry, + STATE(3026), 1, + sym_finally_statement, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [76397] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + STATE(2122), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [78234] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6139), 3, + ACTIONS(6188), 6, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76416] = 5, - ACTIONS(6141), 1, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [78247] = 6, + ACTIONS(169), 1, + sym__catch, + ACTIONS(171), 1, + sym__finally, + ACTIONS(6190), 1, + sym__endtry, + STATE(3224), 1, + sym_finally_statement, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2122), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [78268] = 5, + ACTIONS(6192), 1, anon_sym_BSLASH, - ACTIONS(6145), 1, + ACTIONS(6196), 1, aux_sym_filename_token3, - STATE(2054), 1, + STATE(1850), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6143), 3, + ACTIONS(6194), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [76435] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + [78287] = 4, + ACTIONS(6198), 1, + anon_sym_BSLASH_PIPE, + STATE(2044), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6147), 3, - anon_sym_BSLASH_PIPE, + ACTIONS(4535), 4, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76454] = 6, - ACTIONS(5714), 1, + anon_sym_minlines, + anon_sym_maxlines, + [78304] = 7, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(5716), 1, + ACTIONS(5538), 1, aux_sym_identifier_token1, - ACTIONS(6149), 1, - sym_integer_literal, - STATE(1990), 1, + ACTIONS(5726), 1, + sym_spread, + STATE(982), 1, sym__curly_braces_name_expression, + STATE(2681), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2796), 2, - sym_identifier, - sym__sign_name, - [76475] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + [78327] = 3, + STATE(1978), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6151), 3, + ACTIONS(4481), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76494] = 2, + anon_sym_minlines, + anon_sym_maxlines, + [78342] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6153), 6, + ACTIONS(6201), 6, sym__newline_or_pipe, sym_comment, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [76507] = 6, - ACTIONS(6155), 1, + [78355] = 5, + ACTIONS(3786), 1, + aux_sym_filename_token3, + ACTIONS(4381), 1, + anon_sym_BSLASH, + STATE(2382), 1, + sym_filename, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3784), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [78374] = 7, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(6157), 1, + ACTIONS(5538), 1, aux_sym_identifier_token1, - ACTIONS(6159), 1, - sym_integer_literal, - STATE(1481), 1, + ACTIONS(6203), 1, + sym_spread, + STATE(982), 1, sym__curly_braces_name_expression, + STATE(2681), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1698), 2, - sym_identifier, - sym__sign_name, - [76528] = 4, - ACTIONS(6015), 1, + [78397] = 4, + ACTIONS(6138), 1, anon_sym_COMMA, - STATE(2013), 1, + STATE(2017), 1, aux_sym_au_event_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6161), 4, + ACTIONS(6205), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, aux_sym__autocmd_pattern_token1, - [76545] = 3, + [78414] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5175), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5177), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token4, - [76560] = 3, + ACTIONS(6207), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [78427] = 6, + ACTIONS(6021), 1, + anon_sym_LBRACE2, + ACTIONS(6023), 1, + aux_sym__immediate_identifier_token1, + STATE(672), 1, + sym__method_call_expression, + STATE(2107), 1, + sym__immediate_curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5171), 2, - aux_sym_filename_token2, - aux_sym_filename_token3, - ACTIONS(5173), 4, - anon_sym_BSLASH, - anon_sym_PLUS, - aux_sym_filename_token1, - aux_sym_filename_token4, - [76575] = 5, - ACTIONS(6141), 1, + STATE(3147), 2, + sym__immediate_identifier, + sym__immediate_lambda_expression, + [78448] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6209), 6, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [78461] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(719), 3, + sym__newline_or_pipe, + sym_comment, + sym__default, + ACTIONS(721), 3, + sym_hl_group, + anon_sym_link, + anon_sym_clear, + [78476] = 5, + ACTIONS(6064), 1, anon_sym_BSLASH, - ACTIONS(6145), 1, + ACTIONS(6068), 1, aux_sym_filename_token3, - STATE(2062), 1, + STATE(2053), 1, sym_filename, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6143), 3, + ACTIONS(6066), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [76594] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6163), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [76613] = 2, + [78495] = 5, + STATE(2039), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2249), 1, + sym_command_argument, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6165), 6, + ACTIONS(5584), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6211), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [76626] = 5, - ACTIONS(2592), 1, - anon_sym_end, - STATE(669), 1, - sym__syn_region_end, - STATE(1970), 1, - aux_sym__syn_region_repeat2, + [78514] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6167), 3, + ACTIONS(6213), 3, + anon_sym_default, + anon_sym_toplevel, + anon_sym_notoplevel, + ACTIONS(6215), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76645] = 3, - STATE(2047), 1, - aux_sym_pattern_repeat1, + [78529] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 5, + ACTIONS(5790), 6, + anon_sym_LT, + anon_sym_BSLASH2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [76660] = 5, - STATE(2040), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + aux_sym__map_rhs_token2, + [78542] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6169), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6172), 2, - sym__newline_or_pipe, - sym_comment, - [76679] = 5, - STATE(1956), 1, - aux_sym__syn_sync_repeat1, - STATE(2219), 1, - sym__syn_sync_lines, + ACTIONS(6217), 6, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [78555] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5947), 2, + ACTIONS(6217), 5, sym__newline_or_pipe, sym_comment, - ACTIONS(6006), 2, - anon_sym_minlines, - anon_sym_maxlines, - [76698] = 5, - STATE(2040), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2162), 1, - sym_command_argument, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [78567] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5614), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6174), 2, + ACTIONS(6052), 2, sym__newline_or_pipe, sym_comment, - [76717] = 7, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(5606), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2670), 1, - sym_default_parameter, - STATE(2881), 1, - sym_identifier, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [76740] = 2, + [78585] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6176), 6, + ACTIONS(6136), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [76753] = 2, + [78603] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6178), 6, + ACTIONS(6128), 5, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [76766] = 7, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - ACTIONS(6180), 1, - sym_spread, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2670), 1, - sym_default_parameter, - STATE(2881), 1, - sym_identifier, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [78615] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [76789] = 4, - ACTIONS(6182), 1, - anon_sym_BSLASH_PIPE, - STATE(2047), 1, - aux_sym_pattern_repeat1, + ACTIONS(6033), 2, + sym__newline_or_pipe, + sym_comment, + [78633] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 4, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [76806] = 5, - ACTIONS(6141), 1, - anon_sym_BSLASH, - ACTIONS(6145), 1, - aux_sym_filename_token3, - STATE(2127), 1, - sym_filename, + ACTIONS(6209), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [78645] = 4, + ACTIONS(6222), 1, + sym__let_heredoc_marker, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6143), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [76825] = 3, - ACTIONS(721), 1, - aux_sym_filename_token3, + ACTIONS(6219), 2, + anon_sym_trim, + anon_sym_eval, + STATE(2066), 2, + sym__let_heredoc_parameter, + aux_sym__let_heredoc_repeat1, + [78661] = 5, + ACTIONS(985), 1, + anon_sym_in, + ACTIONS(6224), 1, + anon_sym_LBRACE2, + ACTIONS(6226), 1, + aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 5, - anon_sym_BSLASH, - anon_sym_BANG, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [76840] = 2, + STATE(2085), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [78679] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6042), 5, + ACTIONS(6152), 2, sym__newline_or_pipe, sym_comment, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [76852] = 3, - ACTIONS(6187), 1, - aux_sym_filename_token3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6185), 4, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [76866] = 3, - ACTIONS(721), 1, - aux_sym_filename_token3, + [78697] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 4, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [76880] = 4, - ACTIONS(6189), 1, - sym_set_value, - ACTIONS(6191), 1, - anon_sym_, + ACTIONS(719), 5, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [78709] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6193), 3, + ACTIONS(6228), 2, + anon_sym_on, + anon_sym_off, + ACTIONS(6230), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76896] = 2, + [78723] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6090), 5, + ACTIONS(6162), 2, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [76908] = 4, - ACTIONS(6195), 1, - anon_sym_, - STATE(2110), 1, - aux_sym_set_statement_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6197), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [76924] = 6, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2670), 1, - sym_default_parameter, - STATE(2881), 1, - sym_identifier, + [78741] = 3, + ACTIONS(5438), 1, + aux_sym__bang_filter_command_argument_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [76944] = 4, - ACTIONS(6195), 1, + ACTIONS(5442), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BSLASH, + [78755] = 4, + ACTIONS(6232), 1, anon_sym_, - STATE(2110), 1, + STATE(2073), 1, aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6199), 3, + ACTIONS(6235), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76960] = 4, - ACTIONS(6201), 1, - anon_sym_DOT, - STATE(2111), 1, - aux_sym_filetypes_repeat1, + [78771] = 3, + ACTIONS(6239), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6203), 3, + ACTIONS(6237), 4, + aux_sym_command_argument_token1, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76976] = 4, - ACTIONS(6205), 1, - anon_sym_COMMA, - STATE(2102), 1, - aux_sym__autocmd_pattern_repeat1, + [78785] = 3, + ACTIONS(6243), 1, + sym_au_event, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(697), 3, + ACTIONS(6241), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [76992] = 4, - ACTIONS(6207), 1, - anon_sym_BSLASH_AMP, - STATE(2060), 1, - aux_sym__pattern_branch_repeat1, + aux_sym__autocmd_pattern_token1, + [78799] = 3, + ACTIONS(6247), 1, + aux_sym_filename_token3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH_PIPE, - [77008] = 2, + ACTIONS(6245), 4, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [78813] = 3, + ACTIONS(6251), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(719), 5, - anon_sym_LBRACE, - aux_sym_identifier_token1, + ACTIONS(6249), 4, + aux_sym_command_argument_token1, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77020] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6098), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [77032] = 5, - ACTIONS(983), 1, - anon_sym_in, - ACTIONS(6210), 1, - anon_sym_LBRACE2, - ACTIONS(6212), 1, - aux_sym_identifier_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(2076), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [77050] = 4, - ACTIONS(6205), 1, - anon_sym_COMMA, - STATE(2059), 1, - aux_sym__autocmd_pattern_repeat1, + [78827] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(684), 3, + ACTIONS(6253), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77066] = 4, - ACTIONS(6066), 1, - anon_sym_BANG, - STATE(2619), 1, - sym_bang, + anon_sym_minlines, + anon_sym_maxlines, + [78839] = 4, + ACTIONS(6255), 1, + anon_sym_DOT, + STATE(2079), 1, + aux_sym_filetypes_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6214), 3, + ACTIONS(6258), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77082] = 4, - ACTIONS(6216), 1, - anon_sym_BSLASH_AMP, - STATE(2060), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4234), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_BSLASH_PIPE, - [77098] = 3, + [78855] = 5, + ACTIONS(5168), 1, + anon_sym_SQUOTE, + STATE(1312), 1, + sym__hl_quoted_name, + STATE(1327), 1, + sym_font, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6082), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6218), 3, - anon_sym_default, - anon_sym_toplevel, - anon_sym_notoplevel, - [77112] = 3, - ACTIONS(5648), 1, + ACTIONS(6260), 2, + sym__hl_none, + aux_sym_font_token1, + [78873] = 3, + ACTIONS(3666), 1, aux_sym__map_rhs_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5945), 4, + ACTIONS(3664), 4, sym__newline_or_pipe, sym_comment, anon_sym_LT, anon_sym_BSLASH2, - [77126] = 5, - ACTIONS(2597), 1, + [78887] = 5, + ACTIONS(2641), 1, anon_sym_end, - STATE(734), 1, + STATE(883), 1, sym__syn_region_end, - STATE(2092), 1, + STATE(2123), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6040), 2, + ACTIONS(6116), 2, sym__newline_or_pipe, sym_comment, - [77144] = 4, - ACTIONS(6066), 1, - anon_sym_BANG, - STATE(2618), 1, - sym_bang, + [78905] = 4, + ACTIONS(6262), 1, + aux_sym__autocmd_pattern_token1, + STATE(49), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6220), 3, + ACTIONS(5823), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77160] = 4, - ACTIONS(6224), 1, - aux_sym__autocmd_pattern_token1, - STATE(29), 1, - sym__autocmd_pattern, + [78921] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6222), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [77176] = 4, + ACTIONS(6108), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [78933] = 5, + ACTIONS(913), 1, + anon_sym_in, ACTIONS(6224), 1, + anon_sym_LBRACE2, + ACTIONS(6264), 1, + aux_sym_identifier_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(2087), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [78951] = 4, + ACTIONS(6262), 1, aux_sym__autocmd_pattern_token1, - STATE(43), 1, + STATE(34), 1, sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5628), 3, + ACTIONS(5742), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77192] = 3, - ACTIONS(6228), 1, - aux_sym_filename_token3, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6226), 4, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [77206] = 3, - ACTIONS(721), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(719), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - anon_sym_BSLASH, - [77220] = 4, - ACTIONS(6233), 1, - sym__let_heredoc_marker, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6230), 2, - anon_sym_trim, - anon_sym_eval, - STATE(2075), 2, - sym__let_heredoc_parameter, - aux_sym__let_heredoc_repeat1, - [77236] = 5, - ACTIONS(991), 1, + [78967] = 5, + ACTIONS(921), 1, anon_sym_in, - ACTIONS(6210), 1, + ACTIONS(6266), 1, anon_sym_LBRACE2, - ACTIONS(6235), 1, + ACTIONS(6269), 1, aux_sym_identifier_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2095), 2, + STATE(2087), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - [77254] = 5, - ACTIONS(2597), 1, + [78985] = 4, + ACTIONS(6272), 1, + anon_sym_BSLASH_AMP, + STATE(2088), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3322), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79001] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6104), 2, + sym__newline_or_pipe, + sym_comment, + [79019] = 5, + ACTIONS(2641), 1, anon_sym_end, - STATE(734), 1, + STATE(883), 1, sym__syn_region_end, - STATE(2092), 1, + STATE(2123), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6163), 2, + ACTIONS(6102), 2, sym__newline_or_pipe, sym_comment, - [77272] = 3, - ACTIONS(6239), 1, + [79037] = 3, + ACTIONS(719), 1, sym_string_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6237), 4, + ACTIONS(721), 4, aux_sym_command_argument_token1, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77286] = 3, - ACTIONS(6243), 1, - sym_string_literal, + [79051] = 3, + ACTIONS(721), 1, + aux_sym__bang_filter_command_argument_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6241), 4, - aux_sym_command_argument_token1, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [77300] = 4, - ACTIONS(6245), 1, + ACTIONS(719), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + anon_sym_BSLASH, + [79065] = 4, + ACTIONS(6275), 1, sym__elseif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6248), 2, + ACTIONS(6278), 2, sym__else, sym__endif, - STATE(2080), 2, + STATE(2093), 2, sym_elseif_statement, aux_sym_if_statement_repeat1, - [77316] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + [79081] = 6, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(2681), 1, + sym_default_parameter, + STATE(2880), 1, + sym_identifier, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [79101] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6151), 2, + ACTIONS(4535), 5, sym__newline_or_pipe, sym_comment, - [77334] = 4, - ACTIONS(6250), 1, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + [79113] = 4, + ACTIONS(6280), 1, anon_sym_COMMA, - STATE(2135), 1, + STATE(2131), 1, aux_sym_au_event_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6252), 3, + ACTIONS(6282), 3, sym__newline_or_pipe, sym_comment, aux_sym__autocmd_pattern_token1, - [77350] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + [79129] = 5, + ACTIONS(3417), 1, + anon_sym_LBRACE2, + ACTIONS(3419), 1, + aux_sym_identifier_token2, + ACTIONS(6284), 1, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6125), 2, - sym__newline_or_pipe, - sym_comment, - [77368] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + STATE(909), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [79147] = 3, + ACTIONS(3678), 1, + aux_sym__map_rhs_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6167), 2, + ACTIONS(3676), 4, sym__newline_or_pipe, sym_comment, - [77386] = 5, - ACTIONS(2597), 1, + anon_sym_LT, + anon_sym_BSLASH2, + [79161] = 5, + ACTIONS(2641), 1, anon_sym_end, - STATE(734), 1, + STATE(883), 1, sym__syn_region_end, - STATE(2092), 1, + STATE(2123), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6127), 2, + ACTIONS(6086), 2, sym__newline_or_pipe, sym_comment, - [77404] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + [79179] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6129), 2, + ACTIONS(6188), 5, sym__newline_or_pipe, sym_comment, - [77422] = 4, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(2082), 1, - aux_sym_au_event_list_repeat1, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [79191] = 4, + ACTIONS(6031), 1, + anon_sym_BANG, + STATE(2435), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6254), 3, - sym__newline_or_pipe, - sym_comment, - aux_sym__autocmd_pattern_token1, - [77438] = 4, - ACTIONS(6256), 1, - anon_sym_BSLASH_AMP, - STATE(2091), 1, - aux_sym__pattern_branch_repeat1, + ACTIONS(6286), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79207] = 4, + ACTIONS(6290), 1, + sym__let_heredoc_marker, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6288), 2, + anon_sym_trim, + anon_sym_eval, + STATE(2125), 2, + sym__let_heredoc_parameter, + aux_sym__let_heredoc_repeat1, + [79223] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 3, + ACTIONS(6294), 2, + anon_sym_start, + anon_sym_minimum, + ACTIONS(6292), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77454] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + [79237] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6147), 2, - sym__newline_or_pipe, - sym_comment, - [77472] = 5, - ACTIONS(3322), 1, + ACTIONS(6298), 2, + anon_sym_clear, + aux_sym__syn_iskeyword_token1, + ACTIONS(6296), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79251] = 4, + ACTIONS(6031), 1, + anon_sym_BANG, + STATE(2438), 1, + sym_bang, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6300), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79267] = 4, + ACTIONS(6302), 1, + anon_sym_COMMA, + STATE(2106), 1, + aux_sym__autocmd_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(690), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79283] = 5, + ACTIONS(3417), 1, anon_sym_LBRACE2, - ACTIONS(3324), 1, + ACTIONS(6305), 1, aux_sym_identifier_token2, - ACTIONS(6258), 1, + ACTIONS(6307), 1, anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(861), 2, + STATE(2097), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - [77490] = 4, - ACTIONS(6260), 1, - anon_sym_BSLASH_AMP, - STATE(2091), 1, - aux_sym__pattern_branch_repeat1, + [79301] = 4, + ACTIONS(6031), 1, + anon_sym_BANG, + STATE(2598), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 3, + ACTIONS(6309), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77506] = 5, - ACTIONS(6263), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + [79317] = 4, + ACTIONS(6262), 1, + aux_sym__autocmd_pattern_token1, + STATE(27), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6031), 2, - sym__newline_or_pipe, - sym_comment, - [77524] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + ACTIONS(6311), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79333] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6139), 2, - sym__newline_or_pipe, - sym_comment, - [77542] = 4, - ACTIONS(6268), 1, - sym__let_heredoc_marker, + ACTIONS(6315), 2, + anon_sym_match, + anon_sym_ignore, + ACTIONS(6313), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79347] = 5, + ACTIONS(5036), 1, + anon_sym_SQUOTE, + STATE(1195), 1, + sym_font, + STATE(1196), 1, + sym__hl_quoted_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6266), 2, - anon_sym_trim, - anon_sym_eval, - STATE(2133), 2, - sym__let_heredoc_parameter, - aux_sym__let_heredoc_repeat1, - [77558] = 5, - ACTIONS(997), 1, - anon_sym_in, - ACTIONS(6270), 1, - anon_sym_LBRACE2, - ACTIONS(6273), 1, - aux_sym_identifier_token2, + ACTIONS(6317), 2, + sym__hl_none, + aux_sym_font_token1, + [79365] = 4, + ACTIONS(6280), 1, + anon_sym_COMMA, + STATE(2096), 1, + aux_sym_au_event_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(2095), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [77576] = 2, + ACTIONS(6319), 3, + sym__newline_or_pipe, + sym_comment, + aux_sym__autocmd_pattern_token1, + [79381] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5979), 5, + ACTIONS(6122), 5, sym__newline_or_pipe, sym_comment, anon_sym_buffer, anon_sym_group, anon_sym_file, - [77588] = 3, - ACTIONS(6276), 1, + [79393] = 4, + ACTIONS(6321), 1, anon_sym_COMMA, + STATE(2134), 1, + aux_sym__autocmd_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6121), 4, + ACTIONS(697), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [77602] = 2, + [79409] = 3, + ACTIONS(5790), 1, + aux_sym__map_rhs_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 5, + ACTIONS(5982), 4, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [77614] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, + anon_sym_LT, + anon_sym_BSLASH2, + [79423] = 4, + ACTIONS(6323), 1, + anon_sym_BSLASH_AMP, + STATE(2142), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6029), 2, + ACTIONS(4313), 3, sym__newline_or_pipe, sym_comment, - [77632] = 4, - ACTIONS(6224), 1, - aux_sym__autocmd_pattern_token1, - STATE(22), 1, - sym__autocmd_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6278), 3, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [77648] = 4, - ACTIONS(6201), 1, - anon_sym_DOT, - STATE(2058), 1, - aux_sym_filetypes_repeat1, + [79439] = 4, + ACTIONS(6325), 1, + anon_sym_BSLASH_AMP, + STATE(2088), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6280), 3, + ACTIONS(4313), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77664] = 4, - ACTIONS(6282), 1, - anon_sym_COMMA, - STATE(2102), 1, - aux_sym__autocmd_pattern_repeat1, + [79455] = 4, + ACTIONS(6327), 1, + sym_set_value, + ACTIONS(6329), 1, + anon_sym_, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(690), 3, + ACTIONS(6331), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77680] = 4, - ACTIONS(6285), 1, - anon_sym_COMMA, - STATE(2103), 1, - aux_sym_list_repeat1, + [79471] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2565), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [77696] = 3, - ACTIONS(3665), 1, - aux_sym__map_rhs_token2, + ACTIONS(6177), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [79483] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3663), 4, + ACTIONS(6175), 2, sym__newline_or_pipe, sym_comment, - anon_sym_LT, - anon_sym_BSLASH2, - [77710] = 2, + [79501] = 4, + ACTIONS(6031), 1, + anon_sym_BANG, + STATE(2616), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6288), 5, + ACTIONS(6333), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - anon_sym_minlines, - anon_sym_maxlines, - [77722] = 2, + [79517] = 4, + ACTIONS(6335), 1, + sym__catch, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6338), 2, + sym__finally, + sym__endtry, + STATE(2122), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [79533] = 5, + ACTIONS(6340), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6094), 5, + ACTIONS(6170), 2, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [77734] = 4, - ACTIONS(6195), 1, - anon_sym_, - STATE(2057), 1, - aux_sym_set_statement_repeat1, + [79551] = 5, + ACTIONS(2641), 1, + anon_sym_end, + STATE(883), 1, + sym__syn_region_end, + STATE(2123), 1, + aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6290), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [77750] = 4, - ACTIONS(6195), 1, - anon_sym_, - STATE(2055), 1, - aux_sym_set_statement_repeat1, + ACTIONS(6168), 2, + sym__newline_or_pipe, + sym_comment, + [79569] = 4, + ACTIONS(6343), 1, + sym__let_heredoc_marker, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6292), 3, + ACTIONS(6288), 2, + anon_sym_trim, + anon_sym_eval, + STATE(2066), 2, + sym__let_heredoc_parameter, + aux_sym__let_heredoc_repeat1, + [79585] = 4, + ACTIONS(6345), 1, + anon_sym_DOT, + STATE(2140), 1, + aux_sym_filetypes_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6347), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77766] = 5, - ACTIONS(2597), 1, + [79601] = 5, + ACTIONS(2641), 1, anon_sym_end, - STATE(734), 1, + STATE(883), 1, sym__syn_region_end, - STATE(2092), 1, + STATE(2123), 1, aux_sym__syn_region_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6023), 2, + ACTIONS(6164), 2, sym__newline_or_pipe, sym_comment, - [77784] = 4, - ACTIONS(6294), 1, + [79619] = 4, + ACTIONS(6349), 1, anon_sym_, - STATE(2110), 1, + STATE(2073), 1, aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6297), 3, + ACTIONS(6351), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77800] = 4, - ACTIONS(6299), 1, - anon_sym_DOT, - STATE(2111), 1, - aux_sym_filetypes_repeat1, + [79635] = 4, + ACTIONS(6349), 1, + anon_sym_, + STATE(2137), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6302), 3, + ACTIONS(6353), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77816] = 3, - ACTIONS(719), 1, - sym_string_literal, + [79651] = 4, + ACTIONS(6355), 1, + anon_sym_COMMA, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(721), 4, - aux_sym_command_argument_token1, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [77830] = 2, + ACTIONS(2601), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + [79667] = 4, + ACTIONS(6358), 1, + anon_sym_COMMA, + STATE(2131), 1, + aux_sym_au_event_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6108), 5, + ACTIONS(6361), 3, sym__newline_or_pipe, sym_comment, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [77842] = 5, - ACTIONS(3322), 1, - anon_sym_LBRACE2, - ACTIONS(6304), 1, - aux_sym_identifier_token2, - ACTIONS(6306), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - STATE(2090), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [77860] = 4, - ACTIONS(6066), 1, - anon_sym_BANG, - STATE(2480), 1, - sym_bang, + aux_sym__autocmd_pattern_token1, + [79683] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6308), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [77876] = 3, + ACTIONS(6029), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [79695] = 4, + ACTIONS(6349), 1, + anon_sym_, + STATE(2128), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6310), 2, - anon_sym_on, - anon_sym_off, - ACTIONS(6312), 3, + ACTIONS(6363), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77890] = 3, + [79711] = 4, + ACTIONS(6321), 1, + anon_sym_COMMA, + STATE(2106), 1, + aux_sym__autocmd_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6316), 2, - anon_sym_clear, - aux_sym__syn_iskeyword_token1, - ACTIONS(6314), 3, + ACTIONS(684), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77904] = 3, - ACTIONS(5538), 1, - aux_sym__bang_filter_command_argument_token1, + [79727] = 3, + ACTIONS(6367), 1, + aux_sym_filename_token3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5542), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, + ACTIONS(6365), 4, anon_sym_BSLASH, - [77918] = 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [79741] = 3, + ACTIONS(6361), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6320), 2, - anon_sym_start, - anon_sym_minimum, - ACTIONS(6318), 3, + ACTIONS(6048), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77932] = 3, + aux_sym__autocmd_pattern_token1, + [79755] = 4, + ACTIONS(6349), 1, + anon_sym_, + STATE(2073), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6324), 2, - anon_sym_match, - anon_sym_ignore, - ACTIONS(6322), 3, + ACTIONS(6369), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [77946] = 5, - ACTIONS(2597), 1, - anon_sym_end, - STATE(734), 1, - sym__syn_region_end, - STATE(2092), 1, - aux_sym__syn_region_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6019), 2, - sym__newline_or_pipe, - sym_comment, - [77964] = 3, - ACTIONS(3634), 1, - aux_sym__map_rhs_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(3632), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_LT, - anon_sym_BSLASH2, - [77978] = 5, - ACTIONS(4937), 1, - anon_sym_SQUOTE, - STATE(1255), 1, - sym__hl_quoted_name, - STATE(1257), 1, - sym_font, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6326), 2, - sym__hl_none, - aux_sym_font_token1, - [77996] = 2, + [79771] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6328), 5, + ACTIONS(6371), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, anon_sym_minlines, anon_sym_maxlines, - [78008] = 4, - ACTIONS(6066), 1, - anon_sym_BANG, - STATE(2435), 1, - sym_bang, + [79783] = 3, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6215), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6373), 3, + anon_sym_default, + anon_sym_toplevel, + anon_sym_notoplevel, + [79797] = 4, + ACTIONS(6345), 1, + anon_sym_DOT, + STATE(2079), 1, + aux_sym_filetypes_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6330), 3, + ACTIONS(6375), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [78024] = 3, - ACTIONS(6110), 1, + [79813] = 3, + ACTIONS(6126), 1, aux_sym__map_rhs_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6332), 4, + ACTIONS(6377), 4, sym__newline_or_pipe, sym_comment, anon_sym_LT, anon_sym_BSLASH2, - [78038] = 2, + [79827] = 4, + ACTIONS(6379), 1, + anon_sym_BSLASH_AMP, + STATE(2142), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5994), 5, + ACTIONS(3322), 3, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [78050] = 4, - ACTIONS(6334), 1, - sym__let_heredoc_marker, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6266), 2, - anon_sym_trim, - anon_sym_eval, - STATE(2130), 2, - sym__let_heredoc_parameter, - aux_sym__let_heredoc_repeat1, - [78066] = 4, - ACTIONS(6224), 1, + anon_sym_BSLASH_PIPE, + [79843] = 4, + ACTIONS(6262), 1, aux_sym__autocmd_pattern_token1, - STATE(41), 1, + STATE(23), 1, sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5616), 3, + ACTIONS(6382), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [78082] = 4, - ACTIONS(6336), 1, + [79859] = 4, + ACTIONS(6384), 1, sym__let_heredoc_marker, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6266), 2, + ACTIONS(6288), 2, anon_sym_trim, anon_sym_eval, - STATE(2075), 2, + STATE(2145), 2, sym__let_heredoc_parameter, aux_sym__let_heredoc_repeat1, - [78098] = 4, - ACTIONS(6338), 1, - sym__catch, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6341), 2, - sym__finally, - sym__endtry, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [78114] = 3, - ACTIONS(6345), 1, - sym_au_event, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6343), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - aux_sym__autocmd_pattern_token1, - [78128] = 4, - ACTIONS(6347), 1, + [79875] = 4, + ACTIONS(6386), 1, sym__let_heredoc_marker, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6266), 2, + ACTIONS(6288), 2, anon_sym_trim, anon_sym_eval, - STATE(2075), 2, + STATE(2066), 2, sym__let_heredoc_parameter, aux_sym__let_heredoc_repeat1, - [78144] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6096), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [78156] = 4, - ACTIONS(6349), 1, - anon_sym_COMMA, - STATE(2135), 1, - aux_sym_au_event_list_repeat1, + [79891] = 3, + ACTIONS(721), 1, + aux_sym_filename_token3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6276), 3, - sym__newline_or_pipe, - sym_comment, - aux_sym__autocmd_pattern_token1, - [78172] = 5, - ACTIONS(5076), 1, - anon_sym_SQUOTE, - STATE(1203), 1, - sym__hl_quoted_name, - STATE(1208), 1, - sym_font, + ACTIONS(719), 4, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [79905] = 3, + ACTIONS(6388), 1, + anon_sym_, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6352), 2, - sym__hl_none, - aux_sym_font_token1, - [78190] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6356), 1, - anon_sym_RBRACK, - ACTIONS(6358), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2256), 1, - aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(6390), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [79918] = 4, + ACTIONS(6392), 1, + anon_sym_BSLASH_AMP, + STATE(2269), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78207] = 4, - ACTIONS(6360), 1, - anon_sym_DOT, - STATE(2190), 1, - aux_sym_filetypes_repeat1, + ACTIONS(4313), 2, + sym__separator, + anon_sym_BSLASH_PIPE, + [79933] = 4, + ACTIONS(6394), 1, + anon_sym_BANG, + STATE(2712), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6280), 2, + ACTIONS(6286), 2, sym__newline_or_pipe, sym_comment, - [78222] = 5, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, - anon_sym_SEMI, - ACTIONS(6366), 1, - anon_sym_RBRACK, - STATE(2103), 1, - aux_sym_list_repeat1, + [79948] = 4, + ACTIONS(6394), 1, + anon_sym_BANG, + STATE(2713), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78239] = 4, - ACTIONS(759), 1, - aux_sym__map_lhs_token1, - STATE(1878), 1, - sym__plus_plus_opt_bad, + ACTIONS(6300), 2, + sym__newline_or_pipe, + sym_comment, + [79963] = 4, + ACTIONS(6399), 1, + aux_sym__map_rhs_statement_token3, + STATE(2151), 1, + aux_sym__map_rhs_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(757), 2, - anon_sym_keep, - anon_sym_drop, - [78254] = 3, - STATE(1878), 1, - sym__immediate_file_format, + ACTIONS(6396), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + [79978] = 4, + ACTIONS(6394), 1, + anon_sym_BANG, + STATE(2866), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(757), 3, - anon_sym_dos, - anon_sym_unix, - anon_sym_mac, - [78267] = 4, - ACTIONS(6368), 1, - aux_sym__autocmd_pattern_token1, - STATE(54), 1, - sym__autocmd_pattern, + ACTIONS(6309), 2, + sym__newline_or_pipe, + sym_comment, + [79993] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(651), 2, + ACTIONS(6253), 4, sym__newline_or_pipe, sym_comment, - [78282] = 4, - ACTIONS(6370), 1, - anon_sym_COMMA, - STATE(2143), 1, - aux_sym__autocmd_pattern_repeat1, + anon_sym_minlines, + anon_sym_maxlines, + [80004] = 4, + ACTIONS(6394), 1, + anon_sym_BANG, + STATE(2686), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(690), 2, + ACTIONS(6333), 2, sym__newline_or_pipe, sym_comment, - [78297] = 5, - ACTIONS(6373), 1, + [80019] = 5, + ACTIONS(6401), 1, anon_sym_LBRACE, - ACTIONS(6375), 1, + ACTIONS(6403), 1, aux_sym_identifier_token1, - STATE(563), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(755), 1, + STATE(535), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78314] = 4, - ACTIONS(3722), 1, - anon_sym_LT, - ACTIONS(6377), 1, - aux_sym__hl_term_list_token1, + [80036] = 5, + ACTIONS(6405), 1, + aux_sym_option_name_token1, + ACTIONS(6407), 1, + anon_sym_t_, + ACTIONS(6409), 1, + sym_scope, + STATE(599), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1093), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - [78329] = 5, - ACTIONS(5714), 1, + [80053] = 5, + ACTIONS(6401), 1, anon_sym_LBRACE, - ACTIONS(5716), 1, + ACTIONS(6403), 1, aux_sym_identifier_token1, - STATE(1990), 1, + STATE(522), 1, sym__curly_braces_name_expression, - STATE(2827), 1, + STATE(561), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78346] = 5, - ACTIONS(6354), 1, + [80070] = 5, + ACTIONS(6411), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_COMMA, + ACTIONS(6415), 1, + sym_literal_key, + STATE(2530), 1, + sym__literal_dictionary_entry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [80087] = 3, + STATE(2234), 1, + aux_sym_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(4481), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [80100] = 4, + ACTIONS(6417), 1, + anon_sym_COMMA, + STATE(2272), 1, + aux_sym__autocmd_pattern_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(697), 2, + sym__newline_or_pipe, + sym_comment, + [80115] = 3, + ACTIONS(6241), 1, + aux_sym__autocmd_pattern_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6243), 3, + sym__newline_or_pipe, + sym_comment, + sym_au_event, + [80128] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6379), 1, + ACTIONS(6421), 1, anon_sym_RBRACK, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78363] = 5, - ACTIONS(6354), 1, + [80145] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6383), 1, + ACTIONS(6425), 1, anon_sym_RBRACK, - ACTIONS(6385), 1, + ACTIONS(6427), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2147), 1, + STATE(2162), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78380] = 4, - ACTIONS(6389), 1, - aux_sym__map_rhs_statement_token3, - STATE(2170), 1, - aux_sym__map_rhs_statement_repeat1, + [80162] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6423), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6429), 1, + anon_sym_RBRACK, + STATE(2274), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6387), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - [78395] = 3, - STATE(1681), 1, - sym__immediate_file_format, + [80179] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6431), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2164), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(773), 3, - anon_sym_dos, - anon_sym_unix, - anon_sym_mac, - [78408] = 5, - ACTIONS(6354), 1, + [80196] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6391), 1, + ACTIONS(6435), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78425] = 4, - ACTIONS(775), 1, - aux_sym__map_lhs_token1, - STATE(1681), 1, - sym__plus_plus_opt_bad, + [80213] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6437), 1, + anon_sym_RBRACK, + ACTIONS(6439), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2166), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(773), 2, - anon_sym_keep, - anon_sym_drop, - [78440] = 2, + [80230] = 4, + ACTIONS(6441), 1, + anon_sym_, + STATE(2276), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6276), 4, + ACTIONS(6443), 2, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, - aux_sym__autocmd_pattern_token1, - [78451] = 5, - ACTIONS(6354), 1, + [80245] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6423), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6445), 1, + anon_sym_RBRACK, + STATE(2274), 1, + aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [80262] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6393), 1, + ACTIONS(6447), 1, anon_sym_RBRACK, - ACTIONS(6395), 1, + ACTIONS(6449), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2151), 1, + STATE(2169), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78468] = 5, - ACTIONS(5497), 1, + [80279] = 5, + ACTIONS(5795), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(5797), 1, aux_sym_identifier_token1, - STATE(969), 1, + STATE(1971), 1, sym__curly_braces_name_expression, - STATE(1589), 1, + STATE(2721), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78485] = 5, - ACTIONS(6354), 1, + [80296] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6397), 1, + ACTIONS(6451), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78502] = 5, - ACTIONS(6354), 1, + [80313] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6399), 1, + ACTIONS(6453), 1, anon_sym_RBRACK, - ACTIONS(6401), 1, + ACTIONS(6455), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2156), 1, + STATE(2172), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78519] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6243), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - aux_sym_command_argument_token1, - [78530] = 5, - ACTIONS(6403), 1, - anon_sym_LBRACE, - ACTIONS(6405), 1, - aux_sym_identifier_token1, - STATE(154), 1, - sym__curly_braces_name_expression, - STATE(334), 1, - sym_identifier, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [78547] = 4, - ACTIONS(6368), 1, - aux_sym__autocmd_pattern_token1, - STATE(56), 1, - sym__autocmd_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(5805), 2, - sym__newline_or_pipe, - sym_comment, - [78562] = 5, - ACTIONS(6354), 1, + [80330] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6407), 1, + ACTIONS(6457), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78579] = 2, + [80347] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6459), 1, + anon_sym_RBRACK, + ACTIONS(6461), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2174), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6239), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - aux_sym_command_argument_token1, - [78590] = 4, - ACTIONS(6409), 1, - anon_sym_BANG, - STATE(2699), 1, - sym_bang, + [80364] = 5, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + STATE(982), 1, + sym__curly_braces_name_expression, + STATE(1619), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6214), 2, - sym__newline_or_pipe, - sym_comment, - [78605] = 5, - ACTIONS(6354), 1, + [80381] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6411), 1, - anon_sym_RBRACK, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2239), 1, + ACTIONS(6463), 1, + anon_sym_RBRACK, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78622] = 5, - ACTIONS(6354), 1, + [80398] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6415), 1, + ACTIONS(6465), 1, anon_sym_RBRACK, - ACTIONS(6417), 1, + ACTIONS(6467), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2161), 1, + STATE(2177), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78639] = 4, - ACTIONS(6409), 1, - anon_sym_BANG, - STATE(2701), 1, - sym_bang, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6220), 2, - sym__newline_or_pipe, - sym_comment, - [78654] = 5, - ACTIONS(6419), 1, + [80415] = 5, + ACTIONS(6469), 1, anon_sym_LBRACE, - ACTIONS(6421), 1, + ACTIONS(6471), 1, aux_sym_identifier_token1, - STATE(543), 1, + STATE(162), 1, sym__curly_braces_name_expression, - STATE(715), 1, + STATE(454), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78671] = 5, - ACTIONS(6354), 1, + [80432] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, - aux_sym__pattern_ordinary_atom_token1, ACTIONS(6423), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6473), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78688] = 3, + [80449] = 4, + ACTIONS(6475), 1, + aux_sym__autocmd_pattern_token1, + STATE(53), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6322), 2, + ACTIONS(5965), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(6425), 2, - anon_sym_match, - anon_sym_ignore, - [78701] = 4, - ACTIONS(6427), 1, - aux_sym__map_rhs_statement_token3, - STATE(2198), 1, - aux_sym__map_rhs_statement_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6387), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - [78716] = 4, - ACTIONS(6429), 1, - aux_sym__map_rhs_statement_token3, - STATE(2230), 1, - aux_sym__map_rhs_statement_repeat1, + [80464] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6423), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6477), 1, + anon_sym_RBRACK, + STATE(2274), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6387), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - [78731] = 4, - ACTIONS(3748), 1, - anon_sym_LT, - ACTIONS(6431), 1, - aux_sym__hl_term_list_token1, + [80481] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6479), 1, + anon_sym_RBRACK, + ACTIONS(6481), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2182), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - STATE(1098), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - [78746] = 5, - ACTIONS(6433), 1, - sym__normal, - ACTIONS(6435), 1, - sym__source, - ACTIONS(6437), 1, - sym__global, - ACTIONS(6439), 1, - sym__call, + [80498] = 5, + ACTIONS(6483), 1, + anon_sym_LBRACE, + ACTIONS(6485), 1, + aux_sym_identifier_token1, + STATE(550), 1, + sym__curly_braces_name_expression, + STATE(720), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78763] = 4, - ACTIONS(6441), 1, - anon_sym_BSLASH_AMP, - STATE(2211), 1, - aux_sym__pattern_branch_repeat1, + [80515] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 2, - anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - [78778] = 5, - ACTIONS(6354), 1, + ACTIONS(6313), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6487), 2, + anon_sym_match, + anon_sym_ignore, + [80528] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6443), 1, + ACTIONS(6489), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78795] = 5, - ACTIONS(6445), 1, - sym__normal, - ACTIONS(6447), 1, - sym__source, - ACTIONS(6449), 1, - sym__global, - ACTIONS(6451), 1, - sym__call, + [80545] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78812] = 5, - ACTIONS(6354), 1, + ACTIONS(6292), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6491), 2, + anon_sym_start, + anon_sym_minimum, + [80558] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6453), 1, + ACTIONS(6493), 1, anon_sym_RBRACK, - ACTIONS(6455), 1, + ACTIONS(6495), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2168), 1, + STATE(2186), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78829] = 3, - ACTIONS(6459), 1, - sym_hl_group, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6457), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [78842] = 3, - ACTIONS(6463), 1, - sym_hl_group, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6461), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [78855] = 3, - ACTIONS(6467), 1, - sym_hl_group, + [80575] = 5, + ACTIONS(6497), 1, + aux_sym_option_name_token1, + ACTIONS(6499), 1, + anon_sym_t_, + ACTIONS(6501), 1, + sym_scope, + STATE(451), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6465), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [78868] = 4, - ACTIONS(6409), 1, - anon_sym_BANG, - STATE(2856), 1, - sym_bang, + [80592] = 5, + ACTIONS(6503), 1, + anon_sym_LBRACE, + ACTIONS(6505), 1, + aux_sym_identifier_token1, + STATE(513), 1, + sym__curly_braces_name_expression, + STATE(533), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6308), 2, - sym__newline_or_pipe, - sym_comment, - [78883] = 5, + [80609] = 5, ACTIONS(6469), 1, anon_sym_LBRACE, ACTIONS(6471), 1, aux_sym_identifier_token1, - STATE(193), 1, + STATE(162), 1, sym__curly_braces_name_expression, - STATE(477), 1, + STATE(450), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78900] = 5, - ACTIONS(5497), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - aux_sym_identifier_token1, - STATE(969), 1, - sym__curly_braces_name_expression, - STATE(2323), 1, - sym_identifier, + [80626] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78917] = 4, - ACTIONS(6473), 1, - anon_sym_BSLASH_PIPE, - STATE(2259), 1, - aux_sym_pattern_repeat1, + ACTIONS(6507), 2, + anon_sym_clear, + aux_sym__syn_iskeyword_token1, + ACTIONS(6509), 2, + sym__newline_or_pipe, + sym_comment, + [80639] = 3, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4502), 2, + ACTIONS(6230), 2, sym__newline_or_pipe, sym_comment, - [78932] = 3, - STATE(2220), 1, - aux_sym_pattern_repeat1, + ACTIONS(6511), 2, + anon_sym_on, + anon_sym_off, + [80652] = 4, + ACTIONS(767), 1, + aux_sym__map_lhs_token1, + STATE(1703), 1, + sym__plus_plus_opt_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [78945] = 3, + ACTIONS(765), 2, + anon_sym_keep, + anon_sym_drop, + [80667] = 3, + STATE(1703), 1, + sym__immediate_file_format, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6318), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6475), 2, - anon_sym_start, - anon_sym_minimum, - [78958] = 5, - ACTIONS(6373), 1, + ACTIONS(765), 3, + anon_sym_dos, + anon_sym_unix, + anon_sym_mac, + [80680] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6423), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6513), 1, + anon_sym_RBRACK, + STATE(2274), 1, + aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [80697] = 5, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(6375), 1, + ACTIONS(5538), 1, aux_sym_identifier_token1, - STATE(563), 1, + STATE(982), 1, sym__curly_braces_name_expression, - STATE(741), 1, + STATE(2406), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78975] = 5, - ACTIONS(6354), 1, + [80714] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6477), 1, + ACTIONS(6515), 1, anon_sym_RBRACK, - ACTIONS(6479), 1, + ACTIONS(6517), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2175), 1, + STATE(2196), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [78992] = 5, - ACTIONS(6481), 1, - aux_sym_option_name_token1, - ACTIONS(6483), 1, - anon_sym_t_, - ACTIONS(6485), 1, - sym_scope, - STATE(450), 1, - sym_option_name, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [79009] = 4, - ACTIONS(6360), 1, + [80731] = 4, + ACTIONS(6519), 1, anon_sym_DOT, - STATE(2228), 1, + STATE(2279), 1, aux_sym_filetypes_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6203), 2, + ACTIONS(6375), 2, sym__newline_or_pipe, sym_comment, - [79024] = 5, - ACTIONS(6487), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - aux_sym_identifier_token1, - STATE(504), 1, - sym__curly_braces_name_expression, - STATE(534), 1, - sym_identifier, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [79041] = 5, - ACTIONS(6491), 1, + [80746] = 5, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(6521), 1, anon_sym_RBRACE, - ACTIONS(6493), 1, + ACTIONS(6523), 1, anon_sym_COMMA, - ACTIONS(6495), 1, - sym_literal_key, - STATE(2568), 1, + STATE(2407), 1, sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79058] = 5, - ACTIONS(6497), 1, - aux_sym_option_name_token1, - ACTIONS(6499), 1, - anon_sym_t_, - ACTIONS(6501), 1, - sym_scope, - STATE(474), 1, - sym_option_name, + [80763] = 5, + ACTIONS(6525), 1, + anon_sym_LBRACE, + ACTIONS(6527), 1, + aux_sym_identifier_token1, + STATE(583), 1, + sym__curly_braces_name_expression, + STATE(729), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79075] = 5, - ACTIONS(6503), 1, + [80780] = 5, + ACTIONS(6529), 1, aux_sym_option_name_token1, - ACTIONS(6505), 1, + ACTIONS(6531), 1, anon_sym_t_, - ACTIONS(6507), 1, + ACTIONS(6533), 1, sym_scope, - STATE(752), 1, + STATE(716), 1, sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79092] = 5, - ACTIONS(6403), 1, + [80797] = 5, + ACTIONS(6535), 1, anon_sym_LBRACE, - ACTIONS(6405), 1, + ACTIONS(6537), 1, aux_sym_identifier_token1, - STATE(154), 1, + STATE(183), 1, sym__curly_braces_name_expression, - STATE(449), 1, + STATE(474), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79109] = 5, - ACTIONS(4953), 1, + [80814] = 5, + ACTIONS(6483), 1, anon_sym_LBRACE, - ACTIONS(6509), 1, + ACTIONS(6485), 1, aux_sym_identifier_token1, - STATE(518), 1, - sym_identifier, - STATE(2063), 1, + STATE(550), 1, sym__curly_braces_name_expression, + STATE(707), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79126] = 5, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(2919), 1, - anon_sym_RBRACK, - ACTIONS(6364), 1, - anon_sym_SEMI, - STATE(2103), 1, - aux_sym_list_repeat1, + [80831] = 4, + ACTIONS(6441), 1, + anon_sym_, + STATE(2215), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79143] = 4, - ACTIONS(6514), 1, - aux_sym__map_rhs_statement_token3, - STATE(2198), 1, - aux_sym__map_rhs_statement_repeat1, + ACTIONS(6539), 2, + sym__newline_or_pipe, + sym_comment, + [80846] = 4, + ACTIONS(6441), 1, + anon_sym_, + STATE(2168), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6511), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - [79158] = 5, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6516), 1, - anon_sym_RBRACE, - ACTIONS(6518), 1, + ACTIONS(6541), 2, + sym__newline_or_pipe, + sym_comment, + [80861] = 4, + ACTIONS(6519), 1, + anon_sym_DOT, + STATE(2199), 1, + aux_sym_filetypes_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6347), 2, + sym__newline_or_pipe, + sym_comment, + [80876] = 5, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(6543), 1, + anon_sym_EQ, + ACTIONS(6545), 1, anon_sym_COMMA, - STATE(2466), 1, - sym__literal_dictionary_entry, + STATE(2443), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79175] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6520), 1, - anon_sym_RBRACK, - ACTIONS(6522), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2221), 1, - aux_sym__pattern_ordinary_atom_repeat1, + [80893] = 4, + ACTIONS(763), 1, + aux_sym__map_lhs_token1, + STATE(1572), 1, + sym__plus_plus_opt_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79192] = 4, - ACTIONS(6526), 1, - anon_sym_plugin, - STATE(2747), 1, - sym__filetype_state, + ACTIONS(761), 2, + anon_sym_keep, + anon_sym_drop, + [80908] = 3, + STATE(1572), 1, + sym__immediate_file_format, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6524), 2, - anon_sym_on, - anon_sym_off, - [79207] = 5, - ACTIONS(5778), 1, - anon_sym_RPAREN, - ACTIONS(6528), 1, - anon_sym_EQ, - ACTIONS(6530), 1, - anon_sym_COMMA, - STATE(2288), 1, - aux_sym_parameters_repeat2, + ACTIONS(761), 3, + anon_sym_dos, + anon_sym_unix, + anon_sym_mac, + [80921] = 4, + ACTIONS(6547), 1, + anon_sym_BSLASH_AMP, + STATE(2211), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79224] = 5, - ACTIONS(6354), 1, + ACTIONS(3322), 2, + anon_sym_BSLASH_PIPE, + anon_sym_BSLASH_RPAREN, + [80936] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6532), 1, + ACTIONS(6550), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79241] = 4, - ACTIONS(6534), 1, - anon_sym_BSLASH_AMP, - STATE(2204), 1, - aux_sym__pattern_branch_repeat1, + [80953] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6552), 1, + anon_sym_RBRACK, + ACTIONS(6554), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2212), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 2, - sym__separator, - anon_sym_BSLASH_PIPE, - [79256] = 4, - ACTIONS(6537), 1, + [80970] = 5, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(6556), 1, + anon_sym_RBRACE, + ACTIONS(6558), 1, + anon_sym_COMMA, + STATE(2469), 1, + sym__literal_dictionary_entry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [80987] = 4, + ACTIONS(6441), 1, anon_sym_, - STATE(2226), 1, + STATE(2276), 1, aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6539), 2, + ACTIONS(6560), 2, sym__newline_or_pipe, sym_comment, - [79271] = 2, + [81002] = 5, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(3011), 1, + anon_sym_RBRACK, + ACTIONS(6562), 1, + anon_sym_SEMI, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(690), 4, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79282] = 3, + [81019] = 5, + ACTIONS(6564), 1, + aux_sym_option_name_token1, + ACTIONS(6566), 1, + anon_sym_t_, + ACTIONS(6568), 1, + sym_scope, + STATE(531), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6541), 2, - anon_sym_clear, - aux_sym__syn_iskeyword_token1, - ACTIONS(6543), 2, - sym__newline_or_pipe, - sym_comment, - [79295] = 3, + [81036] = 5, + ACTIONS(5508), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, + aux_sym_identifier_token1, + STATE(535), 1, + sym_identifier, + STATE(982), 1, + sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6312), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6545), 2, - anon_sym_on, - anon_sym_off, - [79308] = 4, - ACTIONS(6409), 1, - anon_sym_BANG, - STATE(2676), 1, - sym_bang, + [81053] = 5, + ACTIONS(6503), 1, + anon_sym_LBRACE, + ACTIONS(6505), 1, + aux_sym_identifier_token1, + STATE(513), 1, + sym__curly_braces_name_expression, + STATE(541), 1, + sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6330), 2, - sym__newline_or_pipe, - sym_comment, - [79323] = 3, - ACTIONS(6549), 1, - aux_sym_command_statement_token1, + [81070] = 3, + ACTIONS(6572), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6547), 3, + ACTIONS(6570), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [79336] = 4, - ACTIONS(6551), 1, - anon_sym_BSLASH_AMP, - STATE(2211), 1, - aux_sym__pattern_branch_repeat1, + [81083] = 3, + ACTIONS(6576), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3299), 2, + ACTIONS(6574), 3, anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - [79351] = 4, - ACTIONS(6556), 1, - anon_sym_indent, - STATE(2748), 1, - sym__filetype_state, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81096] = 3, + ACTIONS(6580), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6554), 2, - anon_sym_on, - anon_sym_off, - [79366] = 4, + ACTIONS(6578), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81109] = 4, ACTIONS(771), 1, aux_sym__map_lhs_token1, - STATE(1695), 1, + STATE(1722), 1, sym__plus_plus_opt_bad, ACTIONS(3), 2, sym__line_continuation, @@ -134678,7582 +136139,7568 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(769), 2, anon_sym_keep, anon_sym_drop, - [79381] = 4, - ACTIONS(6560), 1, - anon_sym_indent, - STATE(2355), 1, - sym__filetype_state, + [81124] = 3, + STATE(1722), 1, + sym__immediate_file_format, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6558), 2, - anon_sym_on, - anon_sym_off, - [79396] = 5, - ACTIONS(6354), 1, + ACTIONS(769), 3, + anon_sym_dos, + anon_sym_unix, + anon_sym_mac, + [81137] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6562), 1, + ACTIONS(6582), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79413] = 4, - ACTIONS(6566), 1, - anon_sym_plugin, - STATE(2352), 1, + [81154] = 4, + ACTIONS(6586), 1, + anon_sym_indent, + STATE(2645), 1, sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6564), 2, + ACTIONS(6584), 2, anon_sym_on, anon_sym_off, - [79428] = 3, - STATE(1695), 1, - sym__immediate_file_format, + [81169] = 4, + ACTIONS(6588), 1, + anon_sym_BSLASH_AMP, + STATE(2211), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(769), 3, - anon_sym_dos, - anon_sym_unix, - anon_sym_mac, - [79441] = 3, - ACTIONS(6568), 1, + ACTIONS(4313), 2, + anon_sym_BSLASH_PIPE, + anon_sym_BSLASH_RPAREN, + [81184] = 3, + ACTIONS(6590), 1, sym_set_value, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6191), 3, + ACTIONS(6329), 3, sym__newline_or_pipe, sym_comment, anon_sym_, - [79454] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6288), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [79465] = 4, - ACTIONS(6570), 1, - anon_sym_BSLASH_PIPE, - STATE(2220), 1, - aux_sym_pattern_repeat1, + [81197] = 4, + ACTIONS(6594), 1, + anon_sym_plugin, + STATE(2781), 1, + sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 2, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79480] = 5, - ACTIONS(6354), 1, + ACTIONS(6592), 2, + anon_sym_on, + anon_sym_off, + [81212] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6573), 1, + ACTIONS(6596), 1, anon_sym_RBRACK, - STATE(2262), 1, + ACTIONS(6598), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2225), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79497] = 5, - ACTIONS(5497), 1, + [81229] = 5, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(6600), 1, + anon_sym_RBRACE, + ACTIONS(6602), 1, + anon_sym_COMMA, + STATE(2555), 1, + sym__literal_dictionary_entry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [81246] = 5, + ACTIONS(6604), 1, + aux_sym_option_name_token1, + ACTIONS(6606), 1, + anon_sym_t_, + ACTIONS(6608), 1, + sym_scope, + STATE(504), 1, + sym_option_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [81263] = 5, + ACTIONS(6525), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(6527), 1, aux_sym_identifier_token1, - STATE(969), 1, + STATE(583), 1, sym__curly_braces_name_expression, - STATE(2296), 1, + STATE(739), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79514] = 4, - ACTIONS(6575), 1, - anon_sym_COMMA, - STATE(2143), 1, - aux_sym__autocmd_pattern_repeat1, + [81280] = 3, + STATE(2266), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(697), 2, - sym__newline_or_pipe, - sym_comment, - [79529] = 3, - STATE(1742), 1, - sym__immediate_file_format, + ACTIONS(4473), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81293] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(765), 3, - anon_sym_dos, - anon_sym_unix, - anon_sym_mac, - [79542] = 4, - ACTIONS(6368), 1, + ACTIONS(6361), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, aux_sym__autocmd_pattern_token1, - STATE(55), 1, - sym__autocmd_pattern, + [81304] = 4, + ACTIONS(6610), 1, + anon_sym_BSLASH_PIPE, + STATE(2285), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5916), 2, + ACTIONS(4481), 2, sym__newline_or_pipe, sym_comment, - [79557] = 4, - ACTIONS(6577), 1, - anon_sym_, - STATE(2226), 1, - aux_sym_set_statement_repeat1, + [81319] = 5, + ACTIONS(6535), 1, + anon_sym_LBRACE, + ACTIONS(6537), 1, + aux_sym_identifier_token1, + STATE(183), 1, + sym__curly_braces_name_expression, + STATE(506), 1, + sym_identifier, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [81336] = 4, + ACTIONS(6612), 1, + anon_sym_COMMA, + STATE(2238), 1, + aux_sym__autocmd_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6580), 2, + ACTIONS(690), 2, sym__newline_or_pipe, sym_comment, - [79572] = 4, - ACTIONS(767), 1, + [81351] = 4, + ACTIONS(6617), 1, + aux_sym__map_rhs_statement_token3, + STATE(2151), 1, + aux_sym__map_rhs_statement_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6615), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + [81366] = 3, + ACTIONS(6621), 1, + aux_sym_command_statement_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6619), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81379] = 4, + ACTIONS(759), 1, aux_sym__map_lhs_token1, - STATE(1742), 1, + STATE(1928), 1, sym__plus_plus_opt_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(765), 2, + ACTIONS(757), 2, anon_sym_keep, anon_sym_drop, - [79587] = 4, - ACTIONS(6582), 1, - anon_sym_DOT, - STATE(2228), 1, - aux_sym_filetypes_repeat1, + [81394] = 3, + STATE(1928), 1, + sym__immediate_file_format, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6302), 2, - sym__newline_or_pipe, - sym_comment, - [79602] = 4, - ACTIONS(6368), 1, - aux_sym__autocmd_pattern_token1, - STATE(53), 1, - sym__autocmd_pattern, + ACTIONS(757), 3, + anon_sym_dos, + anon_sym_unix, + anon_sym_mac, + [81407] = 4, + ACTIONS(6625), 1, + anon_sym_indent, + STATE(2497), 1, + sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(647), 2, - sym__newline_or_pipe, - sym_comment, - [79617] = 4, - ACTIONS(6585), 1, + ACTIONS(6623), 2, + anon_sym_on, + anon_sym_off, + [81422] = 4, + ACTIONS(6629), 1, + anon_sym_plugin, + STATE(2495), 1, + sym__filetype_state, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6627), 2, + anon_sym_on, + anon_sym_off, + [81437] = 4, + ACTIONS(3733), 1, + anon_sym_LT, + ACTIONS(6631), 1, + aux_sym__hl_term_list_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + STATE(1095), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + [81452] = 4, + ACTIONS(6633), 1, aux_sym__map_rhs_statement_token3, - STATE(2198), 1, + STATE(2239), 1, aux_sym__map_rhs_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6387), 2, + ACTIONS(6615), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, - [79632] = 4, - ACTIONS(6587), 1, - anon_sym_BSLASH_AMP, - STATE(2204), 1, - aux_sym__pattern_branch_repeat1, + [81467] = 4, + ACTIONS(6475), 1, + aux_sym__autocmd_pattern_token1, + STATE(54), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4234), 2, - sym__separator, - anon_sym_BSLASH_PIPE, - [79647] = 2, + ACTIONS(630), 2, + sym__newline_or_pipe, + sym_comment, + [81482] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6328), 4, + ACTIONS(6251), 4, sym__newline_or_pipe, + sym_string_literal, sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [79658] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6591), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2215), 1, - aux_sym__pattern_ordinary_atom_repeat1, + aux_sym_command_argument_token1, + [81493] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79675] = 3, - ACTIONS(6593), 1, - sym_hl_group, + ACTIONS(6239), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + aux_sym_command_argument_token1, + [81504] = 4, + ACTIONS(6635), 1, + aux_sym__map_rhs_statement_token3, + STATE(2265), 1, + aux_sym__map_rhs_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5742), 3, + ACTIONS(6615), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79688] = 5, - ACTIONS(6595), 1, - anon_sym_LBRACE, - ACTIONS(6597), 1, - aux_sym_identifier_token1, - STATE(514), 1, - sym__curly_braces_name_expression, - STATE(518), 1, - sym_identifier, + [81519] = 5, + ACTIONS(6419), 1, + anon_sym_BSLASH, + ACTIONS(6637), 1, + anon_sym_RBRACK, + ACTIONS(6639), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2180), 1, + aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79705] = 5, - ACTIONS(6354), 1, + [81536] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, + ACTIONS(6423), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6599), 1, + ACTIONS(6641), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79722] = 3, - ACTIONS(6601), 1, - anon_sym_, + [81553] = 5, + ACTIONS(6643), 1, + sym__normal, + ACTIONS(6645), 1, + sym__source, + ACTIONS(6647), 1, + sym__global, + ACTIONS(6649), 1, + sym__call, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6603), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79735] = 3, - ACTIONS(6607), 1, - aux_sym_command_statement_token1, + [81570] = 4, + ACTIONS(3762), 1, + anon_sym_LT, + ACTIONS(6651), 1, + aux_sym__hl_term_list_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6605), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79748] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6381), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6609), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym__pattern_ordinary_atom_repeat1, + STATE(1104), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + [81585] = 5, + ACTIONS(6653), 1, + sym__normal, + ACTIONS(6655), 1, + sym__source, + ACTIONS(6657), 1, + sym__global, + ACTIONS(6659), 1, + sym__call, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79765] = 5, - ACTIONS(6354), 1, + [81602] = 5, + ACTIONS(6419), 1, anon_sym_BSLASH, - ACTIONS(6611), 1, + ACTIONS(6661), 1, anon_sym_RBRACK, - ACTIONS(6613), 1, + ACTIONS(6663), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2203), 1, + STATE(2252), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79782] = 4, - ACTIONS(6615), 1, - anon_sym_BSLASH_PIPE, - STATE(2241), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4447), 2, - sym__newline_or_pipe, - sym_comment, - [79797] = 5, - ACTIONS(6595), 1, + [81619] = 5, + ACTIONS(5508), 1, anon_sym_LBRACE, - ACTIONS(6597), 1, + ACTIONS(5538), 1, aux_sym_identifier_token1, - STATE(514), 1, + STATE(982), 1, sym__curly_braces_name_expression, - STATE(567), 1, + STATE(2550), 1, sym_identifier, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79814] = 5, - ACTIONS(6495), 1, + [81636] = 5, + ACTIONS(6415), 1, sym_literal_key, - ACTIONS(6618), 1, + ACTIONS(6665), 1, anon_sym_RBRACE, - ACTIONS(6620), 1, + ACTIONS(6667), 1, anon_sym_COMMA, - STATE(2520), 1, + STATE(2578), 1, sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79831] = 3, - STATE(2185), 1, - aux_sym_pattern_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4502), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79844] = 5, - ACTIONS(6622), 1, + [81653] = 5, + ACTIONS(6669), 1, aux_sym_option_name_token1, - ACTIONS(6624), 1, + ACTIONS(6671), 1, anon_sym_t_, - ACTIONS(6626), 1, + ACTIONS(6673), 1, sym_scope, - STATE(562), 1, + STATE(731), 1, sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79861] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(719), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - aux_sym_command_argument_token1, - [79872] = 4, - ACTIONS(6628), 1, - anon_sym_COMMA, - STATE(2247), 1, - aux_sym_parameters_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6631), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [79887] = 5, - ACTIONS(6487), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - aux_sym_identifier_token1, - STATE(504), 1, - sym__curly_braces_name_expression, - STATE(523), 1, - sym_identifier, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [79904] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6302), 4, - anon_sym_DOT, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [79915] = 5, - ACTIONS(5497), 1, + [81670] = 5, + ACTIONS(5068), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(6675), 1, aux_sym_identifier_token1, - STATE(518), 1, + STATE(535), 1, sym_identifier, - STATE(969), 1, + STATE(2067), 1, sym__curly_braces_name_expression, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [79932] = 3, - ACTIONS(6580), 1, - anon_sym_, + [81687] = 3, + ACTIONS(6677), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6297), 3, + ACTIONS(5590), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [79945] = 3, - ACTIONS(6633), 1, + [81700] = 3, + ACTIONS(6679), 1, anon_sym_, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6635), 3, + ACTIONS(6681), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [79958] = 2, + [81713] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1317), 4, + ACTIONS(1303), 4, sym__newline_or_pipe, sym_comment, anon_sym_LBRACE2, aux_sym_identifier_token2, - [79969] = 4, - ACTIONS(6537), 1, - anon_sym_, - STATE(2226), 1, - aux_sym_set_statement_repeat1, + [81724] = 3, + ACTIONS(6685), 1, + aux_sym_command_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6637), 2, - sym__newline_or_pipe, - sym_comment, - [79984] = 5, - ACTIONS(6639), 1, - aux_sym_option_name_token1, - ACTIONS(6641), 1, - anon_sym_t_, - ACTIONS(6643), 1, - sym_scope, - STATE(526), 1, - sym_option_name, + ACTIONS(6683), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81737] = 4, + ACTIONS(6687), 1, + aux_sym__map_rhs_statement_token3, + STATE(2151), 1, + aux_sym__map_rhs_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80001] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6381), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6645), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(6615), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + [81752] = 4, + ACTIONS(6689), 1, + anon_sym_BSLASH_PIPE, + STATE(2266), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80018] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6647), 1, - anon_sym_RBRACK, - ACTIONS(6649), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2265), 1, - aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(4535), 2, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81767] = 3, + ACTIONS(6692), 1, + anon_sym_, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80035] = 5, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6651), 1, - anon_sym_RBRACE, - ACTIONS(6653), 1, - anon_sym_COMMA, - STATE(2315), 1, - sym__literal_dictionary_entry, + ACTIONS(6235), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81780] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80052] = 4, - ACTIONS(6473), 1, + ACTIONS(6258), 4, + anon_sym_DOT, anon_sym_BSLASH_PIPE, - STATE(2241), 1, - aux_sym_pattern_repeat1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81791] = 4, + ACTIONS(6694), 1, + anon_sym_BSLASH_AMP, + STATE(2269), 1, + aux_sym__pattern_branch_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4478), 2, - sym__newline_or_pipe, - sym_comment, - [80067] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6655), 1, - anon_sym_RBRACK, - ACTIONS(6657), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2261), 1, - aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(3322), 2, + sym__separator, + anon_sym_BSLASH_PIPE, + [81806] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80084] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6381), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6659), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(6371), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_minlines, + anon_sym_maxlines, + [81817] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80101] = 5, - ACTIONS(6661), 1, - anon_sym_BSLASH, - ACTIONS(6664), 1, - anon_sym_RBRACK, - ACTIONS(6666), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2262), 1, - aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(690), 4, + anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [81828] = 4, + ACTIONS(6417), 1, + anon_sym_COMMA, + STATE(2238), 1, + aux_sym__autocmd_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80118] = 2, + ACTIONS(684), 2, + sym__newline_or_pipe, + sym_comment, + [81843] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1301), 4, + ACTIONS(1311), 4, sym__newline_or_pipe, sym_comment, anon_sym_LBRACE2, aux_sym_identifier_token2, - [80129] = 3, - STATE(1548), 1, - sym__immediate_file_format, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(761), 3, - anon_sym_dos, - anon_sym_unix, - anon_sym_mac, - [80142] = 5, - ACTIONS(6354), 1, + [81854] = 5, + ACTIONS(6697), 1, anon_sym_BSLASH, - ACTIONS(6381), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6669), 1, + ACTIONS(6700), 1, anon_sym_RBRACK, - STATE(2262), 1, + ACTIONS(6702), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2274), 1, aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80159] = 4, - ACTIONS(763), 1, - aux_sym__map_lhs_token1, - STATE(1548), 1, - sym__plus_plus_opt_bad, + [81871] = 4, + ACTIONS(6475), 1, + aux_sym__autocmd_pattern_token1, + STATE(55), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(761), 2, - anon_sym_keep, - anon_sym_drop, - [80174] = 4, - ACTIONS(6575), 1, - anon_sym_COMMA, - STATE(2223), 1, - aux_sym__autocmd_pattern_repeat1, + ACTIONS(5946), 2, + sym__newline_or_pipe, + sym_comment, + [81886] = 4, + ACTIONS(6705), 1, + anon_sym_, + STATE(2276), 1, + aux_sym_set_statement_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(684), 2, + ACTIONS(6692), 2, sym__newline_or_pipe, sym_comment, - [80189] = 3, - ACTIONS(6343), 1, + [81901] = 4, + ACTIONS(6475), 1, aux_sym__autocmd_pattern_token1, + STATE(56), 1, + sym__autocmd_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6345), 3, + ACTIONS(664), 2, sym__newline_or_pipe, sym_comment, - sym_au_event, - [80202] = 5, - ACTIONS(6354), 1, - anon_sym_BSLASH, - ACTIONS(6671), 1, - anon_sym_RBRACK, - ACTIONS(6673), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2236), 1, - aux_sym__pattern_ordinary_atom_repeat1, + [81916] = 4, + ACTIONS(6708), 1, + anon_sym_COMMA, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80219] = 5, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6675), 1, - anon_sym_RBRACE, - ACTIONS(6677), 1, - anon_sym_COMMA, - STATE(2322), 1, - sym__literal_dictionary_entry, + ACTIONS(6711), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [81931] = 4, + ACTIONS(6713), 1, + anon_sym_DOT, + STATE(2279), 1, + aux_sym_filetypes_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80236] = 5, - ACTIONS(6679), 1, - aux_sym_option_name_token1, - ACTIONS(6681), 1, - anon_sym_t_, - ACTIONS(6683), 1, - sym_scope, - STATE(711), 1, - sym_option_name, + ACTIONS(6258), 2, + sym__newline_or_pipe, + sym_comment, + [81946] = 4, + ACTIONS(6716), 1, + anon_sym_BSLASH_PIPE, + STATE(2280), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80253] = 5, - ACTIONS(6469), 1, - anon_sym_LBRACE, - ACTIONS(6471), 1, - aux_sym_identifier_token1, - STATE(193), 1, - sym__curly_braces_name_expression, - STATE(469), 1, - sym_identifier, + ACTIONS(4535), 2, + sym__newline_or_pipe, + sym_comment, + [81961] = 4, + ACTIONS(775), 1, + aux_sym__map_lhs_token1, + STATE(1658), 1, + sym__plus_plus_opt_bad, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80270] = 5, - ACTIONS(6419), 1, - anon_sym_LBRACE, - ACTIONS(6421), 1, - aux_sym_identifier_token1, - STATE(543), 1, - sym__curly_braces_name_expression, - STATE(710), 1, - sym_identifier, + ACTIONS(773), 2, + anon_sym_keep, + anon_sym_drop, + [81976] = 3, + STATE(1658), 1, + sym__immediate_file_format, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80287] = 4, - ACTIONS(6537), 1, - anon_sym_, - STATE(2205), 1, - aux_sym_set_statement_repeat1, + ACTIONS(773), 3, + anon_sym_dos, + anon_sym_unix, + anon_sym_mac, + [81989] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6685), 2, + ACTIONS(719), 4, sym__newline_or_pipe, + sym_string_literal, sym_comment, - [80302] = 4, - ACTIONS(6537), 1, - anon_sym_, - STATE(2254), 1, - aux_sym_set_statement_repeat1, + aux_sym_command_argument_token1, + [82000] = 5, + ACTIONS(6562), 1, + anon_sym_SEMI, + ACTIONS(6719), 1, + anon_sym_COMMA, + ACTIONS(6721), 1, + anon_sym_RBRACK, + STATE(2130), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [82017] = 4, + ACTIONS(6610), 1, + anon_sym_BSLASH_PIPE, + STATE(2280), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6687), 2, + ACTIONS(4473), 2, sym__newline_or_pipe, sym_comment, - [80317] = 2, + [82032] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6689), 3, + ACTIONS(6723), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80327] = 2, + [82042] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80337] = 2, + [82052] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6693), 3, + ACTIONS(6399), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80347] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(6697), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [82062] = 4, + ACTIONS(4473), 1, + sym__separator, + ACTIONS(6727), 1, + anon_sym_BSLASH_PIPE, + STATE(2434), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80361] = 4, - ACTIONS(6699), 1, - anon_sym_RBRACE, - ACTIONS(6701), 1, + [82076] = 4, + ACTIONS(2557), 1, anon_sym_COMMA, - STATE(2377), 1, - aux_sym_dictionnary_repeat1, + ACTIONS(6729), 1, + anon_sym_DASH_GT, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80375] = 3, - STATE(113), 1, + [82090] = 3, + STATE(3), 1, sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6703), 2, + ACTIONS(6731), 2, sym__newline_or_pipe, sym_comment, - [80387] = 4, - ACTIONS(4668), 1, - aux_sym_option_name_token1, - ACTIONS(4670), 1, - anon_sym_t_, - STATE(1838), 1, - sym_option_name, + [82102] = 4, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(6733), 1, + anon_sym_DASH_GT, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80401] = 4, - ACTIONS(2570), 1, + [82116] = 4, + ACTIONS(2557), 1, anon_sym_COMMA, - ACTIONS(6705), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + ACTIONS(6735), 1, + anon_sym_DASH_GT, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80415] = 4, - ACTIONS(5679), 1, - anon_sym_RPAREN, - ACTIONS(6707), 1, - anon_sym_COMMA, - STATE(2393), 1, - aux_sym_parameters_repeat1, + [82130] = 3, + STATE(2735), 1, + sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80429] = 2, + ACTIONS(6737), 2, + anon_sym_on, + anon_sym_off, + [82142] = 4, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(6739), 1, + anon_sym_DASH_GT, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6709), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80439] = 2, + [82156] = 4, + ACTIONS(6741), 1, + anon_sym_BANG, + ACTIONS(6743), 1, + sym__separator_first, + STATE(3220), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(651), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80449] = 2, + [82170] = 4, + ACTIONS(6745), 1, + aux_sym_normal_statement_token1, + ACTIONS(6747), 1, + anon_sym_BANG, + STATE(3054), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6711), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80459] = 4, - ACTIONS(5679), 1, - anon_sym_RPAREN, - ACTIONS(6713), 1, - anon_sym_COMMA, - STATE(2247), 1, - aux_sym_parameters_repeat2, + [82184] = 4, + ACTIONS(6741), 1, + anon_sym_BANG, + ACTIONS(6749), 1, + sym__separator_first, + STATE(3216), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80473] = 2, + [82198] = 4, + ACTIONS(6751), 1, + sym_chunk, + ACTIONS(6753), 1, + anon_sym_LT_LT, + STATE(2742), 1, + sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6715), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80483] = 4, - ACTIONS(5679), 1, - anon_sym_RPAREN, - ACTIONS(6707), 1, - anon_sym_COMMA, - STATE(2508), 1, - aux_sym_parameters_repeat1, + [82212] = 4, + ACTIONS(6741), 1, + anon_sym_BANG, + ACTIONS(6755), 1, + sym__separator_first, + STATE(3211), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80497] = 2, + [82226] = 4, + ACTIONS(6753), 1, + anon_sym_LT_LT, + ACTIONS(6757), 1, + sym_chunk, + STATE(2744), 1, + sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6717), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80507] = 2, + [82240] = 4, + ACTIONS(6753), 1, + anon_sym_LT_LT, + ACTIONS(6759), 1, + sym_chunk, + STATE(2745), 1, + sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6719), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80517] = 2, + [82254] = 4, + ACTIONS(6753), 1, + anon_sym_LT_LT, + ACTIONS(6761), 1, + sym_chunk, + STATE(2747), 1, + sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6721), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80527] = 4, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6723), 1, - anon_sym_RBRACE, - STATE(2828), 1, - sym__literal_dictionary_entry, + [82268] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(6765), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80541] = 2, + [82282] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(6767), 1, + sym__heredoc_end, + STATE(2318), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6725), 3, + [82296] = 4, + ACTIONS(4481), 1, + anon_sym_BSLASH_RPAREN, + ACTIONS(6769), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80551] = 2, + STATE(2534), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6631), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [80561] = 2, + [82310] = 4, + ACTIONS(6771), 1, + sym_filetype, + ACTIONS(6773), 1, + anon_sym_FALLBACK, + STATE(2868), 1, + sym_filetypes, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6727), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80571] = 2, + [82324] = 4, + ACTIONS(6741), 1, + anon_sym_BANG, + ACTIONS(6775), 1, + sym__separator_first, + STATE(3048), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6729), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80581] = 4, - ACTIONS(6679), 1, - aux_sym_option_name_token1, - ACTIONS(6681), 1, - anon_sym_t_, - STATE(707), 1, - sym_option_name, + [82338] = 4, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(6777), 1, + anon_sym_DASH_GT, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80595] = 4, - ACTIONS(2570), 1, + [82352] = 4, + ACTIONS(6779), 1, anon_sym_COMMA, - ACTIONS(6731), 1, + ACTIONS(6781), 1, anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + STATE(2312), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80609] = 4, - ACTIONS(6733), 1, - anon_sym_RBRACE, - ACTIONS(6735), 1, + [82366] = 4, + ACTIONS(6779), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_literal_dictionary_repeat1, + ACTIONS(6781), 1, + anon_sym_RPAREN, + STATE(2325), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80623] = 3, - STATE(6), 1, - sym__cmd_separator, + [82380] = 4, + ACTIONS(6783), 1, + anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_RPAREN, + STATE(2312), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6738), 2, - sym__newline_or_pipe, - sym_comment, - [80635] = 4, - ACTIONS(4668), 1, - aux_sym_option_name_token1, - ACTIONS(4670), 1, - anon_sym_t_, - STATE(1832), 1, - sym_option_name, + [82394] = 3, + STATE(111), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80649] = 2, + ACTIONS(6788), 2, + sym__newline_or_pipe, + sym_comment, + [82406] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6740), 3, + ACTIONS(6790), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80659] = 4, - ACTIONS(6742), 1, - anon_sym_RBRACE, - ACTIONS(6744), 1, + [82416] = 4, + ACTIONS(5724), 1, + anon_sym_RPAREN, + ACTIONS(6792), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_literal_dictionary_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [80673] = 4, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6746), 1, - anon_sym_RBRACE, - STATE(2828), 1, - sym__literal_dictionary_entry, + STATE(2310), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80687] = 4, - ACTIONS(1519), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, + [82430] = 4, + ACTIONS(2572), 1, anon_sym_COMMA, - STATE(2103), 1, + ACTIONS(6794), 1, + anon_sym_RPAREN, + STATE(2130), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80701] = 4, - ACTIONS(6750), 1, - anon_sym_COMMA, - ACTIONS(6752), 1, - anon_sym_RPAREN, - STATE(2508), 1, - aux_sym_parameters_repeat1, + [82444] = 3, + ACTIONS(6543), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80715] = 4, - ACTIONS(1315), 1, - anon_sym_RBRACE, - ACTIONS(6754), 1, + ACTIONS(6711), 2, anon_sym_COMMA, - STATE(2327), 1, - aux_sym_dictionnary_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [80729] = 4, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6756), 1, - anon_sym_RBRACE, - STATE(2828), 1, - sym__literal_dictionary_entry, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [80743] = 4, - ACTIONS(3764), 1, - aux_sym__plus_cmd_arg_token1, - ACTIONS(6758), 1, - anon_sym_BSLASH2, - STATE(1346), 1, - aux_sym__plus_cmd_arg, + anon_sym_RPAREN, + [82456] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(6796), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80757] = 3, - ACTIONS(6760), 1, - aux_sym_command_statement_token1, + [82470] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(6798), 1, + sym__heredoc_end, + STATE(2326), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6762), 2, - sym__newline_or_pipe, - sym_comment, - [80769] = 2, + [82484] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6764), 3, + ACTIONS(6800), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80779] = 2, + [82494] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6764), 3, + ACTIONS(6802), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80789] = 4, - ACTIONS(6766), 1, - anon_sym_RBRACE, - ACTIONS(6768), 1, + [82504] = 4, + ACTIONS(5724), 1, + anon_sym_RPAREN, + ACTIONS(6792), 1, anon_sym_COMMA, - STATE(2305), 1, - aux_sym_literal_dictionary_repeat1, + STATE(2312), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80803] = 2, + [82518] = 3, + STATE(108), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6770), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80813] = 2, + ACTIONS(6804), 2, + sym__newline_or_pipe, + sym_comment, + [82530] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6772), 3, + ACTIONS(6806), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80823] = 4, - ACTIONS(6639), 1, - aux_sym_option_name_token1, - ACTIONS(6641), 1, - anon_sym_t_, - STATE(528), 1, - sym_option_name, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [80837] = 2, + [82540] = 4, + ACTIONS(6808), 1, + anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_RPAREN, + STATE(2312), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6774), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [80847] = 4, - ACTIONS(6776), 1, - anon_sym_RBRACE, - ACTIONS(6778), 1, - anon_sym_COMMA, - STATE(2309), 1, - aux_sym_dictionnary_repeat1, + [82554] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(6812), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80861] = 4, - ACTIONS(2325), 1, + [82568] = 4, + ACTIONS(2353), 1, anon_sym_EQ_LT_LT, - ACTIONS(6780), 1, + ACTIONS(6814), 1, anon_sym_EQ, - STATE(2762), 1, + STATE(2853), 1, sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80875] = 4, - ACTIONS(6782), 1, - anon_sym_RBRACE, - ACTIONS(6784), 1, - anon_sym_COMMA, - STATE(2421), 1, - aux_sym_literal_dictionary_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [80889] = 2, + [82582] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6786), 3, + ACTIONS(6816), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80899] = 3, - ACTIONS(1317), 1, - anon_sym_LBRACE2, + [82592] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1319), 2, - anon_sym_in, - aux_sym_identifier_token2, - [80911] = 2, + ACTIONS(6818), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [82602] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6788), 3, + ACTIONS(6820), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80921] = 2, + [82612] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6790), 3, + ACTIONS(6822), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80931] = 4, - ACTIONS(6792), 1, - anon_sym_RBRACE, - ACTIONS(6794), 1, - anon_sym_COMMA, - STATE(2327), 1, - aux_sym_dictionnary_repeat1, + [82622] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80945] = 2, + ACTIONS(6824), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [82632] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6797), 3, + ACTIONS(6826), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80955] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(6799), 1, - sym__heredoc_end, - STATE(2554), 1, - aux_sym_script_repeat1, + [82642] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [80969] = 2, + ACTIONS(6828), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [82652] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5841), 3, + ACTIONS(6830), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80979] = 2, + [82662] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6801), 3, + ACTIONS(6832), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [80989] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(6803), 1, - sym__heredoc_end, - STATE(2279), 1, - aux_sym_script_repeat1, + [82672] = 3, + STATE(6), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81003] = 2, + ACTIONS(6834), 2, + sym__newline_or_pipe, + sym_comment, + [82684] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6805), 3, + ACTIONS(6836), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81013] = 2, + [82694] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6807), 3, + ACTIONS(6838), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81023] = 2, + [82704] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6809), 3, + ACTIONS(6840), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81033] = 2, + [82714] = 4, + ACTIONS(3863), 1, + anon_sym_BSLASH2, + ACTIONS(3865), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1497), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6811), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81043] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(6813), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [82728] = 3, + ACTIONS(6842), 1, + aux_sym_command_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81057] = 3, - STATE(105), 1, - sym__cmd_separator, + ACTIONS(6844), 2, + sym__newline_or_pipe, + sym_comment, + [82740] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6815), 2, - sym__newline_or_pipe, - sym_comment, - [81069] = 4, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(6817), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + ACTIONS(6846), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [82750] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81083] = 4, - ACTIONS(6819), 1, - sym__heredoc_line, - ACTIONS(6822), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + ACTIONS(6848), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [82760] = 3, + ACTIONS(6850), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81097] = 2, + ACTIONS(6570), 2, + sym__newline_or_pipe, + sym_comment, + [82772] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6824), 3, + ACTIONS(6852), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81107] = 2, + [82782] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3969), 3, + ACTIONS(6854), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81117] = 2, + [82792] = 3, + STATE(2753), 1, + sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4846), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81127] = 2, + ACTIONS(6856), 2, + anon_sym_on, + anon_sym_off, + [82804] = 4, + ACTIONS(6858), 1, + aux_sym_argument_token2, + ACTIONS(6860), 1, + anon_sym_PERCENT2, + STATE(1531), 1, + sym__command_attribute_range_value, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6826), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81137] = 2, + [82818] = 3, + STATE(107), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3916), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81147] = 2, + ACTIONS(6862), 2, + sym__newline_or_pipe, + sym_comment, + [82830] = 3, + STATE(117), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6828), 3, + ACTIONS(6864), 2, + sym__newline_or_pipe, + sym_comment, + [82842] = 3, + ACTIONS(6866), 1, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6574), 2, + sym__newline_or_pipe, + sym_comment, + [82854] = 3, + ACTIONS(6868), 1, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6578), 2, + sym__newline_or_pipe, + sym_comment, + [82866] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6870), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81157] = 2, + [82876] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6830), 3, + ACTIONS(6872), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81167] = 2, + [82886] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6832), 3, + ACTIONS(6874), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81177] = 2, + [82896] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6834), 3, + ACTIONS(6876), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81187] = 2, + [82906] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6836), 3, + ACTIONS(6878), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81197] = 3, - STATE(117), 1, - sym__cmd_separator, + [82916] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6838), 2, - sym__newline_or_pipe, - sym_comment, - [81209] = 2, + ACTIONS(6880), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [82926] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6840), 3, + ACTIONS(6882), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81219] = 3, - ACTIONS(6842), 1, - sym_hl_group, + [82936] = 3, + STATE(103), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5742), 2, + ACTIONS(6884), 2, sym__newline_or_pipe, sym_comment, - [81231] = 3, - STATE(2367), 1, - sym__filetype_state, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6844), 2, - anon_sym_on, - anon_sym_off, - [81243] = 2, + [82948] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6846), 3, + ACTIONS(6886), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81253] = 3, - STATE(2362), 1, - sym__filetype_state, + [82958] = 4, + ACTIONS(6497), 1, + aux_sym_option_name_token1, + ACTIONS(6499), 1, + anon_sym_t_, + STATE(267), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6848), 2, - anon_sym_on, - anon_sym_off, - [81265] = 2, + [82972] = 3, + STATE(1531), 1, + sym__command_attribute_nargs_value, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6850), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81275] = 2, + ACTIONS(6860), 2, + aux_sym__command_attribute_nargs_value_token1, + aux_sym__command_attribute_nargs_value_token2, + [82984] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6852), 3, + ACTIONS(6888), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81285] = 2, + [82994] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6854), 3, + ACTIONS(6890), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81295] = 4, - ACTIONS(3813), 1, - anon_sym_BSLASH2, - ACTIONS(3815), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1387), 1, - aux_sym__plus_cmd_arg, + [83004] = 4, + ACTIONS(6747), 1, + anon_sym_BANG, + ACTIONS(6892), 1, + aux_sym_normal_statement_token1, + STATE(2928), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81309] = 4, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(6856), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + [83018] = 3, + ACTIONS(6894), 1, + aux_sym__pattern_ordinary_atom_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81323] = 2, + ACTIONS(6700), 2, + anon_sym_BSLASH, + anon_sym_RBRACK, + [83030] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6858), 3, + ACTIONS(6896), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81333] = 2, + [83040] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6860), 3, + ACTIONS(6898), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81343] = 2, + [83050] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6862), 3, + ACTIONS(6900), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81353] = 4, - ACTIONS(3845), 1, - aux_sym__plus_cmd_arg_token1, - ACTIONS(6864), 1, - anon_sym_BSLASH2, - STATE(1430), 1, - aux_sym__plus_cmd_arg, + [83060] = 4, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(6902), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81367] = 2, + [83074] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6866), 3, + ACTIONS(6904), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81377] = 2, + [83084] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6868), 3, + ACTIONS(6906), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81387] = 2, + [83094] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6870), 3, + ACTIONS(6908), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81397] = 2, + [83104] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6872), 3, + ACTIONS(6910), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81407] = 2, + [83114] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6874), 3, + ACTIONS(6912), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81417] = 4, - ACTIONS(5778), 1, - anon_sym_RPAREN, - ACTIONS(6876), 1, - anon_sym_COMMA, - STATE(2290), 1, - aux_sym_parameters_repeat1, + [83124] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81431] = 4, - ACTIONS(4502), 1, - anon_sym_BSLASH_RPAREN, - ACTIONS(6878), 1, + ACTIONS(6914), 3, anon_sym_BSLASH_PIPE, - STATE(2564), 1, - aux_sym_pattern_repeat1, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83134] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81445] = 3, - STATE(101), 1, - sym__cmd_separator, + ACTIONS(6916), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83144] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6880), 2, - sym__newline_or_pipe, - sym_comment, - [81457] = 2, + ACTIONS(6918), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83154] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6882), 3, + ACTIONS(6920), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81467] = 2, + [83164] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6884), 3, + ACTIONS(6922), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81477] = 2, + [83174] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5742), 3, + ACTIONS(6886), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81487] = 4, - ACTIONS(1313), 1, - anon_sym_RBRACE, - ACTIONS(6886), 1, + [83184] = 4, + ACTIONS(2572), 1, anon_sym_COMMA, - STATE(2327), 1, - aux_sym_dictionnary_repeat1, + ACTIONS(6924), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [83198] = 4, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(6926), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81501] = 2, + [83212] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6888), 3, + ACTIONS(6928), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81511] = 2, + [83222] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6890), 3, + ACTIONS(6930), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81521] = 2, + [83232] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6892), 3, + ACTIONS(6932), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81531] = 2, + [83242] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6894), 3, + ACTIONS(6934), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81541] = 2, + [83252] = 4, + ACTIONS(6741), 1, + anon_sym_BANG, + ACTIONS(6936), 1, + sym__separator_first, + STATE(2918), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6896), 3, + [83266] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6938), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81551] = 2, + [83276] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6898), 3, + ACTIONS(6940), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81561] = 2, + [83286] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4611), 3, + ACTIONS(6942), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81571] = 2, + [83296] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6900), 3, + ACTIONS(6944), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81581] = 2, + [83306] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6902), 3, + ACTIONS(6946), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81591] = 2, + [83316] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6904), 3, + ACTIONS(6948), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81601] = 4, - ACTIONS(6906), 1, + [83326] = 4, + ACTIONS(6950), 1, + anon_sym_RBRACE, + ACTIONS(6952), 1, anon_sym_COMMA, - ACTIONS(6908), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym_parameters_repeat1, + STATE(2493), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81615] = 4, - ACTIONS(6906), 1, + [83340] = 4, + ACTIONS(6954), 1, + anon_sym_RBRACE, + ACTIONS(6956), 1, anon_sym_COMMA, - ACTIONS(6908), 1, - anon_sym_RPAREN, - STATE(2508), 1, - aux_sym_parameters_repeat1, + STATE(2493), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81629] = 2, + [83354] = 4, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(6958), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6910), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81639] = 3, - STATE(111), 1, - sym__cmd_separator, + [83368] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6912), 2, - sym__newline_or_pipe, - sym_comment, - [81651] = 2, + ACTIONS(6960), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83378] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 3, + ACTIONS(6962), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81661] = 4, - ACTIONS(5604), 1, - anon_sym_RPAREN, - ACTIONS(6914), 1, + [83388] = 4, + ACTIONS(1389), 1, + anon_sym_RBRACK, + ACTIONS(6964), 1, anon_sym_COMMA, - STATE(2508), 1, - aux_sym_parameters_repeat1, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81675] = 2, + [83402] = 4, + ACTIONS(1361), 1, + anon_sym_RBRACE, + ACTIONS(6966), 1, + anon_sym_COMMA, + STATE(2415), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6916), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81685] = 2, + [83416] = 4, + ACTIONS(3875), 1, + aux_sym__plus_cmd_arg_token1, + ACTIONS(6968), 1, + anon_sym_BSLASH2, + STATE(1499), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6918), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81695] = 2, + [83430] = 3, + ACTIONS(1311), 1, + anon_sym_LBRACE2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6920), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81705] = 2, + ACTIONS(1313), 2, + anon_sym_in, + aux_sym_identifier_token2, + [83442] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(809), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81715] = 2, + ACTIONS(6711), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [83452] = 4, + ACTIONS(6970), 1, + anon_sym_RBRACE, + ACTIONS(6972), 1, + anon_sym_COMMA, + STATE(2398), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6922), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81725] = 4, - ACTIONS(4478), 1, - sym__separator, - ACTIONS(6924), 1, - anon_sym_BSLASH_PIPE, - STATE(2488), 1, - aux_sym_pattern_repeat1, + [83466] = 4, + ACTIONS(4800), 1, + aux_sym_option_name_token1, + ACTIONS(4802), 1, + anon_sym_t_, + STATE(1833), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81739] = 4, - ACTIONS(6926), 1, - aux_sym_normal_statement_token1, - ACTIONS(6928), 1, - anon_sym_BANG, - STATE(2923), 1, - sym_bang, + [83480] = 4, + ACTIONS(6529), 1, + aux_sym_option_name_token1, + ACTIONS(6531), 1, + anon_sym_t_, + STATE(699), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81753] = 2, + [83494] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4712), 3, + ACTIONS(6974), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81763] = 2, + [83504] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6930), 3, + ACTIONS(6976), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81773] = 2, + [83514] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6932), 3, + ACTIONS(6974), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81783] = 2, + [83524] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(647), 3, + ACTIONS(6976), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81793] = 3, - ACTIONS(6528), 1, - anon_sym_EQ, + [83534] = 4, + ACTIONS(6978), 1, + anon_sym_RBRACE, + ACTIONS(6980), 1, + anon_sym_COMMA, + STATE(2403), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6631), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81805] = 4, - ACTIONS(2570), 1, + [83548] = 4, + ACTIONS(6982), 1, + anon_sym_RBRACE, + ACTIONS(6984), 1, anon_sym_COMMA, - ACTIONS(6934), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + STATE(2415), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81819] = 2, + [83562] = 4, + ACTIONS(4800), 1, + aux_sym_option_name_token1, + ACTIONS(4802), 1, + anon_sym_t_, + STATE(1831), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6936), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [81829] = 2, + [83576] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5916), 3, + ACTIONS(6987), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81839] = 4, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(6940), 1, - sym__separator_first, - STATE(2918), 1, - sym_bang, + [83586] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81853] = 4, - ACTIONS(5604), 1, - anon_sym_RPAREN, - ACTIONS(6914), 1, - anon_sym_COMMA, - STATE(2389), 1, - aux_sym_parameters_repeat1, + ACTIONS(4891), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83596] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81867] = 2, + ACTIONS(6989), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83606] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6942), 3, + ACTIONS(6991), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81877] = 4, - ACTIONS(1477), 1, - anon_sym_RBRACK, - ACTIONS(6944), 1, - anon_sym_COMMA, - STATE(2103), 1, - aux_sym_list_repeat1, + [83616] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81891] = 2, + ACTIONS(6258), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_DOT, + [83626] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6946), 3, + ACTIONS(4564), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81901] = 2, + [83636] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6948), 3, + ACTIONS(6993), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81911] = 4, - ACTIONS(6495), 1, + [83646] = 4, + ACTIONS(6415), 1, sym_literal_key, - ACTIONS(6950), 1, + ACTIONS(6995), 1, anon_sym_RBRACE, - STATE(2828), 1, + STATE(2860), 1, sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81925] = 3, - STATE(2751), 1, - sym__filetype_state, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6952), 2, - anon_sym_on, - anon_sym_off, - [81937] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6302), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_DOT, - [81947] = 2, + [83660] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6954), 3, + ACTIONS(6997), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [81957] = 4, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(6956), 1, - anon_sym_RBRACE, - STATE(2828), 1, - sym__literal_dictionary_entry, + [83670] = 4, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(6999), 1, + anon_sym_DASH_GT, + STATE(2278), 1, + aux_sym_parameters_repeat2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81971] = 3, - STATE(115), 1, - sym__cmd_separator, + [83684] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6958), 2, - sym__newline_or_pipe, - sym_comment, - [81983] = 4, - ACTIONS(6960), 1, + ACTIONS(7001), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83694] = 4, + ACTIONS(1307), 1, anon_sym_RBRACE, - ACTIONS(6962), 1, + ACTIONS(7003), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_literal_dictionary_repeat1, + STATE(2415), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [81997] = 2, + [83708] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6964), 3, + ACTIONS(7005), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82007] = 2, + [83718] = 4, + ACTIONS(1495), 1, + anon_sym_RBRACK, + ACTIONS(6719), 1, + anon_sym_COMMA, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6580), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_, - [82017] = 2, + [83732] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6633), 3, + ACTIONS(6692), 3, sym__newline_or_pipe, sym_comment, anon_sym_, - [82027] = 2, + [83742] = 4, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(7007), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6966), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82037] = 4, - ACTIONS(4502), 1, + [83756] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6388), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + [83766] = 4, + ACTIONS(4535), 1, sym__separator, - ACTIONS(6924), 1, + ACTIONS(7009), 1, anon_sym_BSLASH_PIPE, - STATE(2399), 1, + STATE(2434), 1, aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82051] = 2, + [83780] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6968), 3, + ACTIONS(7012), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82061] = 4, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(6970), 1, - anon_sym_DASH_GT, - STATE(2247), 1, - aux_sym_parameters_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [82075] = 4, - ACTIONS(6972), 1, - anon_sym_RBRACE, - ACTIONS(6974), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_literal_dictionary_repeat1, + [83790] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82089] = 4, - ACTIONS(1305), 1, - anon_sym_RBRACE, - ACTIONS(6976), 1, + ACTIONS(5906), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [83800] = 4, + ACTIONS(2572), 1, anon_sym_COMMA, - STATE(2327), 1, - aux_sym_dictionnary_repeat1, + ACTIONS(7014), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82103] = 2, + [83814] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6978), 3, + ACTIONS(7016), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82113] = 2, + [83824] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4028), 3, + ACTIONS(4760), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82123] = 2, + [83834] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4030), 3, + ACTIONS(7018), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82133] = 2, + [83844] = 4, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(7020), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6980), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82143] = 2, + [83858] = 4, + ACTIONS(5758), 1, + anon_sym_RPAREN, + ACTIONS(7022), 1, + anon_sym_COMMA, + STATE(2322), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6982), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82153] = 4, - ACTIONS(6495), 1, + [83872] = 4, + ACTIONS(5758), 1, + anon_sym_RPAREN, + ACTIONS(7024), 1, + anon_sym_COMMA, + STATE(2278), 1, + aux_sym_parameters_repeat2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [83886] = 4, + ACTIONS(5758), 1, + anon_sym_RPAREN, + ACTIONS(7022), 1, + anon_sym_COMMA, + STATE(2312), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [83900] = 4, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(7026), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [83914] = 4, + ACTIONS(6415), 1, sym_literal_key, - ACTIONS(6984), 1, + ACTIONS(7028), 1, anon_sym_RBRACE, - STATE(2828), 1, + STATE(2860), 1, sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82167] = 4, - ACTIONS(6695), 1, + [83928] = 4, + ACTIONS(6763), 1, sym__heredoc_line, - ACTIONS(6986), 1, + ACTIONS(7030), 1, sym__heredoc_end, - STATE(2605), 1, + STATE(2565), 1, aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82181] = 2, + [83942] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3912), 3, + ACTIONS(7032), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82191] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6988), 3, + [83952] = 4, + ACTIONS(4535), 1, + anon_sym_BSLASH_RPAREN, + ACTIONS(7034), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82201] = 2, + STATE(2449), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6990), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82211] = 4, - ACTIONS(1457), 1, - anon_sym_RBRACK, - ACTIONS(6992), 1, + [83966] = 4, + ACTIONS(2572), 1, anon_sym_COMMA, - STATE(2103), 1, + ACTIONS(7037), 1, + anon_sym_RPAREN, + STATE(2130), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82225] = 2, + [83980] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6994), 3, + ACTIONS(7039), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82235] = 2, + [83990] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6996), 3, + ACTIONS(7041), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82245] = 2, + [84000] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6998), 3, + ACTIONS(630), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82255] = 4, - ACTIONS(1337), 1, - anon_sym_RBRACE, - ACTIONS(7000), 1, - anon_sym_COMMA, - STATE(2327), 1, - aux_sym_dictionnary_repeat1, + [84010] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7043), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84020] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82269] = 2, + ACTIONS(7045), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84030] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4876), 3, + ACTIONS(7047), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82279] = 2, + [84040] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6964), 3, + ACTIONS(7049), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82289] = 4, - ACTIONS(1523), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - STATE(2103), 1, - aux_sym_list_repeat1, + [84050] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82303] = 2, + ACTIONS(7051), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84060] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 3, + ACTIONS(7053), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82313] = 4, - ACTIONS(3949), 1, - anon_sym_BSLASH2, - ACTIONS(3951), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1538), 1, - aux_sym__plus_cmd_arg, + [84070] = 4, + ACTIONS(7055), 1, + anon_sym_RBRACE, + ACTIONS(7057), 1, + anon_sym_COMMA, + STATE(2493), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82327] = 4, - ACTIONS(6495), 1, + [84084] = 4, + ACTIONS(6415), 1, sym_literal_key, - ACTIONS(7002), 1, + ACTIONS(7059), 1, anon_sym_RBRACE, - STATE(2828), 1, + STATE(2860), 1, sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82341] = 2, + [84098] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7061), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82351] = 4, - ACTIONS(2570), 1, + [84108] = 4, + ACTIONS(1485), 1, + anon_sym_RBRACK, + ACTIONS(7063), 1, anon_sym_COMMA, - ACTIONS(7006), 1, - anon_sym_RPAREN, - STATE(2103), 1, + STATE(2130), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82365] = 2, + [84122] = 3, + STATE(104), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82375] = 4, - ACTIONS(7008), 1, + ACTIONS(7065), 2, + sym__newline_or_pipe, + sym_comment, + [84134] = 4, + ACTIONS(1315), 1, anon_sym_RBRACE, - ACTIONS(7010), 1, + ACTIONS(7067), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_literal_dictionary_repeat1, + STATE(2415), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82389] = 2, + [84148] = 4, + ACTIONS(3816), 1, + aux_sym__plus_cmd_arg_token1, + ACTIONS(7069), 1, + anon_sym_BSLASH2, + STATE(1371), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6968), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82399] = 3, - STATE(2749), 1, - sym__filetype_state, + [84162] = 3, + ACTIONS(7071), 1, + aux_sym_command_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7012), 2, - anon_sym_on, - anon_sym_off, - [82411] = 2, + ACTIONS(7073), 2, + sym__newline_or_pipe, + sym_comment, + [84174] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7014), 3, + ACTIONS(7075), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82421] = 2, + [84184] = 4, + ACTIONS(7077), 1, + anon_sym_RBRACE, + ACTIONS(7079), 1, + anon_sym_COMMA, + STATE(2460), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7016), 3, + [84198] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7081), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82431] = 2, + [84208] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7083), 1, + sym__heredoc_end, + STATE(2304), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6601), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_, - [82441] = 2, + [84222] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7018), 3, + ACTIONS(7085), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82451] = 2, + [84232] = 4, + ACTIONS(6564), 1, + aux_sym_option_name_token1, + ACTIONS(6566), 1, + anon_sym_t_, + STATE(536), 1, + sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7020), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82461] = 2, + [84246] = 4, + ACTIONS(7087), 1, + anon_sym_RBRACE, + ACTIONS(7089), 1, + anon_sym_COMMA, + STATE(2465), 1, + aux_sym_dictionnary_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [84260] = 4, + ACTIONS(7091), 1, + sym__heredoc_line, + ACTIONS(7094), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [84274] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7020), 3, + ACTIONS(5965), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82471] = 4, - ACTIONS(4447), 1, - anon_sym_BSLASH_RPAREN, - ACTIONS(7022), 1, - anon_sym_BSLASH_PIPE, - STATE(2464), 1, - aux_sym_pattern_repeat1, + [84284] = 3, + ACTIONS(2411), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82485] = 2, + ACTIONS(2413), 2, + anon_sym_in, + anon_sym_EQ_LT_LT, + [84296] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7020), 3, + ACTIONS(7096), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82495] = 4, - ACTIONS(7025), 1, - anon_sym_RBRACE, - ACTIONS(7027), 1, - anon_sym_COMMA, - STATE(2429), 1, - aux_sym_literal_dictionary_repeat1, + [84306] = 3, + ACTIONS(2451), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82509] = 3, - ACTIONS(1301), 1, + ACTIONS(2453), 2, + anon_sym_in, + anon_sym_EQ_LT_LT, + [84318] = 3, + ACTIONS(1303), 1, anon_sym_LBRACE2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(1303), 2, + ACTIONS(1305), 2, anon_sym_in, aux_sym_identifier_token2, - [82521] = 4, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(7029), 1, - anon_sym_RBRACE, - STATE(2828), 1, - sym__literal_dictionary_entry, + [84330] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82535] = 3, - ACTIONS(2419), 1, - anon_sym_EQ, + ACTIONS(7098), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84340] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2421), 2, - anon_sym_in, - anon_sym_EQ_LT_LT, - [82547] = 2, + ACTIONS(7100), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84350] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7031), 3, + ACTIONS(7102), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82557] = 2, + [84360] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7031), 3, + ACTIONS(7104), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82567] = 2, + [84370] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7031), 3, + ACTIONS(7106), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82577] = 2, + [84380] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7033), 3, + ACTIONS(7108), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82587] = 2, + [84390] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7035), 3, + ACTIONS(7110), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82597] = 2, + [84400] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7037), 3, + ACTIONS(4156), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82607] = 2, + [84410] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7039), 3, + ACTIONS(4857), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82617] = 2, + [84420] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7041), 3, + ACTIONS(7112), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82627] = 2, + [84430] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7043), 3, + ACTIONS(3986), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82637] = 2, + [84440] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7045), 3, + ACTIONS(7114), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82647] = 2, + [84450] = 4, + ACTIONS(7116), 1, + anon_sym_RBRACE, + ACTIONS(7118), 1, + anon_sym_COMMA, + STATE(2493), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7047), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82657] = 2, + [84464] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7049), 3, + ACTIONS(7121), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82667] = 2, + [84474] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7051), 3, + ACTIONS(7123), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82677] = 4, - ACTIONS(6497), 1, - aux_sym_option_name_token1, - ACTIONS(6499), 1, - anon_sym_t_, - STATE(453), 1, - sym_option_name, + [84484] = 3, + STATE(2425), 1, + sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82691] = 2, + ACTIONS(7125), 2, + anon_sym_on, + anon_sym_off, + [84496] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7053), 3, + ACTIONS(7127), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82701] = 4, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(7055), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [82715] = 4, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(7057), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [82729] = 4, - ACTIONS(7059), 1, - anon_sym_RBRACE, - ACTIONS(7061), 1, - anon_sym_COMMA, - STATE(2445), 1, - aux_sym_dictionnary_repeat1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [82743] = 4, - ACTIONS(4447), 1, - sym__separator, - ACTIONS(7063), 1, - anon_sym_BSLASH_PIPE, - STATE(2488), 1, - aux_sym_pattern_repeat1, + [84506] = 3, + STATE(2427), 1, + sym__filetype_state, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82757] = 2, + ACTIONS(7129), 2, + anon_sym_on, + anon_sym_off, + [84518] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7066), 3, + ACTIONS(7131), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82767] = 2, + [84528] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7068), 3, + ACTIONS(7133), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82777] = 2, + [84538] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7135), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82787] = 2, + [84548] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7070), 3, + ACTIONS(7137), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82797] = 2, + [84558] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7072), 3, + ACTIONS(7139), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82807] = 4, - ACTIONS(6928), 1, + [84568] = 4, + ACTIONS(6747), 1, anon_sym_BANG, - ACTIONS(7074), 1, + ACTIONS(7141), 1, aux_sym_normal_statement_token1, - STATE(3024), 1, + STATE(2987), 1, sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82821] = 4, - ACTIONS(7076), 1, + [84582] = 4, + ACTIONS(7143), 1, sym_chunk, - ACTIONS(7078), 1, + ACTIONS(7145), 1, anon_sym_LT_LT, - STATE(2613), 1, + STATE(2456), 1, sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82835] = 4, - ACTIONS(7078), 1, + [84596] = 4, + ACTIONS(7145), 1, anon_sym_LT_LT, - ACTIONS(7080), 1, + ACTIONS(7147), 1, sym_chunk, - STATE(2611), 1, + STATE(2592), 1, sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82849] = 4, - ACTIONS(7078), 1, + [84610] = 4, + ACTIONS(7145), 1, anon_sym_LT_LT, - ACTIONS(7082), 1, + ACTIONS(7149), 1, sym_chunk, - STATE(2607), 1, + STATE(2468), 1, sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82863] = 4, - ACTIONS(7078), 1, + [84624] = 4, + ACTIONS(7145), 1, anon_sym_LT_LT, - ACTIONS(7084), 1, + ACTIONS(7151), 1, sym_chunk, - STATE(2606), 1, + STATE(2470), 1, sym_script, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82877] = 4, - ACTIONS(2552), 1, + [84638] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7153), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84648] = 4, + ACTIONS(2572), 1, anon_sym_COMMA, - ACTIONS(7086), 1, - anon_sym_DASH_GT, - STATE(2247), 1, - aux_sym_parameters_repeat2, + ACTIONS(7155), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82891] = 2, + [84662] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7157), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82901] = 2, + [84672] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7088), 3, + ACTIONS(7159), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82911] = 2, + [84682] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7161), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82921] = 4, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(7090), 1, - anon_sym_DASH_GT, - STATE(2247), 1, - aux_sym_parameters_repeat2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [82935] = 2, + [84692] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7163), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82945] = 2, + [84702] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7165), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [82955] = 4, - ACTIONS(7092), 1, + [84712] = 4, + ACTIONS(7167), 1, sym_filetype, - ACTIONS(7094), 1, + ACTIONS(7169), 1, anon_sym_FALLBACK, - STATE(2482), 1, + STATE(2593), 1, sym_filetypes, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82969] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7096), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [82979] = 4, - ACTIONS(7098), 1, - anon_sym_COMMA, - ACTIONS(7101), 1, - anon_sym_RPAREN, - STATE(2508), 1, - aux_sym_parameters_repeat1, + [84726] = 3, + STATE(14), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [82993] = 2, + ACTIONS(7171), 2, + sym__newline_or_pipe, + sym_comment, + [84738] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7173), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83003] = 2, + [84748] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7103), 3, + ACTIONS(5590), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83013] = 2, + [84758] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7175), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83023] = 2, + [84768] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7177), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83033] = 2, + [84778] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7105), 3, + ACTIONS(7179), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83043] = 2, + [84788] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7181), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83053] = 2, + [84798] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7183), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83063] = 2, + [84808] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 3, + ACTIONS(7185), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83073] = 3, - ACTIONS(2411), 1, - anon_sym_EQ, + [84818] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(2413), 2, - anon_sym_in, - anon_sym_EQ_LT_LT, - [83085] = 2, + ACTIONS(7187), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [84828] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7107), 3, + ACTIONS(7189), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83095] = 2, + [84838] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7109), 3, + ACTIONS(7191), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83105] = 4, - ACTIONS(7111), 1, + [84848] = 4, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(7193), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [84862] = 4, + ACTIONS(7195), 1, anon_sym_RBRACE, - ACTIONS(7113), 1, + ACTIONS(7197), 1, anon_sym_COMMA, - STATE(2455), 1, + STATE(2397), 1, aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83119] = 2, + [84876] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7115), 3, + ACTIONS(6818), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83129] = 2, + [84886] = 4, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(7199), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7117), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [83139] = 2, + [84900] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7119), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83149] = 3, - ACTIONS(7121), 1, - aux_sym__pattern_ordinary_atom_token1, + [84910] = 4, + ACTIONS(4473), 1, + anon_sym_BSLASH_RPAREN, + ACTIONS(6769), 1, + anon_sym_BSLASH_PIPE, + STATE(2449), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6664), 2, - anon_sym_BSLASH, - anon_sym_RBRACK, - [83161] = 2, + [84924] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7123), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83171] = 2, + [84934] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7125), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83181] = 4, - ACTIONS(2369), 1, + [84944] = 4, + ACTIONS(2367), 1, anon_sym_EQ_LT_LT, - ACTIONS(7127), 1, + ACTIONS(7201), 1, anon_sym_EQ, - STATE(2413), 1, + STATE(2576), 1, sym__let_heredoc, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83195] = 2, + [84958] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7129), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83205] = 4, - ACTIONS(6481), 1, - aux_sym_option_name_token1, - ACTIONS(6483), 1, - anon_sym_t_, - STATE(446), 1, - sym_option_name, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [83219] = 4, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(7131), 1, - sym__separator_first, - STATE(2863), 1, - sym_bang, + [84968] = 4, + ACTIONS(7203), 1, + anon_sym_RBRACE, + ACTIONS(7205), 1, + anon_sym_COMMA, + STATE(2493), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83233] = 2, + [84982] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6514), 3, + ACTIONS(7207), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83243] = 2, + [84992] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7133), 3, + ACTIONS(7209), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83253] = 3, - STATE(1549), 1, - sym__command_attribute_nargs_value, + [85002] = 4, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(7211), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7135), 2, - aux_sym__command_attribute_nargs_value_token1, - aux_sym__command_attribute_nargs_value_token2, - [83265] = 2, + [85016] = 4, + ACTIONS(1407), 1, + anon_sym_RBRACK, + ACTIONS(7213), 1, + anon_sym_COMMA, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7137), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [83275] = 2, + [85030] = 4, + ACTIONS(1277), 1, + anon_sym_RBRACE, + ACTIONS(7215), 1, + anon_sym_COMMA, + STATE(2415), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7139), 3, + [85044] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7217), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83285] = 4, - ACTIONS(4720), 1, + [85054] = 4, + ACTIONS(4740), 1, aux_sym_option_name_token1, - ACTIONS(4722), 1, + ACTIONS(4742), 1, anon_sym_t_, - STATE(1721), 1, + STATE(1788), 1, sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83299] = 4, - ACTIONS(4720), 1, + [85068] = 4, + ACTIONS(4740), 1, aux_sym_option_name_token1, - ACTIONS(4722), 1, + ACTIONS(4742), 1, anon_sym_t_, - STATE(1719), 1, + STATE(1711), 1, sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83313] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7141), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [85082] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83327] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7143), 1, - sym__heredoc_end, - STATE(2538), 1, - aux_sym_script_repeat1, + ACTIONS(6679), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + [85092] = 4, + ACTIONS(3982), 1, + anon_sym_BSLASH2, + ACTIONS(3984), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1623), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83341] = 2, + [85106] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7145), 3, + ACTIONS(7219), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83351] = 2, + [85116] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7147), 3, + ACTIONS(7221), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83361] = 4, - ACTIONS(7149), 1, - sym_filetype, - ACTIONS(7151), 1, - anon_sym_FALLBACK, - STATE(2858), 1, - sym_filetypes, + [85126] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83375] = 3, - STATE(13), 1, - sym__cmd_separator, + ACTIONS(7223), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85136] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7153), 2, - sym__newline_or_pipe, - sym_comment, - [83387] = 2, + ACTIONS(813), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85146] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7155), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83397] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7157), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [85156] = 4, + ACTIONS(7225), 1, + anon_sym_RBRACE, + ACTIONS(7227), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83411] = 4, - ACTIONS(6622), 1, + [85170] = 4, + ACTIONS(6405), 1, aux_sym_option_name_token1, - ACTIONS(6624), 1, + ACTIONS(6407), 1, anon_sym_t_, STATE(569), 1, sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83425] = 2, + [85184] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7159), 3, + ACTIONS(7229), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83435] = 4, - ACTIONS(7161), 1, + [85194] = 4, + ACTIONS(7231), 1, anon_sym_RBRACE, - ACTIONS(7163), 1, + ACTIONS(7233), 1, anon_sym_COMMA, - STATE(2430), 1, + STATE(2428), 1, aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83449] = 4, - ACTIONS(2570), 1, + [85208] = 4, + ACTIONS(6604), 1, + aux_sym_option_name_token1, + ACTIONS(6606), 1, + anon_sym_t_, + STATE(481), 1, + sym_option_name, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [85222] = 4, + ACTIONS(7235), 1, + anon_sym_RBRACE, + ACTIONS(7237), 1, anon_sym_COMMA, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + STATE(2544), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83463] = 2, + [85236] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7167), 3, + ACTIONS(7239), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83473] = 3, - STATE(106), 1, - sym__cmd_separator, + [85246] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7169), 2, - sym__newline_or_pipe, - sym_comment, - [83485] = 2, + ACTIONS(7241), 3, + sym__let_heredoc_marker, + anon_sym_trim, + anon_sym_eval, + [85256] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7171), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83495] = 4, - ACTIONS(7135), 1, - anon_sym_PERCENT2, - ACTIONS(7173), 1, - aux_sym_argument_token2, - STATE(1549), 1, - sym__command_attribute_range_value, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [83509] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7175), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [85266] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83523] = 4, - ACTIONS(6695), 1, + ACTIONS(664), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85276] = 4, + ACTIONS(6763), 1, sym__heredoc_line, - ACTIONS(7177), 1, + ACTIONS(7243), 1, sym__heredoc_end, - STATE(2337), 1, + STATE(2475), 1, aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83537] = 4, - ACTIONS(6928), 1, + [85290] = 4, + ACTIONS(6747), 1, anon_sym_BANG, - ACTIONS(7179), 1, + ACTIONS(7245), 1, aux_sym_normal_statement_token1, - STATE(3216), 1, + STATE(3172), 1, sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83551] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7181), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [85304] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83565] = 2, + ACTIONS(6725), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85314] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7183), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83575] = 2, + [85324] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7185), 3, + ACTIONS(7247), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83585] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7187), 1, - sym__heredoc_end, - STATE(2545), 1, - aux_sym_script_repeat1, + [85334] = 3, + STATE(115), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83599] = 2, + ACTIONS(7249), 2, + sym__newline_or_pipe, + sym_comment, + [85346] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7189), 3, + ACTIONS(5946), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83609] = 4, - ACTIONS(7191), 1, + [85356] = 4, + ACTIONS(7251), 1, anon_sym_RBRACE, - ACTIONS(7193), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - STATE(2597), 1, + STATE(2618), 1, aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83623] = 4, - ACTIONS(6503), 1, + [85370] = 4, + ACTIONS(6669), 1, aux_sym_option_name_token1, - ACTIONS(6505), 1, + ACTIONS(6671), 1, anon_sym_t_, - STATE(799), 1, + STATE(743), 1, sym_option_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83637] = 4, - ACTIONS(4478), 1, - anon_sym_BSLASH_RPAREN, - ACTIONS(6878), 1, - anon_sym_BSLASH_PIPE, - STATE(2464), 1, - aux_sym_pattern_repeat1, + [85384] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83651] = 2, + ACTIONS(7255), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85394] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7195), 3, + ACTIONS(6725), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83661] = 4, - ACTIONS(7197), 1, - sym_chunk, - ACTIONS(7199), 1, - anon_sym_LT_LT, - STATE(2732), 1, - sym_script, + [85404] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83675] = 4, - ACTIONS(7199), 1, - anon_sym_LT_LT, - ACTIONS(7201), 1, - sym_chunk, - STATE(2729), 1, - sym_script, + ACTIONS(7257), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85414] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83689] = 4, - ACTIONS(7203), 1, + ACTIONS(690), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + [85424] = 4, + ACTIONS(7259), 1, anon_sym_RBRACE, - ACTIONS(7205), 1, + ACTIONS(7261), 1, anon_sym_COMMA, - STATE(2601), 1, + STATE(2623), 1, aux_sym_literal_dictionary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83703] = 2, + [85438] = 3, + ACTIONS(7263), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7207), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [83713] = 4, - ACTIONS(6938), 1, + ACTIONS(5590), 2, + sym__newline_or_pipe, + sym_comment, + [85450] = 4, + ACTIONS(6741), 1, anon_sym_BANG, - ACTIONS(7209), 1, + ACTIONS(7265), 1, sym__separator_first, - STATE(3149), 1, + STATE(2944), 1, sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83727] = 4, - ACTIONS(7199), 1, - anon_sym_LT_LT, - ACTIONS(7211), 1, - sym_chunk, - STATE(2725), 1, - sym_script, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [83741] = 2, + [85464] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7213), 3, + ACTIONS(7267), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83751] = 4, - ACTIONS(6928), 1, + [85474] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7269), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [85488] = 4, + ACTIONS(6747), 1, anon_sym_BANG, - ACTIONS(7215), 1, + ACTIONS(7271), 1, aux_sym_normal_statement_token1, - STATE(3147), 1, + STATE(2953), 1, sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83765] = 4, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(7217), 1, - sym__separator_first, - STATE(3201), 1, - sym_bang, + [85502] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7273), 1, + sym__heredoc_end, + STATE(2582), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83779] = 2, + [85516] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7275), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7219), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [83789] = 4, - ACTIONS(7199), 1, - anon_sym_LT_LT, - ACTIONS(7221), 1, - sym_chunk, - STATE(2722), 1, - sym_script, + [85530] = 4, + ACTIONS(2572), 1, + anon_sym_COMMA, + ACTIONS(7277), 1, + anon_sym_RPAREN, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83803] = 3, - ACTIONS(7223), 1, - aux_sym_command_statement_token1, + [85544] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7225), 2, - sym__newline_or_pipe, - sym_comment, - [83815] = 2, + ACTIONS(7279), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85554] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7227), 3, + ACTIONS(7281), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83825] = 4, - ACTIONS(6695), 1, + [85564] = 4, + ACTIONS(6763), 1, sym__heredoc_line, - ACTIONS(7229), 1, + ACTIONS(7283), 1, sym__heredoc_end, - STATE(2610), 1, + STATE(2637), 1, aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83839] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7231), 1, - sym__heredoc_end, - STATE(2557), 1, - aux_sym_script_repeat1, + [85578] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83853] = 4, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(7233), 1, - sym__separator_first, - STATE(3206), 1, - sym_bang, + ACTIONS(6725), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85588] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83867] = 2, + ACTIONS(6725), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85598] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7235), 3, + ACTIONS(7285), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83877] = 3, - STATE(110), 1, - sym__cmd_separator, + [85608] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7237), 2, - sym__newline_or_pipe, - sym_comment, - [83889] = 4, - ACTIONS(2570), 1, - anon_sym_COMMA, - ACTIONS(7239), 1, - anon_sym_RPAREN, - STATE(2103), 1, - aux_sym_list_repeat1, + ACTIONS(7287), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85618] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7289), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83903] = 4, - ACTIONS(6928), 1, - anon_sym_BANG, - ACTIONS(7241), 1, - aux_sym_normal_statement_token1, - STATE(3044), 1, - sym_bang, + [85632] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7291), 1, + sym__heredoc_end, + STATE(2585), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83917] = 2, + [85646] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7243), 3, + ACTIONS(7293), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83927] = 2, + [85656] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7245), 3, + ACTIONS(7295), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83937] = 2, + [85666] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5805), 3, + ACTIONS(7297), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83947] = 4, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(7247), 1, - sym__separator_first, - STATE(3210), 1, - sym_bang, + [85676] = 4, + ACTIONS(4481), 1, + sym__separator, + ACTIONS(6727), 1, + anon_sym_BSLASH_PIPE, + STATE(2289), 1, + aux_sym_pattern_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83961] = 4, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(7249), 1, - anon_sym_DASH_GT, - STATE(2247), 1, - aux_sym_parameters_repeat2, + [85690] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83975] = 4, - ACTIONS(4370), 1, - anon_sym_BSLASH2, - ACTIONS(4372), 1, - aux_sym__plus_cmd_arg_token1, - STATE(1764), 1, - aux_sym__plus_cmd_arg, + ACTIONS(7299), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85700] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [83989] = 2, + ACTIONS(7301), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85710] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7251), 3, + ACTIONS(7303), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [83999] = 4, - ACTIONS(6928), 1, - anon_sym_BANG, - ACTIONS(7253), 1, - aux_sym_normal_statement_token1, - STATE(3167), 1, - sym_bang, + [85720] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7305), 1, + sym__heredoc_end, + STATE(2594), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84013] = 2, + [85734] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7255), 3, + ACTIONS(7307), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84023] = 2, + [85744] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7257), 3, - sym__let_heredoc_marker, - anon_sym_trim, - anon_sym_eval, - [84033] = 2, + ACTIONS(7309), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85754] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7259), 3, + ACTIONS(4013), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84043] = 4, - ACTIONS(1277), 1, - anon_sym_RBRACE, - ACTIONS(7261), 1, - anon_sym_COMMA, - STATE(2327), 1, - aux_sym_dictionnary_repeat1, + [85764] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84057] = 4, - ACTIONS(2552), 1, - anon_sym_COMMA, - ACTIONS(7263), 1, - anon_sym_DASH_GT, - STATE(2247), 1, - aux_sym_parameters_repeat2, + ACTIONS(4027), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85774] = 4, + ACTIONS(4428), 1, + anon_sym_BSLASH2, + ACTIONS(4430), 1, + aux_sym__plus_cmd_arg_token1, + STATE(1786), 1, + aux_sym__plus_cmd_arg, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84071] = 4, - ACTIONS(1545), 1, - anon_sym_RBRACK, - ACTIONS(7265), 1, + [85788] = 4, + ACTIONS(2572), 1, anon_sym_COMMA, - STATE(2103), 1, + ACTIONS(7311), 1, + anon_sym_RPAREN, + STATE(2130), 1, aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84085] = 4, - ACTIONS(6495), 1, + [85802] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7313), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85812] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7315), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85822] = 4, + ACTIONS(6415), 1, sym_literal_key, - ACTIONS(7267), 1, + ACTIONS(7317), 1, anon_sym_RBRACE, - STATE(2828), 1, + STATE(2860), 1, sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84099] = 4, - ACTIONS(7269), 1, - anon_sym_RBRACE, - ACTIONS(7271), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_literal_dictionary_repeat1, + [85836] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84113] = 3, - ACTIONS(7273), 1, - sym_hl_group, + ACTIONS(7315), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85846] = 4, + ACTIONS(6747), 1, + anon_sym_BANG, + ACTIONS(7319), 1, + aux_sym_normal_statement_token1, + STATE(3178), 1, + sym_bang, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6465), 2, - sym__newline_or_pipe, - sym_comment, - [84125] = 3, - ACTIONS(7275), 1, - sym_hl_group, + [85860] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6461), 2, - sym__newline_or_pipe, - sym_comment, - [84137] = 2, + ACTIONS(7321), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85870] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7277), 3, + ACTIONS(7323), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84147] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7279), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [85880] = 3, + STATE(106), 1, + sym__cmd_separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84161] = 2, + ACTIONS(7325), 2, + sym__newline_or_pipe, + sym_comment, + [85892] = 4, + ACTIONS(1309), 1, + anon_sym_RBRACE, + ACTIONS(7327), 1, + anon_sym_COMMA, + STATE(2415), 1, + aux_sym_dictionnary_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7281), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [84171] = 2, + [85906] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7283), 3, + ACTIONS(7315), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84181] = 2, + [85916] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7285), 3, + ACTIONS(3996), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84191] = 4, - ACTIONS(2552), 1, + [85926] = 4, + ACTIONS(1487), 1, + anon_sym_RBRACK, + ACTIONS(7329), 1, anon_sym_COMMA, - ACTIONS(7287), 1, - anon_sym_DASH_GT, - STATE(2247), 1, - aux_sym_parameters_repeat2, + STATE(2130), 1, + aux_sym_list_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84205] = 4, - ACTIONS(6695), 1, - sym__heredoc_line, - ACTIONS(7289), 1, - sym__heredoc_end, - STATE(2340), 1, - aux_sym_script_repeat1, + [85940] = 4, + ACTIONS(6415), 1, + sym_literal_key, + ACTIONS(7331), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84219] = 2, + [85954] = 4, + ACTIONS(7333), 1, + anon_sym_RBRACE, + ACTIONS(7335), 1, + anon_sym_COMMA, + STATE(2493), 1, + aux_sym_literal_dictionary_repeat1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [85968] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7291), 3, + ACTIONS(7337), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84229] = 3, - ACTIONS(7293), 1, - sym_hl_group, + [85978] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6457), 2, - sym__newline_or_pipe, - sym_comment, - [84241] = 2, + ACTIONS(7339), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [85988] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7295), 3, + ACTIONS(7339), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84251] = 2, + [85998] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7297), 3, + ACTIONS(7341), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84261] = 2, + [86008] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7299), 3, + ACTIONS(7343), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84271] = 2, + [86018] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4680), 3, + ACTIONS(7339), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84281] = 2, + [86028] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(690), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_COMMA, - [84291] = 2, + ACTIONS(7345), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_statement_token2, + aux_sym__map_rhs_statement_token3, + [86038] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7301), 3, + ACTIONS(7347), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84301] = 2, + [86048] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7303), 3, + ACTIONS(7349), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84311] = 2, + [86058] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7305), 3, + ACTIONS(7351), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84321] = 2, + [86068] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7307), 3, + ACTIONS(7353), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84331] = 2, + [86078] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7309), 3, + ACTIONS(7353), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84341] = 2, + [86088] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7311), 3, + ACTIONS(7353), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84351] = 3, - STATE(3), 1, - sym__cmd_separator, + [86098] = 4, + ACTIONS(6763), 1, + sym__heredoc_line, + ACTIONS(7355), 1, + sym__heredoc_end, + STATE(2475), 1, + aux_sym_script_repeat1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7313), 2, - sym__newline_or_pipe, - sym_comment, - [84363] = 2, + [86112] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7315), 3, + ACTIONS(7353), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84373] = 2, + [86122] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7317), 3, + ACTIONS(4817), 3, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_statement_token2, aux_sym__map_rhs_statement_token3, - [84383] = 2, + [86132] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7319), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [84393] = 4, - ACTIONS(6495), 1, - sym_literal_key, - ACTIONS(7321), 1, - anon_sym_RBRACE, - STATE(2828), 1, - sym__literal_dictionary_entry, + ACTIONS(7357), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [86141] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84407] = 2, + ACTIONS(7189), 2, + sym__newline_or_pipe, + sym_comment, + [86150] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7319), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_statement_token2, - aux_sym__map_rhs_statement_token3, - [84417] = 2, + ACTIONS(7191), 2, + sym__newline_or_pipe, + sym_comment, + [86159] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7072), 2, + ACTIONS(7207), 2, sym__newline_or_pipe, sym_comment, - [84426] = 2, + [86168] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7053), 2, + ACTIONS(7209), 2, sym__newline_or_pipe, sym_comment, - [84435] = 2, + [86177] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7305), 2, + ACTIONS(7127), 2, sym__newline_or_pipe, sym_comment, - [84444] = 3, - ACTIONS(7323), 1, - aux_sym__filetype_immediate_token1, - STATE(2249), 1, - sym__filetype_immediate, + [86186] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84455] = 2, + ACTIONS(6920), 2, + sym__newline_or_pipe, + sym_comment, + [86195] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6709), 2, + ACTIONS(7061), 2, sym__newline_or_pipe, sym_comment, - [84464] = 2, + [86204] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7325), 2, - sym__heredoc_end, - sym__heredoc_line, - [84473] = 2, + ACTIONS(6870), 2, + sym__newline_or_pipe, + sym_comment, + [86213] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6721), 2, + ACTIONS(7005), 2, sym__newline_or_pipe, sym_comment, - [84482] = 2, + [86222] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7145), 2, - sym__newline_or_pipe, - sym_comment, - [84491] = 3, - ACTIONS(7327), 1, - anon_sym_LF, - ACTIONS(7329), 1, - sym_comment, + ACTIONS(7359), 2, + anon_sym_STAR, + sym_hl_group, + [86231] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84502] = 2, + ACTIONS(7361), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [86240] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6725), 2, + ACTIONS(5590), 2, sym__newline_or_pipe, sym_comment, - [84511] = 2, + [86249] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(651), 2, + ACTIONS(6874), 2, sym__newline_or_pipe, sym_comment, - [84520] = 2, + [86258] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6788), 2, + ACTIONS(6876), 2, sym__newline_or_pipe, sym_comment, - [84529] = 2, + [86267] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7139), 2, + ACTIONS(4013), 2, sym__newline_or_pipe, sym_comment, - [84538] = 2, + [86276] = 3, + ACTIONS(7363), 1, + sym__separator_first, + STATE(657), 1, + sym__syn_hl_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [86287] = 3, + ACTIONS(7365), 1, + sym__separator_first, + STATE(609), 1, + sym__syn_hl_pattern, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [86298] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6978), 2, + ACTIONS(6822), 2, sym__newline_or_pipe, sym_comment, - [84547] = 2, + [86307] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7115), 2, + ACTIONS(7309), 2, sym__newline_or_pipe, sym_comment, - [84556] = 2, + [86316] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4028), 2, + ACTIONS(4857), 2, sym__newline_or_pipe, sym_comment, - [84565] = 2, + [86325] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7307), 2, + ACTIONS(6878), 2, sym__newline_or_pipe, sym_comment, - [84574] = 2, + [86334] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7309), 2, + ACTIONS(6824), 2, sym__newline_or_pipe, sym_comment, - [84583] = 2, + [86343] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7311), 2, + ACTIONS(6880), 2, sym__newline_or_pipe, sym_comment, - [84592] = 2, + [86352] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7331), 2, + ACTIONS(6882), 2, sym__newline_or_pipe, sym_comment, - [84601] = 2, + [86361] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7088), 2, + ACTIONS(7110), 2, sym__newline_or_pipe, sym_comment, - [84610] = 2, + [86370] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7367), 2, + anon_sym_STAR, + sym_hl_group, + [86379] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6727), 2, + ACTIONS(6854), 2, sym__newline_or_pipe, sym_comment, - [84619] = 2, + [86388] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7315), 2, + ACTIONS(6826), 2, sym__newline_or_pipe, sym_comment, - [84628] = 2, + [86397] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7123), 2, + ACTIONS(7369), 2, + anon_sym_STAR, + sym_hl_group, + [86406] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(7032), 2, sym__newline_or_pipe, sym_comment, - [84637] = 2, + [86415] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6729), 2, + ACTIONS(6852), 2, sym__newline_or_pipe, sym_comment, - [84646] = 2, + [86424] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7096), 2, + ACTIONS(7041), 2, sym__newline_or_pipe, sym_comment, - [84655] = 2, + [86433] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7333), 2, - anon_sym_STAR, - sym_hl_group, - [84664] = 2, + ACTIONS(6848), 2, + sym__newline_or_pipe, + sym_comment, + [86442] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7335), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [84673] = 2, + ACTIONS(6888), 2, + sym__newline_or_pipe, + sym_comment, + [86451] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7129), 2, + ACTIONS(6890), 2, sym__newline_or_pipe, sym_comment, - [84682] = 2, + [86460] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7337), 2, - anon_sym_STAR, - sym_hl_group, - [84691] = 2, + ACTIONS(6830), 2, + sym__newline_or_pipe, + sym_comment, + [86469] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6770), 2, + ACTIONS(6838), 2, sym__newline_or_pipe, sym_comment, - [84700] = 2, + [86478] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5841), 2, + ACTIONS(7137), 2, sym__newline_or_pipe, sym_comment, - [84709] = 2, + [86487] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7285), 2, + ACTIONS(4027), 2, sym__newline_or_pipe, sym_comment, - [84718] = 2, + [86496] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7277), 2, + ACTIONS(6846), 2, sym__newline_or_pipe, sym_comment, - [84727] = 3, - ACTIONS(7339), 1, - sym__separator_first, - STATE(621), 1, - sym__syn_hl_pattern, + [86505] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84738] = 3, - ACTIONS(7341), 1, - sym__separator_first, - STATE(585), 1, - sym__syn_hl_pattern, + ACTIONS(6786), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86514] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84749] = 2, + ACTIONS(6836), 2, + sym__newline_or_pipe, + sym_comment, + [86523] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7167), 2, + ACTIONS(6832), 2, sym__newline_or_pipe, sym_comment, - [84758] = 2, + [86532] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7183), 2, + ACTIONS(7321), 2, sym__newline_or_pipe, sym_comment, - [84767] = 2, + [86541] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7171), 2, + ACTIONS(6828), 2, sym__newline_or_pipe, sym_comment, - [84776] = 2, + [86550] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4030), 2, + ACTIONS(7323), 2, sym__newline_or_pipe, sym_comment, - [84785] = 2, + [86559] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7101), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [84794] = 2, + ACTIONS(630), 2, + sym__newline_or_pipe, + sym_comment, + [86568] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6797), 2, + ACTIONS(6816), 2, sym__newline_or_pipe, sym_comment, - [84803] = 2, + [86577] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6805), 2, + ACTIONS(7133), 2, sym__newline_or_pipe, sym_comment, - [84812] = 2, + [86586] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7125), 2, + ACTIONS(6840), 2, sym__newline_or_pipe, sym_comment, - [84821] = 2, + [86595] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6980), 2, + ACTIONS(7217), 2, sym__newline_or_pipe, sym_comment, - [84830] = 2, + [86604] = 3, + ACTIONS(6415), 1, + sym_literal_key, + STATE(2860), 1, + sym__literal_dictionary_entry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6807), 2, + [86615] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6820), 2, sym__newline_or_pipe, sym_comment, - [84839] = 2, + [86624] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6982), 2, + ACTIONS(6818), 2, sym__newline_or_pipe, sym_comment, - [84848] = 2, + [86633] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7016), 2, + ACTIONS(6818), 2, sym__newline_or_pipe, sym_comment, - [84857] = 2, + [86642] = 3, + ACTIONS(7371), 1, + aux_sym__filetype_immediate_token1, + STATE(2268), 1, + sym__filetype_immediate, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6830), 2, + [86653] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(3996), 2, + sym__newline_or_pipe, + sym_comment, + [86662] = 2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + ACTIONS(6922), 2, sym__newline_or_pipe, sym_comment, - [84866] = 2, + [86671] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6811), 2, + ACTIONS(6886), 2, sym__newline_or_pipe, sym_comment, - [84875] = 2, + [86680] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6809), 2, + ACTIONS(6886), 2, sym__newline_or_pipe, sym_comment, - [84884] = 2, + [86689] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6801), 2, + ACTIONS(6934), 2, sym__newline_or_pipe, sym_comment, - [84893] = 2, + [86698] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7235), 2, + ACTIONS(4156), 2, sym__newline_or_pipe, sym_comment, - [84902] = 2, + [86707] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7343), 2, - anon_sym_STAR, - sym_hl_group, - [84911] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7319), 2, + ACTIONS(7135), 2, sym__newline_or_pipe, sym_comment, - [84920] = 2, + [86716] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7319), 2, + ACTIONS(6806), 2, sym__newline_or_pipe, sym_comment, - [84929] = 2, + [86725] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7133), 2, - sym__newline_or_pipe, - sym_comment, - [84938] = 2, + ACTIONS(7373), 2, + anon_sym_STAR, + sym_hl_group, + [86734] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3912), 2, + ACTIONS(6802), 2, sym__newline_or_pipe, sym_comment, - [84947] = 2, + [86743] = 3, + ACTIONS(7375), 1, + anon_sym_LF, + ACTIONS(7377), 1, + sym_comment, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7317), 2, - sym__newline_or_pipe, - sym_comment, - [84956] = 2, + [86754] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6790), 2, + ACTIONS(6896), 2, sym__newline_or_pipe, sym_comment, - [84965] = 2, + [86763] = 3, + ACTIONS(7379), 1, + sym_filetype, + STATE(2514), 1, + sym_filetypes, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6824), 2, - sym__newline_or_pipe, - sym_comment, - [84974] = 2, + [86774] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6693), 2, + ACTIONS(6872), 2, sym__newline_or_pipe, sym_comment, - [84983] = 3, - ACTIONS(7345), 1, + [86783] = 3, + ACTIONS(7381), 1, anon_sym_LF, - ACTIONS(7347), 1, + ACTIONS(7383), 1, sym_comment, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [84994] = 3, - ACTIONS(6495), 1, - sym_literal_key, - STATE(2828), 1, - sym__literal_dictionary_entry, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [85005] = 2, + [86794] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3969), 2, + ACTIONS(7012), 2, sym__newline_or_pipe, sym_comment, - [85014] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7349), 2, - anon_sym_STAR, - sym_hl_group, - [85023] = 2, + [86803] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7297), 2, + ACTIONS(7016), 2, sym__newline_or_pipe, sym_comment, - [85032] = 2, + [86812] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6715), 2, + ACTIONS(6723), 2, sym__newline_or_pipe, sym_comment, - [85041] = 3, - ACTIONS(7351), 1, - anon_sym_LF, - ACTIONS(7353), 1, - sym_comment, + [86821] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85052] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7303), 2, + ACTIONS(7337), 2, sym__newline_or_pipe, sym_comment, - [85061] = 2, + [86830] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6717), 2, + ACTIONS(7341), 2, sym__newline_or_pipe, sym_comment, - [85070] = 2, + [86839] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7301), 2, + ACTIONS(7343), 2, sym__newline_or_pipe, sym_comment, - [85079] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7355), 2, - anon_sym_STAR, - sym_hl_group, - [85088] = 2, + [86848] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6719), 2, + ACTIONS(6790), 2, sym__newline_or_pipe, sym_comment, - [85097] = 2, + [86857] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7039), 2, + ACTIONS(6898), 2, sym__newline_or_pipe, sym_comment, - [85106] = 2, + [86866] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6988), 2, + ACTIONS(6800), 2, sym__newline_or_pipe, sym_comment, - [85115] = 2, + [86875] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6990), 2, + ACTIONS(7219), 2, sym__newline_or_pipe, sym_comment, - [85124] = 2, + [86884] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6994), 2, + ACTIONS(6900), 2, sym__newline_or_pipe, sym_comment, - [85133] = 2, + [86893] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6826), 2, - sym__newline_or_pipe, - sym_comment, - [85142] = 2, + ACTIONS(7385), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [86902] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4680), 2, + ACTIONS(4760), 2, sym__newline_or_pipe, sym_comment, - [85151] = 2, + [86911] = 3, + ACTIONS(7363), 1, + sym__separator_first, + STATE(568), 1, + sym__syn_hl_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7259), 2, - sym__newline_or_pipe, - sym_comment, - [85160] = 2, + [86922] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6832), 2, + ACTIONS(7345), 2, sym__newline_or_pipe, sym_comment, - [85169] = 2, + [86931] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(3916), 2, + ACTIONS(7347), 2, sym__newline_or_pipe, sym_comment, - [85178] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7357), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [85187] = 2, + [86940] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6966), 2, + ACTIONS(6904), 2, sym__newline_or_pipe, sym_comment, - [85196] = 3, - ACTIONS(7339), 1, + [86949] = 3, + ACTIONS(7363), 1, sym__separator_first, - STATE(539), 1, + STATE(626), 1, sym__syn_hl_pattern, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85207] = 2, + [86960] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6996), 2, + ACTIONS(6906), 2, sym__newline_or_pipe, sym_comment, - [85216] = 2, + [86969] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6998), 2, + ACTIONS(6908), 2, sym__newline_or_pipe, sym_comment, - [85225] = 2, + [86978] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7299), 2, + ACTIONS(7039), 2, sym__newline_or_pipe, sym_comment, - [85234] = 2, + [86987] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7255), 2, + ACTIONS(6910), 2, sym__newline_or_pipe, sym_comment, - [85243] = 3, - ACTIONS(7359), 1, + [86996] = 3, + ACTIONS(7387), 1, sym_hl_group, - ACTIONS(7361), 1, + ACTIONS(7389), 1, anon_sym_link, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85254] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7363), 2, - sym__script_heredoc_marker, - anon_sym_LF, - [85263] = 2, + [87007] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7295), 2, + ACTIONS(7001), 2, sym__newline_or_pipe, sym_comment, - [85272] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7365), 2, - sym__script_heredoc_marker, - anon_sym_LF, - [85281] = 3, - ACTIONS(7367), 1, - anon_sym_STAR2, - ACTIONS(7369), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [85292] = 2, + [87016] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7291), 2, + ACTIONS(4817), 2, sym__newline_or_pipe, sym_comment, - [85301] = 2, + [87025] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4876), 2, + ACTIONS(7353), 2, sym__newline_or_pipe, sym_comment, - [85310] = 2, + [87034] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 2, + ACTIONS(7353), 2, sym__newline_or_pipe, sym_comment, - [85319] = 2, + [87043] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 2, + ACTIONS(6928), 2, sym__newline_or_pipe, sym_comment, - [85328] = 2, + [87052] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7283), 2, + ACTIONS(7353), 2, sym__newline_or_pipe, sym_comment, - [85337] = 2, + [87061] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 2, - sym__newline_or_pipe, - sym_comment, - [85346] = 2, + ACTIONS(7391), 2, + sym__script_heredoc_marker, + anon_sym_LF, + [87070] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6740), 2, + ACTIONS(7047), 2, sym__newline_or_pipe, sym_comment, - [85355] = 2, + [87079] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7281), 2, - sym__newline_or_pipe, - sym_comment, - [85364] = 2, + ACTIONS(7393), 2, + sym__script_heredoc_marker, + anon_sym_LF, + [87088] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6764), 2, + ACTIONS(7285), 2, sym__newline_or_pipe, sym_comment, - [85373] = 3, - ACTIONS(2429), 1, - aux_sym_argument_token2, - ACTIONS(7371), 1, - aux_sym_argument_token1, + [87097] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85384] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6764), 2, + ACTIONS(7075), 2, sym__newline_or_pipe, sym_comment, - [85393] = 2, + [87106] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5805), 2, + ACTIONS(7293), 2, sym__newline_or_pipe, sym_comment, - [85402] = 3, - ACTIONS(7373), 1, - aux_sym_argument_token1, - ACTIONS(7375), 1, - aux_sym_argument_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [85413] = 2, + [87115] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6691), 2, + ACTIONS(7081), 2, sym__newline_or_pipe, sym_comment, - [85422] = 2, + [87124] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7245), 2, + ACTIONS(7353), 2, sym__newline_or_pipe, sym_comment, - [85431] = 2, + [87133] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7014), 2, - sym__newline_or_pipe, - sym_comment, - [85440] = 2, + ACTIONS(7395), 2, + sym__heredoc_end, + sym__heredoc_line, + [87142] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7243), 2, + ACTIONS(7351), 2, sym__newline_or_pipe, sym_comment, - [85449] = 2, + [87151] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7213), 2, + ACTIONS(7045), 2, sym__newline_or_pipe, sym_comment, - [85458] = 2, + [87160] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7251), 2, + ACTIONS(7223), 2, sym__newline_or_pipe, sym_comment, - [85467] = 2, + [87169] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6828), 2, + ACTIONS(6997), 2, sym__newline_or_pipe, sym_comment, - [85476] = 2, + [87178] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6836), 2, + ACTIONS(7018), 2, sym__newline_or_pipe, sym_comment, - [85485] = 2, + [87187] = 3, + ACTIONS(2457), 1, + aux_sym_argument_token2, + ACTIONS(7397), 1, + aux_sym_argument_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7189), 2, - sym__newline_or_pipe, - sym_comment, - [85494] = 2, + [87198] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6840), 2, - sym__newline_or_pipe, - sym_comment, - [85503] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6846), 2, + ACTIONS(5965), 2, sym__newline_or_pipe, sym_comment, - [85512] = 2, + [87207] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6858), 2, + ACTIONS(7096), 2, sym__newline_or_pipe, sym_comment, - [85521] = 2, + [87216] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7137), 2, + ACTIONS(7106), 2, sym__newline_or_pipe, sym_comment, - [85530] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6868), 2, - sym__newline_or_pipe, + [87225] = 3, + ACTIONS(7399), 1, + anon_sym_LF, + ACTIONS(7401), 1, sym_comment, - [85539] = 3, - ACTIONS(7377), 1, - sym_filetype, - STATE(2370), 1, - sym_filetypes, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85550] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7185), 2, - sym__newline_or_pipe, - sym_comment, - [85559] = 2, + [87236] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7018), 2, + ACTIONS(7108), 2, sym__newline_or_pipe, sym_comment, - [85568] = 2, + [87245] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6850), 2, + ACTIONS(7139), 2, sym__newline_or_pipe, sym_comment, - [85577] = 2, + [87254] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6948), 2, + ACTIONS(7153), 2, sym__newline_or_pipe, sym_comment, - [85586] = 2, + [87263] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7020), 2, + ACTIONS(7114), 2, sym__newline_or_pipe, sym_comment, - [85595] = 2, + [87272] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(809), 2, + ACTIONS(7349), 2, sym__newline_or_pipe, sym_comment, - [85604] = 2, + [87281] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7020), 2, + ACTIONS(6918), 2, sym__newline_or_pipe, sym_comment, - [85613] = 2, + [87290] = 3, + ACTIONS(7403), 1, + anon_sym_STAR2, + ACTIONS(7405), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6852), 2, - sym__newline_or_pipe, - sym_comment, - [85622] = 2, + [87301] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6854), 2, + ACTIONS(7339), 2, sym__newline_or_pipe, sym_comment, - [85631] = 2, + [87310] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6946), 2, + ACTIONS(3986), 2, sym__newline_or_pipe, sym_comment, - [85640] = 3, - ACTIONS(7379), 1, - sym_hl_group, - ACTIONS(7381), 1, - anon_sym_link, + [87319] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85651] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6860), 2, + ACTIONS(7339), 2, sym__newline_or_pipe, sym_comment, - [85660] = 2, + [87328] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6884), 2, + ACTIONS(7157), 2, sym__newline_or_pipe, sym_comment, - [85669] = 2, + [87337] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7020), 2, + ACTIONS(813), 2, sym__newline_or_pipe, sym_comment, - [85678] = 2, + [87346] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7031), 2, - sym__newline_or_pipe, - sym_comment, - [85687] = 2, + ACTIONS(7407), 2, + anon_sym_STAR, + sym_hl_group, + [87355] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6711), 2, + ACTIONS(7165), 2, sym__newline_or_pipe, sym_comment, - [85696] = 2, + [87364] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7031), 2, + ACTIONS(7112), 2, sym__newline_or_pipe, sym_comment, - [85705] = 2, + [87373] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7031), 2, + ACTIONS(7121), 2, sym__newline_or_pipe, sym_comment, - [85714] = 3, - ACTIONS(7339), 1, - sym__separator_first, - STATE(602), 1, - sym__syn_hl_pattern, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [85725] = 2, + [87382] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6942), 2, + ACTIONS(7339), 2, sym__newline_or_pipe, sym_comment, - [85734] = 2, + [87391] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7159), 2, + ACTIONS(7315), 2, sym__newline_or_pipe, sym_comment, - [85743] = 3, - ACTIONS(7383), 1, - anon_sym_STAR2, - ACTIONS(7385), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [85754] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7387), 2, - anon_sym_STAR, + [87400] = 3, + ACTIONS(7409), 1, sym_hl_group, - [85763] = 2, + ACTIONS(7411), 1, + anon_sym_link, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7155), 2, - sym__newline_or_pipe, - sym_comment, - [85772] = 2, + [87411] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6862), 2, - sym__newline_or_pipe, - sym_comment, - [85781] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(4846), 2, + ACTIONS(7315), 2, sym__newline_or_pipe, sym_comment, - [85790] = 2, + [87420] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4611), 2, + ACTIONS(7315), 2, sym__newline_or_pipe, sym_comment, - [85799] = 2, + [87429] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6916), 2, + ACTIONS(7123), 2, sym__newline_or_pipe, sym_comment, - [85808] = 2, + [87438] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6922), 2, + ACTIONS(7187), 2, sym__newline_or_pipe, sym_comment, - [85817] = 2, + [87447] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6870), 2, + ACTIONS(7131), 2, sym__newline_or_pipe, sym_comment, - [85826] = 2, + [87456] = 3, + ACTIONS(7413), 1, + anon_sym_STAR2, + ACTIONS(7415), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7109), 2, - sym__newline_or_pipe, - sym_comment, - [85835] = 2, + [87467] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6872), 2, + ACTIONS(7173), 2, sym__newline_or_pipe, sym_comment, - [85844] = 2, + [87476] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5916), 2, + ACTIONS(7175), 2, sym__newline_or_pipe, sym_comment, - [85853] = 2, + [87485] = 3, + ACTIONS(7417), 1, + aux_sym_argument_token1, + ACTIONS(7419), 1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7033), 2, - sym__newline_or_pipe, - sym_comment, - [85862] = 2, + [87496] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6954), 2, + ACTIONS(7098), 2, sym__newline_or_pipe, sym_comment, - [85871] = 2, + [87505] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6936), 2, + ACTIONS(7185), 2, sym__newline_or_pipe, sym_comment, - [85880] = 2, + [87514] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6874), 2, + ACTIONS(6993), 2, sym__newline_or_pipe, sym_comment, - [85889] = 2, + [87523] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7119), 2, + ACTIONS(4564), 2, sym__newline_or_pipe, sym_comment, - [85898] = 2, + [87532] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7117), 2, - sym__newline_or_pipe, - sym_comment, - [85907] = 2, + ACTIONS(7421), 2, + anon_sym_STAR, + sym_hl_group, + [87541] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(647), 2, + ACTIONS(7104), 2, sym__newline_or_pipe, sym_comment, - [85916] = 3, - ACTIONS(7389), 1, - aux_sym__filetype_immediate_token1, - STATE(2417), 1, - sym__filetype_immediate, + [87550] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [85927] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6918), 2, + ACTIONS(7049), 2, sym__newline_or_pipe, sym_comment, - [85936] = 2, + [87559] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6932), 2, + ACTIONS(7102), 2, sym__newline_or_pipe, sym_comment, - [85945] = 2, + [87568] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6866), 2, + ACTIONS(7313), 2, sym__newline_or_pipe, sym_comment, - [85954] = 2, + [87577] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7035), 2, + ACTIONS(7051), 2, sym__newline_or_pipe, sym_comment, - [85963] = 2, + [87586] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6930), 2, + ACTIONS(6991), 2, sym__newline_or_pipe, sym_comment, - [85972] = 2, + [87595] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6968), 2, + ACTIONS(6989), 2, sym__newline_or_pipe, sym_comment, - [85981] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(7391), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [85990] = 2, + [87604] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6964), 2, + ACTIONS(7100), 2, sym__newline_or_pipe, sym_comment, - [85999] = 2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - ACTIONS(6792), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [86008] = 2, + [87613] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6968), 2, + ACTIONS(4891), 2, sym__newline_or_pipe, sym_comment, - [86017] = 2, + [87622] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7107), 2, + ACTIONS(7159), 2, sym__newline_or_pipe, sym_comment, - [86026] = 2, + [87631] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7227), 2, + ACTIONS(6987), 2, sym__newline_or_pipe, sym_comment, - [86035] = 2, + [87640] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6834), 2, + ACTIONS(7183), 2, sym__newline_or_pipe, sym_comment, - [86044] = 2, + [87649] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(7161), 2, sym__newline_or_pipe, sym_comment, - [86053] = 2, + [87658] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6976), 2, sym__newline_or_pipe, sym_comment, - [86062] = 3, - ACTIONS(7393), 1, - anon_sym_LF, - ACTIONS(7395), 1, - sym_comment, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86073] = 2, + [87667] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6910), 2, + ACTIONS(7307), 2, sym__newline_or_pipe, sym_comment, - [86082] = 2, + [87676] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6974), 2, sym__newline_or_pipe, sym_comment, - [86091] = 2, + [87685] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6920), 2, + ACTIONS(6948), 2, sym__newline_or_pipe, sym_comment, - [86100] = 2, + [87694] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4447), 2, - sym__separator, - anon_sym_BSLASH_PIPE, - [86109] = 2, + ACTIONS(7423), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [87703] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6976), 2, sym__newline_or_pipe, sym_comment, - [86118] = 2, + [87712] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(5906), 2, sym__newline_or_pipe, sym_comment, - [86127] = 2, + [87721] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86136] = 2, + [87730] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(7425), 2, sym__newline_or_pipe, sym_comment, - [86145] = 2, + [87739] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7105), 2, + ACTIONS(6916), 2, sym__newline_or_pipe, sym_comment, - [86154] = 2, + [87748] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(5742), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86163] = 2, + [87757] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7195), 2, + ACTIONS(6914), 2, sym__newline_or_pipe, sym_comment, - [86172] = 2, + [87766] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86181] = 2, + [87775] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7103), 2, + ACTIONS(6930), 2, sym__newline_or_pipe, sym_comment, - [86190] = 2, + [87784] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(7053), 2, sym__newline_or_pipe, sym_comment, - [86199] = 2, + [87793] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6974), 2, sym__newline_or_pipe, sym_comment, - [86208] = 2, + [87802] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(4712), 2, + ACTIONS(7043), 2, sym__newline_or_pipe, sym_comment, - [86217] = 2, + [87811] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7070), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86226] = 2, + [87820] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6786), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86235] = 2, + [87829] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7397), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [86244] = 2, + ACTIONS(6932), 2, + sym__newline_or_pipe, + sym_comment, + [87838] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6882), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86253] = 2, + [87847] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(7267), 2, sym__newline_or_pipe, sym_comment, - [86262] = 2, + [87856] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6888), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86271] = 2, + [87865] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7004), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86280] = 2, + [87874] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6964), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86289] = 2, + [87883] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7037), 2, + ACTIONS(6938), 2, sym__newline_or_pipe, sym_comment, - [86298] = 3, - ACTIONS(7399), 1, - sym_filetype, - STATE(2789), 1, - sym_filetypes, + [87892] = 3, + ACTIONS(7427), 1, + anon_sym_LF, + ACTIONS(7429), 1, + sym_comment, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86309] = 2, + [87903] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7219), 2, + ACTIONS(7229), 2, sym__newline_or_pipe, sym_comment, - [86318] = 2, + [87912] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7147), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86327] = 2, + [87921] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6904), 2, + ACTIONS(7279), 2, sym__newline_or_pipe, sym_comment, - [86336] = 2, + [87930] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7068), 2, + ACTIONS(7163), 2, sym__newline_or_pipe, sym_comment, - [86345] = 2, + [87939] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6892), 2, + ACTIONS(6940), 2, sym__newline_or_pipe, sym_comment, - [86354] = 2, + [87948] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7041), 2, + ACTIONS(7239), 2, sym__newline_or_pipe, sym_comment, - [86363] = 2, + [87957] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6772), 2, + ACTIONS(7281), 2, sym__newline_or_pipe, sym_comment, - [86372] = 2, + [87966] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6902), 2, + ACTIONS(6942), 2, sym__newline_or_pipe, sym_comment, - [86381] = 2, + [87975] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6896), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86390] = 2, + [87984] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7207), 2, + ACTIONS(7181), 2, sym__newline_or_pipe, sym_comment, - [86399] = 2, + [87993] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7066), 2, + ACTIONS(6725), 2, sym__newline_or_pipe, sym_comment, - [86408] = 2, + [88002] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7401), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [86417] = 2, + ACTIONS(6982), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [88011] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7043), 2, + ACTIONS(664), 2, sym__newline_or_pipe, sym_comment, - [86426] = 2, + [88020] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6900), 2, - sym__newline_or_pipe, - sym_comment, - [86435] = 2, + ACTIONS(4535), 2, + sym__separator, + anon_sym_BSLASH_PIPE, + [88029] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6689), 2, + ACTIONS(7177), 2, sym__newline_or_pipe, sym_comment, - [86444] = 2, + [88038] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6894), 2, + ACTIONS(6962), 2, sym__newline_or_pipe, sym_comment, - [86453] = 2, + [88047] = 3, + ACTIONS(7431), 1, + sym_filetype, + STATE(2836), 1, + sym_filetypes, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6898), 2, - sym__newline_or_pipe, - sym_comment, - [86462] = 2, + [88058] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6774), 2, + ACTIONS(6944), 2, sym__newline_or_pipe, sym_comment, - [86471] = 2, + [88067] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7045), 2, + ACTIONS(7303), 2, sym__newline_or_pipe, sym_comment, - [86480] = 2, + [88076] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(6890), 2, + ACTIONS(6912), 2, sym__newline_or_pipe, sym_comment, - [86489] = 2, + [88085] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7047), 2, + ACTIONS(7257), 2, sym__newline_or_pipe, sym_comment, - [86498] = 2, + [88094] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7049), 2, + ACTIONS(5946), 2, sym__newline_or_pipe, sym_comment, - [86507] = 2, + [88103] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - ACTIONS(7051), 2, + ACTIONS(6946), 2, sym__newline_or_pipe, sym_comment, - [86516] = 2, - ACTIONS(7403), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86524] = 2, - ACTIONS(7405), 1, - sym_hl_group, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86532] = 2, - ACTIONS(6133), 1, - sym__endif, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86540] = 2, - ACTIONS(7407), 1, - anon_sym_BSLASH_RPAREN, + [88112] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86548] = 2, - ACTIONS(7409), 1, - sym__separator_first, + ACTIONS(7255), 2, + sym__newline_or_pipe, + sym_comment, + [88121] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86556] = 2, - ACTIONS(7411), 1, - anon_sym_EQ2, + ACTIONS(7247), 2, + sym__newline_or_pipe, + sym_comment, + [88130] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86564] = 2, - ACTIONS(7413), 1, - anon_sym_EQ2, + ACTIONS(7301), 2, + sym__newline_or_pipe, + sym_comment, + [88139] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86572] = 2, - ACTIONS(7415), 1, - anon_sym_EQ2, + ACTIONS(7221), 2, + sym__newline_or_pipe, + sym_comment, + [88148] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86580] = 2, - ACTIONS(7417), 1, - anon_sym_EQ2, + ACTIONS(7433), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [88157] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86588] = 2, - ACTIONS(7419), 1, - anon_sym_EQ2, + ACTIONS(7179), 2, + sym__newline_or_pipe, + sym_comment, + [88166] = 3, + ACTIONS(7435), 1, + aux_sym__filetype_immediate_token1, + STATE(2421), 1, + sym__filetype_immediate, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86596] = 2, - ACTIONS(7421), 1, - aux_sym__bang_filter_command_argument_token2, + [88177] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86604] = 2, - ACTIONS(7423), 1, - anon_sym_GT, + ACTIONS(7085), 2, + sym__newline_or_pipe, + sym_comment, + [88186] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86612] = 2, - ACTIONS(7425), 1, - anon_sym_EQ2, + ACTIONS(7299), 2, + sym__newline_or_pipe, + sym_comment, + [88195] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86620] = 2, - ACTIONS(7427), 1, - anon_sym_EQ2, + ACTIONS(6960), 2, + sym__newline_or_pipe, + sym_comment, + [88204] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86628] = 2, - ACTIONS(7429), 1, - anon_sym_EQ2, + ACTIONS(7297), 2, + sym__newline_or_pipe, + sym_comment, + [88213] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86636] = 2, - ACTIONS(7431), 1, - anon_sym_EQ2, + ACTIONS(7295), 2, + sym__newline_or_pipe, + sym_comment, + [88222] = 2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86644] = 2, - ACTIONS(7433), 1, - anon_sym_EQ2, + ACTIONS(7287), 2, + sym__newline_or_pipe, + sym_comment, + [88231] = 2, + ACTIONS(2742), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86652] = 2, - ACTIONS(7435), 1, + [88239] = 2, + ACTIONS(7437), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86660] = 2, - ACTIONS(7437), 1, - sym__separator, + [88247] = 2, + ACTIONS(7439), 1, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86668] = 2, - ACTIONS(7439), 1, - sym__printable, + [88255] = 2, + ACTIONS(6144), 1, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86676] = 2, + [88263] = 2, ACTIONS(7441), 1, - aux_sym_argument_token2, + aux_sym_wincmd_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86684] = 2, + [88271] = 2, ACTIONS(7443), 1, - sym_hl_group, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86692] = 2, - ACTIONS(6528), 1, - anon_sym_EQ, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86700] = 2, + [88279] = 2, ACTIONS(7445), 1, - aux_sym_option_name_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86708] = 2, - ACTIONS(5679), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86716] = 2, + [88287] = 2, ACTIONS(7447), 1, - aux_sym_option_name_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86724] = 2, + [88295] = 2, ACTIONS(7449), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86732] = 2, + [88303] = 2, ACTIONS(7451), 1, - aux_sym__bang_filter_command_argument_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86740] = 2, - ACTIONS(6699), 1, - anon_sym_RBRACE, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86748] = 2, - ACTIONS(5681), 1, - sym_spread, + [88311] = 2, + ACTIONS(7453), 1, + sym_au_event, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86756] = 2, - ACTIONS(7453), 1, - sym_hl_group, + [88319] = 2, + ACTIONS(6543), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86764] = 2, - ACTIONS(2760), 1, - anon_sym_RBRACK, + [88327] = 2, + ACTIONS(5647), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86772] = 2, + [88335] = 2, ACTIONS(7455), 1, - aux_sym_argument_token2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86780] = 2, + [88343] = 2, ACTIONS(7457), 1, - anon_sym_RBRACE, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86788] = 2, + [88351] = 2, ACTIONS(7459), 1, - anon_sym_GT, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86796] = 2, + [88359] = 2, ACTIONS(7461), 1, aux_sym__autocmd_pattern_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86804] = 2, + [88367] = 2, + ACTIONS(6019), 1, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88375] = 2, + ACTIONS(5758), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88383] = 2, + ACTIONS(5760), 1, + sym_spread, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88391] = 2, ACTIONS(7463), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86812] = 2, + [88399] = 2, ACTIONS(7465), 1, - anon_sym_EQ2, + anon_sym_LF, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86820] = 2, + [88407] = 2, ACTIONS(7467), 1, - anon_sym_RBRACE, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86828] = 2, + [88415] = 2, ACTIONS(7469), 1, - aux_sym__map_lhs_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86836] = 2, + [88423] = 2, ACTIONS(7471), 1, - sym_hl_group, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86844] = 2, + [88431] = 2, ACTIONS(7473), 1, - anon_sym_BSLASH_RPAREN, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86852] = 2, + [88439] = 2, ACTIONS(7475), 1, - anon_sym_GT, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86860] = 2, - ACTIONS(7477), 1, - anon_sym_EQ2, + [88447] = 2, + ACTIONS(6978), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86868] = 2, - ACTIONS(7479), 1, + [88455] = 2, + ACTIONS(7477), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86876] = 2, - ACTIONS(2674), 1, - anon_sym_RBRACK, + [88463] = 2, + ACTIONS(7479), 1, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86884] = 2, + [88471] = 2, ACTIONS(7481), 1, - sym__endif, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86892] = 2, - ACTIONS(7483), 1, - sym__endtry, + [88479] = 2, + ACTIONS(2708), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86900] = 2, - ACTIONS(719), 1, - sym__separator_first, + [88487] = 2, + ACTIONS(7483), 1, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86908] = 2, + [88495] = 2, ACTIONS(7485), 1, - aux_sym__bang_filter_command_argument_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [86916] = 2, - ACTIONS(6776), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86924] = 2, - ACTIONS(7393), 1, - anon_sym_LF, + [88503] = 2, + ACTIONS(7487), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86932] = 2, - ACTIONS(7487), 1, - aux_sym__bang_filter_command_argument_token2, + [88511] = 2, + ACTIONS(7489), 1, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86940] = 2, - ACTIONS(7489), 1, - anon_sym_RPAREN, + [88519] = 2, + ACTIONS(7407), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86948] = 2, + [88527] = 2, ACTIONS(7491), 1, - anon_sym_GT, + aux_sym__autocmd_pattern_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86956] = 2, + [88535] = 2, ACTIONS(7493), 1, - anon_sym_EQ2, + sym__endtry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86964] = 2, + [88543] = 2, ACTIONS(7495), 1, - anon_sym_EQ2, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86972] = 2, + [88551] = 2, ACTIONS(7497), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86980] = 2, + [88559] = 2, ACTIONS(7499), 1, - aux_sym_option_name_token2, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86988] = 2, + [88567] = 2, ACTIONS(7501), 1, - sym__separator_first, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [86996] = 2, + [88575] = 2, ACTIONS(7503), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87004] = 2, + [88583] = 2, + ACTIONS(2764), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88591] = 2, + ACTIONS(7427), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88599] = 2, + ACTIONS(6019), 1, + sym_integer_literal, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88607] = 2, ACTIONS(7505), 1, aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87012] = 2, + [88615] = 2, ACTIONS(7507), 1, - anon_sym_LPAREN2, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87020] = 2, + [88623] = 2, ACTIONS(7509), 1, - anon_sym_GT, + sym__separator_first, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88631] = 2, + ACTIONS(7087), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88639] = 2, + ACTIONS(6186), 1, + sym__endtry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87028] = 2, + [88647] = 2, ACTIONS(7511), 1, - aux_sym_normal_statement_token1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87036] = 2, + [88655] = 2, ACTIONS(7513), 1, - anon_sym_LPAREN2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87044] = 2, + [88663] = 2, ACTIONS(7515), 1, - sym_hl_group, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87052] = 2, + [88671] = 2, ACTIONS(7517), 1, - sym_hl_group, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87060] = 2, + [88679] = 2, ACTIONS(7519), 1, - sym__printable, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87068] = 2, + [88687] = 2, ACTIONS(7521), 1, - sym_hl_group, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87076] = 2, + [88695] = 2, ACTIONS(7523), 1, - sym_hl_group, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87084] = 2, + [88703] = 2, ACTIONS(7525), 1, - sym__separator, + aux_sym_normal_statement_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88711] = 2, + ACTIONS(6106), 1, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87092] = 2, + [88719] = 2, ACTIONS(7527), 1, - aux_sym__map_lhs_token1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87100] = 2, + [88727] = 2, ACTIONS(7529), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87108] = 2, + [88735] = 2, ACTIONS(7531), 1, - anon_sym_RPAREN, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87116] = 2, + [88743] = 2, ACTIONS(7533), 1, - aux_sym__syn_sync_lines_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87124] = 2, + [88751] = 2, ACTIONS(7535), 1, - sym__printable, + aux_sym__syn_sync_lines_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87132] = 2, + [88759] = 2, ACTIONS(7537), 1, - aux_sym_option_name_token2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87140] = 2, + [88767] = 2, ACTIONS(7539), 1, - aux_sym__bang_filter_command_argument_token2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87148] = 2, + [88775] = 2, ACTIONS(7541), 1, - aux_sym__bang_filter_command_argument_token2, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87156] = 2, + [88783] = 2, ACTIONS(7543), 1, - sym__separator, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87164] = 2, + [88791] = 2, ACTIONS(7545), 1, - aux_sym__hl_quoted_name_token1, + aux_sym__syn_sync_lines_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87172] = 2, + [88799] = 2, ACTIONS(7547), 1, - sym_hl_group, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87180] = 2, + [88807] = 2, ACTIONS(7549), 1, - sym__separator, + sym__set, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87188] = 2, + [88815] = 2, ACTIONS(7551), 1, - sym__separator, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87196] = 2, + [88823] = 2, ACTIONS(7553), 1, - anon_sym_BSLASH_RPAREN, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87204] = 2, + [88831] = 2, ACTIONS(7555), 1, - sym_hl_group, + sym__separator_first, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87212] = 2, + [88839] = 2, ACTIONS(7557), 1, - aux_sym_argument_token2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87220] = 2, + [88847] = 2, ACTIONS(7559), 1, - anon_sym_GT, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87228] = 2, + [88855] = 2, ACTIONS(7561), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87236] = 2, + [88863] = 2, ACTIONS(7563), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87244] = 2, + [88871] = 2, ACTIONS(7565), 1, - sym__printable, + sym_command_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87252] = 2, + [88879] = 2, ACTIONS(7567), 1, - sym_hl_group, + aux_sym_wincmd_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87260] = 2, + [88887] = 2, ACTIONS(7569), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87268] = 2, + [88895] = 2, ACTIONS(7571), 1, - aux_sym_option_name_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87276] = 2, + [88903] = 2, ACTIONS(7573), 1, - aux_sym__bang_filter_command_argument_token2, + aux_sym_normal_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87284] = 2, + [88911] = 2, ACTIONS(7575), 1, - aux_sym__bang_filter_command_argument_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87292] = 2, - ACTIONS(7223), 1, - aux_sym_command_statement_token1, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87300] = 2, + [88919] = 2, ACTIONS(7577), 1, - anon_sym_EQ2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87308] = 2, + [88927] = 2, ACTIONS(7579), 1, - anon_sym_EQ2, + anon_sym_COLON, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87316] = 2, + [88935] = 2, ACTIONS(7581), 1, - anon_sym_EQ2, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87324] = 2, + [88943] = 2, ACTIONS(7583), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87332] = 2, + [88951] = 2, ACTIONS(7585), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87340] = 2, + [88959] = 2, ACTIONS(7587), 1, - anon_sym_EQ2, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87348] = 2, + [88967] = 2, ACTIONS(7589), 1, - anon_sym_EQ2, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [88975] = 2, + ACTIONS(6096), 1, + sym__endtry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87356] = 2, + [88983] = 2, ACTIONS(7591), 1, - sym__printable, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87364] = 2, + [88991] = 2, ACTIONS(7593), 1, - sym_hl_group, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87372] = 2, + [88999] = 2, ACTIONS(7595), 1, - aux_sym__autocmd_pattern_token1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87380] = 2, + [89007] = 2, ACTIONS(7597), 1, - aux_sym_option_name_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87388] = 2, + [89015] = 2, ACTIONS(7599), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87396] = 2, + [89023] = 2, ACTIONS(7601), 1, - aux_sym__bang_filter_command_argument_token2, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87404] = 2, + [89031] = 2, ACTIONS(7603), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87412] = 2, - ACTIONS(7547), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87420] = 2, + [89039] = 2, ACTIONS(7605), 1, - aux_sym__autocmd_pattern_token1, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87428] = 2, + [89047] = 2, ACTIONS(7607), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87436] = 2, + [89055] = 2, ACTIONS(7609), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87444] = 2, + [89063] = 2, ACTIONS(7611), 1, - sym_au_event, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87452] = 2, + [89071] = 2, ACTIONS(7613), 1, - anon_sym_EQ2, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87460] = 2, + [89079] = 2, ACTIONS(7615), 1, - aux_sym_argument_token2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87468] = 2, + [89087] = 2, ACTIONS(7617), 1, - aux_sym__bang_filter_command_argument_token2, + aux_sym__autocmd_pattern_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87476] = 2, + [89095] = 2, ACTIONS(7619), 1, - aux_sym__bang_filter_command_argument_token2, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87484] = 2, + [89103] = 2, ACTIONS(7621), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87492] = 2, + [89111] = 2, ACTIONS(7623), 1, - sym__printable, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87500] = 2, + [89119] = 2, ACTIONS(7625), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87508] = 2, + [89127] = 2, ACTIONS(7627), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87516] = 2, + [89135] = 2, ACTIONS(7629), 1, - sym_hl_group, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87524] = 2, + [89143] = 2, ACTIONS(7631), 1, - anon_sym_EQ2, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87532] = 2, + [89151] = 2, ACTIONS(7633), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87540] = 2, + [89159] = 2, ACTIONS(7635), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87548] = 2, + [89167] = 2, ACTIONS(7637), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87556] = 2, + [89175] = 2, ACTIONS(7639), 1, - aux_sym_wincmd_statement_token1, + aux_sym_normal_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87564] = 2, + [89183] = 2, ACTIONS(7641), 1, - aux_sym__map_lhs_token1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87572] = 2, + [89191] = 2, ACTIONS(7643), 1, - anon_sym_BSLASH_RPAREN, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87580] = 2, + [89199] = 2, ACTIONS(7645), 1, - anon_sym_GT, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87588] = 2, + [89207] = 2, ACTIONS(7647), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87596] = 2, + [89215] = 2, ACTIONS(7649), 1, aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87604] = 2, + [89223] = 2, ACTIONS(7651), 1, - sym_integer_literal, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87612] = 2, + [89231] = 2, ACTIONS(7653), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87620] = 2, - ACTIONS(2746), 1, - anon_sym_RBRACK, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87628] = 2, + [89239] = 2, ACTIONS(7655), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87636] = 2, + [89247] = 2, ACTIONS(7657), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87644] = 2, + [89255] = 2, ACTIONS(7659), 1, aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87652] = 2, + [89263] = 2, ACTIONS(7661), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87660] = 2, + [89271] = 2, ACTIONS(7663), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87668] = 2, - ACTIONS(6752), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87676] = 2, - ACTIONS(7059), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87684] = 2, + [89279] = 2, ACTIONS(7665), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87692] = 2, + [89287] = 2, ACTIONS(7667), 1, - sym__set, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87700] = 2, + [89295] = 2, ACTIONS(7669), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87708] = 2, + [89303] = 2, ACTIONS(7671), 1, - sym_command_name, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87716] = 2, + [89311] = 2, ACTIONS(7673), 1, - aux_sym__map_lhs_token1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87724] = 2, + [89319] = 2, ACTIONS(7675), 1, - aux_sym__bang_filter_command_argument_token2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87732] = 2, + [89327] = 2, ACTIONS(7677), 1, - anon_sym_BSLASH_RPAREN, + aux_sym_option_name_token2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [89335] = 2, + ACTIONS(6842), 1, + aux_sym_command_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87740] = 2, + [89343] = 2, ACTIONS(7679), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87748] = 2, + [89351] = 2, ACTIONS(7681), 1, - aux_sym__bang_filter_command_argument_token2, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87756] = 2, + [89359] = 2, ACTIONS(7683), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87764] = 2, + [89367] = 2, ACTIONS(7685), 1, - aux_sym_wincmd_statement_token1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87772] = 2, + [89375] = 2, ACTIONS(7687), 1, - anon_sym_EQ2, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87780] = 2, + [89383] = 2, ACTIONS(7689), 1, - anon_sym_BSLASH_RPAREN, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87788] = 2, + [89391] = 2, ACTIONS(7691), 1, - aux_sym__bang_filter_command_argument_token2, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87796] = 2, + [89399] = 2, ACTIONS(7693), 1, - aux_sym_option_name_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87804] = 2, - ACTIONS(7695), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [87812] = 2, - ACTIONS(7697), 1, - anon_sym_RBRACE, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87820] = 2, - ACTIONS(2756), 1, - anon_sym_RBRACK, + [89407] = 2, + ACTIONS(7695), 1, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87828] = 2, - ACTIONS(7387), 1, - sym_integer_literal, + [89415] = 2, + ACTIONS(7697), 1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87836] = 2, + [89423] = 2, ACTIONS(7699), 1, - aux_sym_normal_statement_token1, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87844] = 2, + [89431] = 2, ACTIONS(7701), 1, - anon_sym_EQ2, + aux_sym__hl_quoted_name_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87852] = 2, + [89439] = 2, ACTIONS(7703), 1, - anon_sym_EQ2, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87860] = 2, + [89447] = 2, ACTIONS(7705), 1, - anon_sym_EQ2, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87868] = 2, + [89455] = 2, ACTIONS(7707), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87876] = 2, + [89463] = 2, ACTIONS(7709), 1, aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87884] = 2, + [89471] = 2, + ACTIONS(2746), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [89479] = 2, ACTIONS(7711), 1, - sym_hl_group, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87892] = 2, + [89487] = 2, ACTIONS(7713), 1, - aux_sym_option_name_token2, + sym__endtry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87900] = 2, + [89495] = 2, ACTIONS(7715), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_BSLASH_RPAREN, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [89503] = 2, + ACTIONS(7231), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87908] = 2, + [89511] = 2, ACTIONS(7717), 1, - sym_hl_group, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87916] = 2, - ACTIONS(7161), 1, + [89519] = 2, + ACTIONS(7235), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87924] = 2, + [89527] = 2, ACTIONS(7719), 1, - aux_sym_argument_token2, + anon_sym_COMMA2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [89535] = 2, + ACTIONS(7711), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87932] = 2, + [89543] = 2, ACTIONS(7721), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87940] = 2, + [89551] = 2, ACTIONS(7723), 1, - sym__separator, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87948] = 2, + [89559] = 2, ACTIONS(7725), 1, - aux_sym__map_lhs_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87956] = 2, + [89567] = 2, ACTIONS(7727), 1, - sym_hl_group, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87964] = 2, + [89575] = 2, ACTIONS(7729), 1, - sym_hl_group, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87972] = 2, + [89583] = 2, ACTIONS(7731), 1, - sym__separator, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87980] = 2, + [89591] = 2, ACTIONS(7733), 1, - aux_sym_argument_token2, + aux_sym_option_name_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87988] = 2, + [89599] = 2, ACTIONS(7735), 1, - anon_sym_EQ2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [87996] = 2, + [89607] = 2, ACTIONS(7737), 1, - aux_sym_normal_statement_token1, + aux_sym_wincmd_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88004] = 2, + [89615] = 2, ACTIONS(7739), 1, - aux_sym__bang_filter_command_argument_token2, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88012] = 2, - ACTIONS(7741), 1, - aux_sym_wincmd_statement_token1, + [89623] = 2, + ACTIONS(7251), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88020] = 2, - ACTIONS(7743), 1, - anon_sym_SQUOTE2, + [89631] = 2, + ACTIONS(2730), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88028] = 2, - ACTIONS(7745), 1, - anon_sym_EQ2, + [89639] = 2, + ACTIONS(7741), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88036] = 2, - ACTIONS(7191), 1, - anon_sym_RBRACE, + [89647] = 2, + ACTIONS(7743), 1, + anon_sym_LPAREN2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [89655] = 2, + ACTIONS(7745), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88044] = 2, + [89663] = 2, ACTIONS(7747), 1, - sym__separator, + sym__separator_first, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88052] = 2, + [89671] = 2, ACTIONS(7749), 1, - anon_sym_EQ2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88060] = 2, + [89679] = 2, ACTIONS(7751), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88068] = 2, + [89687] = 2, ACTIONS(7753), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88076] = 2, + [89695] = 2, ACTIONS(7755), 1, - anon_sym_EQ2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88084] = 2, + [89703] = 2, ACTIONS(7757), 1, - anon_sym_EQ2, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88092] = 2, + [89711] = 2, ACTIONS(7759), 1, - anon_sym_EQ2, + aux_sym_normal_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88100] = 2, + [89719] = 2, ACTIONS(7761), 1, - anon_sym_EQ2, + sym__printable, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [89727] = 2, + ACTIONS(6190), 1, + sym__endtry, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88108] = 2, + [89735] = 2, ACTIONS(7763), 1, - anon_sym_EQ2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88116] = 2, + [89743] = 2, ACTIONS(7765), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88124] = 2, + [89751] = 2, ACTIONS(7767), 1, - sym_hl_group, + sym_au_event, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88132] = 2, + [89759] = 2, ACTIONS(7769), 1, - sym_hl_group, + aux_sym__autocmd_pattern_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88140] = 2, + [89767] = 2, ACTIONS(7771), 1, - anon_sym_EQ2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88148] = 2, - ACTIONS(6123), 1, - sym__endtry, + anon_sym_SQUOTE2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88156] = 2, + [89775] = 2, ACTIONS(7773), 1, - sym__endif, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88164] = 2, + [89783] = 2, ACTIONS(7775), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88172] = 2, + [89791] = 2, ACTIONS(7777), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88180] = 2, + [89799] = 2, ACTIONS(7779), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88188] = 2, + [89807] = 2, ACTIONS(7781), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88196] = 2, + [89815] = 2, ACTIONS(7783), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88204] = 2, + [89823] = 2, ACTIONS(7785), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88212] = 2, + [89831] = 2, ACTIONS(7787), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88220] = 2, + [89839] = 2, ACTIONS(7789), 1, - aux_sym_argument_token2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88228] = 2, + [89847] = 2, ACTIONS(7791), 1, - sym__separator, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88236] = 2, + [89855] = 2, ACTIONS(7793), 1, - sym__separator, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88244] = 2, + [89863] = 2, ACTIONS(7795), 1, - anon_sym_LPAREN2, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88252] = 2, + [89871] = 2, ACTIONS(7797), 1, - aux_sym_argument_token2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88260] = 2, - ACTIONS(2764), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88268] = 2, - ACTIONS(7651), 1, - sym_hl_group, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88276] = 2, + [89879] = 2, ACTIONS(7799), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88284] = 2, + [89887] = 2, ACTIONS(7801), 1, - anon_sym_in, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88292] = 2, + [89895] = 2, ACTIONS(7803), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88300] = 2, + [89903] = 2, ACTIONS(7805), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88308] = 2, + [89911] = 2, ACTIONS(7807), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88316] = 2, + [89919] = 2, ACTIONS(7809), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88324] = 2, + [89927] = 2, ACTIONS(7811), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88332] = 2, + [89935] = 2, ACTIONS(7813), 1, - anon_sym_EQ2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88340] = 2, + [89943] = 2, ACTIONS(7815), 1, - anon_sym_EQ2, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88348] = 2, + [89951] = 2, ACTIONS(7817), 1, - anon_sym_EQ2, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88356] = 2, + [89959] = 2, ACTIONS(7819), 1, - anon_sym_EQ2, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88364] = 2, + [89967] = 2, ACTIONS(7821), 1, - anon_sym_EQ2, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88372] = 2, + [89975] = 2, ACTIONS(7823), 1, - sym_hl_group, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88380] = 2, + [89983] = 2, ACTIONS(7825), 1, - sym_hl_group, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88388] = 2, - ACTIONS(7349), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88396] = 2, - ACTIONS(7345), 1, - anon_sym_LF, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88404] = 2, + [89991] = 2, ACTIONS(7827), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88412] = 2, - ACTIONS(5604), 1, - anon_sym_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88420] = 2, + [89999] = 2, ACTIONS(7829), 1, - aux_sym__hl_quoted_name_token1, + anon_sym_in, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88428] = 2, + [90007] = 2, ACTIONS(7831), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88436] = 2, + [90015] = 2, ACTIONS(7833), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88444] = 2, + [90023] = 2, ACTIONS(7835), 1, - sym_hl_group, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88452] = 2, + [90031] = 2, ACTIONS(7837), 1, - anon_sym_LPAREN2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88460] = 2, + [90039] = 2, ACTIONS(7839), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88468] = 2, - ACTIONS(6004), 1, - sym_hl_group, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88476] = 2, - ACTIONS(6004), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88484] = 2, - ACTIONS(719), 1, - aux_sym_normal_statement_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88492] = 2, + [90047] = 2, ACTIONS(7841), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88500] = 2, + [90055] = 2, ACTIONS(7843), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88508] = 2, + [90063] = 2, ACTIONS(7845), 1, - aux_sym__syn_sync_lines_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88516] = 2, + [90071] = 2, ACTIONS(7847), 1, - anon_sym_BSLASH_RPAREN, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88524] = 2, + [90079] = 2, ACTIONS(7849), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88532] = 2, - ACTIONS(6027), 1, - sym__endtry, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88540] = 2, - ACTIONS(6052), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88548] = 2, + [90087] = 2, ACTIONS(7851), 1, - sym__printable, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88556] = 2, + [90095] = 2, ACTIONS(7853), 1, - anon_sym_EQ2, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88564] = 2, + [90103] = 2, ACTIONS(7855), 1, - anon_sym_EQ2, + sym__separator, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90111] = 2, + ACTIONS(7375), 1, + anon_sym_LF, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88572] = 2, + [90119] = 2, ACTIONS(7857), 1, - anon_sym_EQ2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88580] = 2, + [90127] = 2, ACTIONS(7859), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88588] = 2, + [90135] = 2, ACTIONS(7861), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88596] = 2, - ACTIONS(6180), 1, - sym_spread, + aux_sym__hl_quoted_name_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88604] = 2, + [90143] = 2, ACTIONS(7863), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88612] = 2, + [90151] = 2, ACTIONS(7865), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88620] = 2, + [90159] = 2, ACTIONS(7867), 1, - sym__separator, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88628] = 2, - ACTIONS(7869), 1, - anon_sym_EQ2, + [90167] = 2, + ACTIONS(7857), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88636] = 2, - ACTIONS(7343), 1, - sym_integer_literal, + [90175] = 2, + ACTIONS(7869), 1, + anon_sym_LF, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88644] = 2, - ACTIONS(6908), 1, - anon_sym_RPAREN, + [90183] = 2, + ACTIONS(7871), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88652] = 2, - ACTIONS(7871), 1, - anon_sym_EQ2, + [90191] = 2, + ACTIONS(7373), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88660] = 2, + [90199] = 2, ACTIONS(7873), 1, - ts_builtin_sym_end, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88668] = 2, + [90207] = 2, ACTIONS(7875), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88676] = 2, + [90215] = 2, ACTIONS(7877), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88684] = 2, + [90223] = 2, ACTIONS(7879), 1, - sym_au_event, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88692] = 2, + [90231] = 2, ACTIONS(7881), 1, - sym__separator, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88700] = 2, + [90239] = 2, ACTIONS(7883), 1, - aux_sym_command_statement_token1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90247] = 2, + ACTIONS(6134), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88708] = 2, + [90255] = 2, + ACTIONS(6134), 1, + sym_integer_literal, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90263] = 2, ACTIONS(7885), 1, - anon_sym_EQ2, + aux_sym__syn_sync_lines_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88716] = 2, + [90271] = 2, ACTIONS(7887), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88724] = 2, + [90279] = 2, ACTIONS(7889), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88732] = 2, - ACTIONS(5606), 1, - sym_spread, + [90287] = 2, + ACTIONS(7891), 1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88740] = 2, - ACTIONS(7891), 1, - anon_sym_LPAREN2, + [90295] = 2, + ACTIONS(6810), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88748] = 2, + [90303] = 2, ACTIONS(7893), 1, - aux_sym__autocmd_pattern_token1, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88756] = 2, + [90311] = 2, ACTIONS(7895), 1, - anon_sym_EQ2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88764] = 2, + [90319] = 2, ACTIONS(7897), 1, - sym__endtry, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88772] = 2, + [90327] = 2, ACTIONS(7899), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88780] = 2, + [90335] = 2, ACTIONS(7901), 1, - sym__endif, + sym__printable, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88788] = 2, + [90343] = 2, ACTIONS(7903), 1, - aux_sym__map_lhs_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88796] = 2, - ACTIONS(6025), 1, - sym__endif, + [90351] = 2, + ACTIONS(7905), 1, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88804] = 2, - ACTIONS(7905), 1, - anon_sym_COMMA2, + [90359] = 2, + ACTIONS(719), 1, + sym__separator_first, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88812] = 2, - ACTIONS(6052), 1, + [90367] = 2, + ACTIONS(7907), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88820] = 2, - ACTIONS(7907), 1, - aux_sym_normal_statement_token1, + [90375] = 2, + ACTIONS(7909), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88828] = 2, - ACTIONS(7909), 1, - anon_sym_GT, + [90383] = 2, + ACTIONS(5724), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88836] = 2, + [90391] = 2, ACTIONS(7911), 1, - sym__separator_first, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88844] = 2, + [90399] = 2, ACTIONS(7913), 1, - anon_sym_EQ2, + sym__endtry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90407] = 2, + ACTIONS(5726), 1, + sym_spread, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88852] = 2, + [90415] = 2, ACTIONS(7915), 1, - anon_sym_EQ2, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88860] = 2, + [90423] = 2, ACTIONS(7917), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88868] = 2, + [90431] = 2, ACTIONS(7919), 1, - sym__separator, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88876] = 2, + [90439] = 2, ACTIONS(7921), 1, - anon_sym_LPAREN2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88884] = 2, + [90447] = 2, ACTIONS(7923), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88892] = 2, + [90455] = 2, ACTIONS(7925), 1, - aux_sym__map_lhs_token1, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [88900] = 2, - ACTIONS(5778), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88908] = 2, + [90463] = 2, ACTIONS(7927), 1, - aux_sym__map_lhs_token1, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88916] = 2, + [90471] = 2, ACTIONS(7929), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88924] = 2, + [90479] = 2, ACTIONS(7931), 1, - aux_sym_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88932] = 2, + [90487] = 2, ACTIONS(7933), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88940] = 2, + [90495] = 2, + ACTIONS(6084), 1, + sym__endif, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90503] = 2, ACTIONS(7935), 1, - anon_sym_GT, + aux_sym_command_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88948] = 2, + [90511] = 2, ACTIONS(7937), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88956] = 2, + [90519] = 2, ACTIONS(7939), 1, - sym__endtry, + aux_sym__map_lhs_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88964] = 2, + [90527] = 2, ACTIONS(7941), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88972] = 2, + [90535] = 2, ACTIONS(7943), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88980] = 2, + [90543] = 2, ACTIONS(7945), 1, - aux_sym_normal_statement_token1, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88988] = 2, + [90551] = 2, ACTIONS(7947), 1, - sym__separator, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [88996] = 2, + [90559] = 2, ACTIONS(7949), 1, - aux_sym_wincmd_statement_token1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89004] = 2, + [90567] = 2, ACTIONS(7951), 1, - aux_sym_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89012] = 2, + [90575] = 2, ACTIONS(7953), 1, - aux_sym__bang_filter_command_argument_token2, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89020] = 2, + [90583] = 2, ACTIONS(7955), 1, - sym_command_name, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [89028] = 2, - ACTIONS(5996), 1, - sym__endtry, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89036] = 2, + [90591] = 2, ACTIONS(7957), 1, - aux_sym__syn_sync_lines_token1, + anon_sym_LPAREN2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89044] = 2, + [90599] = 2, ACTIONS(7959), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89052] = 2, + [90607] = 2, ACTIONS(7961), 1, - anon_sym_SQUOTE2, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89060] = 2, + [90615] = 2, ACTIONS(7963), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89068] = 2, - ACTIONS(7965), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, - sym__line_continuation, - sym_line_continuation_comment, - [89076] = 2, - ACTIONS(5998), 1, - sym__endif, + [90623] = 2, + ACTIONS(6148), 1, + sym_spread, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89084] = 2, - ACTIONS(7333), 1, - sym_integer_literal, + [90631] = 2, + ACTIONS(7965), 1, + anon_sym_BSLASH_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89092] = 2, + [90639] = 2, ACTIONS(7967), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89100] = 2, + [90647] = 2, ACTIONS(7969), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89108] = 2, + [90655] = 2, ACTIONS(7971), 1, - anon_sym_EQ2, + aux_sym_normal_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89116] = 2, - ACTIONS(7973), 1, - aux_sym_command_statement_token1, + [90663] = 2, + ACTIONS(6781), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89124] = 2, - ACTIONS(7975), 1, - anon_sym_LF, + [90671] = 2, + ACTIONS(7973), 1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89132] = 2, - ACTIONS(7977), 1, - sym__set, + [90679] = 2, + ACTIONS(7975), 1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89140] = 2, - ACTIONS(6078), 1, - sym__endif, + [90687] = 2, + ACTIONS(7977), 1, + aux_sym__bang_filter_command_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89148] = 2, + [90695] = 2, ACTIONS(7979), 1, sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89156] = 2, + [90703] = 2, ACTIONS(7981), 1, - sym_hl_group, + aux_sym_normal_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89164] = 2, + [90711] = 2, ACTIONS(7983), 1, - anon_sym_EQ2, + aux_sym_wincmd_statement_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90719] = 2, + ACTIONS(719), 1, + aux_sym_normal_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89172] = 2, + [90727] = 2, ACTIONS(7985), 1, - anon_sym_EQ2, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89180] = 2, + [90735] = 2, ACTIONS(7987), 1, - aux_sym_argument_token2, + sym_command_name, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89188] = 2, + [90743] = 2, ACTIONS(7989), 1, - sym_hl_group, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89196] = 2, + [90751] = 2, ACTIONS(7991), 1, sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89204] = 2, + [90759] = 2, ACTIONS(7993), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89212] = 2, + [90767] = 2, ACTIONS(7995), 1, - anon_sym_EQ2, + aux_sym__map_lhs_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90775] = 2, + ACTIONS(7367), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89220] = 2, + [90783] = 2, ACTIONS(7997), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89228] = 2, + [90791] = 2, ACTIONS(7999), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89236] = 2, + [90799] = 2, ACTIONS(8001), 1, - sym_integer_literal, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89244] = 2, + [90807] = 2, ACTIONS(8003), 1, - sym_hl_group, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89252] = 2, + [90815] = 2, ACTIONS(8005), 1, - sym__separator_first, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89260] = 2, + [90823] = 2, ACTIONS(8007), 1, - sym_hl_group, + aux_sym_command_statement_token1, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89268] = 2, + [90831] = 2, ACTIONS(8009), 1, - aux_sym__map_lhs_token1, + sym__separator, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89276] = 2, + [90839] = 2, ACTIONS(8011), 1, - sym__endif, + aux_sym_argument_token2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89284] = 2, + [90847] = 2, ACTIONS(8013), 1, - anon_sym_GT, + sym__set, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89292] = 2, + [90855] = 2, ACTIONS(8015), 1, - sym__separator_first, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89300] = 2, - ACTIONS(8017), 1, - anon_sym_EQ2, + [90863] = 2, + ACTIONS(6120), 1, + sym__endif, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89308] = 2, - ACTIONS(6021), 1, - sym__endtry, + [90871] = 2, + ACTIONS(8017), 1, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89316] = 2, + [90879] = 2, ACTIONS(8019), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89324] = 2, + [90887] = 2, ACTIONS(8021), 1, - sym__separator_first, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89332] = 2, + [90895] = 2, ACTIONS(8023), 1, - sym__endtry, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89340] = 2, + [90903] = 2, ACTIONS(8025), 1, - sym_integer_literal, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89348] = 2, + [90911] = 2, ACTIONS(8027), 1, - aux_sym_command_statement_token1, + anon_sym_GT, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89356] = 2, + [90919] = 2, ACTIONS(8029), 1, - sym__separator, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89364] = 2, + [90927] = 2, ACTIONS(8031), 1, anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89372] = 2, + [90935] = 2, ACTIONS(8033), 1, - aux_sym_normal_statement_token1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90943] = 2, + ACTIONS(7359), 1, + sym_integer_literal, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89380] = 2, + [90951] = 2, ACTIONS(8035), 1, - anon_sym_in, + anon_sym_EQ2, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, - [89388] = 2, + [90959] = 2, ACTIONS(8037), 1, - anon_sym_BSLASH_RPAREN, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90967] = 2, + ACTIONS(8039), 1, + sym__separator_first, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90975] = 2, + ACTIONS(8041), 1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90983] = 2, + ACTIONS(8043), 1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90991] = 2, + ACTIONS(8045), 1, + anon_sym_SQUOTE2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [90999] = 2, + ACTIONS(8047), 1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91007] = 2, + ACTIONS(8049), 1, + sym__separator_first, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91015] = 2, + ACTIONS(8051), 1, + aux_sym_command_statement_token1, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91023] = 2, + ACTIONS(8053), 1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91031] = 2, + ACTIONS(8055), 1, + sym_integer_literal, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91039] = 2, + ACTIONS(8057), 1, + sym__separator_first, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91047] = 2, + ACTIONS(8059), 1, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91055] = 2, + ACTIONS(8061), 1, + sym_hl_group, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91063] = 2, + ACTIONS(6118), 1, + sym__endtry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91071] = 2, + ACTIONS(8063), 1, + sym__endtry, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91079] = 2, + ACTIONS(8065), 1, + anon_sym_EQ2, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91087] = 2, + ACTIONS(8067), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91095] = 2, + ACTIONS(8069), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_continuation, + sym_line_continuation_comment, + [91103] = 2, + ACTIONS(8071), 1, + sym_hl_group, ACTIONS(3), 2, sym__line_continuation, sym_line_continuation_comment, @@ -142270,3093 +143717,3103 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(129)] = 499, [SMALL_STATE(130)] = 580, [SMALL_STATE(131)] = 658, - [SMALL_STATE(132)] = 735, + [SMALL_STATE(132)] = 727, [SMALL_STATE(133)] = 804, [SMALL_STATE(134)] = 870, [SMALL_STATE(135)] = 937, - [SMALL_STATE(136)] = 1038, - [SMALL_STATE(137)] = 1097, - [SMALL_STATE(138)] = 1197, - [SMALL_STATE(139)] = 1255, - [SMALL_STATE(140)] = 1313, - [SMALL_STATE(141)] = 1397, - [SMALL_STATE(142)] = 1481, - [SMALL_STATE(143)] = 1565, - [SMALL_STATE(144)] = 1655, - [SMALL_STATE(145)] = 1745, - [SMALL_STATE(146)] = 1835, - [SMALL_STATE(147)] = 1925, - [SMALL_STATE(148)] = 2009, - [SMALL_STATE(149)] = 2093, - [SMALL_STATE(150)] = 2183, - [SMALL_STATE(151)] = 2267, - [SMALL_STATE(152)] = 2351, - [SMALL_STATE(153)] = 2435, - [SMALL_STATE(154)] = 2519, - [SMALL_STATE(155)] = 2577, - [SMALL_STATE(156)] = 2635, - [SMALL_STATE(157)] = 2693, + [SMALL_STATE(136)] = 1039, + [SMALL_STATE(137)] = 1098, + [SMALL_STATE(138)] = 1199, + [SMALL_STATE(139)] = 1257, + [SMALL_STATE(140)] = 1315, + [SMALL_STATE(141)] = 1406, + [SMALL_STATE(142)] = 1497, + [SMALL_STATE(143)] = 1556, + [SMALL_STATE(144)] = 1615, + [SMALL_STATE(145)] = 1700, + [SMALL_STATE(146)] = 1791, + [SMALL_STATE(147)] = 1850, + [SMALL_STATE(148)] = 1941, + [SMALL_STATE(149)] = 2026, + [SMALL_STATE(150)] = 2111, + [SMALL_STATE(151)] = 2170, + [SMALL_STATE(152)] = 2261, + [SMALL_STATE(153)] = 2352, + [SMALL_STATE(154)] = 2437, + [SMALL_STATE(155)] = 2522, + [SMALL_STATE(156)] = 2581, + [SMALL_STATE(157)] = 2666, [SMALL_STATE(158)] = 2751, - [SMALL_STATE(159)] = 2835, - [SMALL_STATE(160)] = 2893, - [SMALL_STATE(161)] = 2977, - [SMALL_STATE(162)] = 3061, - [SMALL_STATE(163)] = 3151, + [SMALL_STATE(159)] = 2836, + [SMALL_STATE(160)] = 2921, + [SMALL_STATE(161)] = 3006, + [SMALL_STATE(162)] = 3097, + [SMALL_STATE(163)] = 3156, [SMALL_STATE(164)] = 3241, - [SMALL_STATE(165)] = 3299, - [SMALL_STATE(166)] = 3389, - [SMALL_STATE(167)] = 3472, - [SMALL_STATE(168)] = 3529, - [SMALL_STATE(169)] = 3586, - [SMALL_STATE(170)] = 3669, - [SMALL_STATE(171)] = 3752, - [SMALL_STATE(172)] = 3837, - [SMALL_STATE(173)] = 3922, - [SMALL_STATE(174)] = 3979, - [SMALL_STATE(175)] = 4062, - [SMALL_STATE(176)] = 4145, - [SMALL_STATE(177)] = 4232, - [SMALL_STATE(178)] = 4317, - [SMALL_STATE(179)] = 4400, - [SMALL_STATE(180)] = 4483, - [SMALL_STATE(181)] = 4568, - [SMALL_STATE(182)] = 4649, - [SMALL_STATE(183)] = 4732, - [SMALL_STATE(184)] = 4815, - [SMALL_STATE(185)] = 4898, - [SMALL_STATE(186)] = 4983, - [SMALL_STATE(187)] = 5066, - [SMALL_STATE(188)] = 5153, - [SMALL_STATE(189)] = 5236, - [SMALL_STATE(190)] = 5319, - [SMALL_STATE(191)] = 5402, - [SMALL_STATE(192)] = 5459, - [SMALL_STATE(193)] = 5544, - [SMALL_STATE(194)] = 5601, - [SMALL_STATE(195)] = 5658, - [SMALL_STATE(196)] = 5740, - [SMALL_STATE(197)] = 5822, - [SMALL_STATE(198)] = 5904, - [SMALL_STATE(199)] = 5986, - [SMALL_STATE(200)] = 6036, - [SMALL_STATE(201)] = 6118, - [SMALL_STATE(202)] = 6200, - [SMALL_STATE(203)] = 6280, - [SMALL_STATE(204)] = 6362, - [SMALL_STATE(205)] = 6412, - [SMALL_STATE(206)] = 6494, - [SMALL_STATE(207)] = 6544, - [SMALL_STATE(208)] = 6598, - [SMALL_STATE(209)] = 6680, - [SMALL_STATE(210)] = 6762, - [SMALL_STATE(211)] = 6844, - [SMALL_STATE(212)] = 6926, - [SMALL_STATE(213)] = 7008, - [SMALL_STATE(214)] = 7090, - [SMALL_STATE(215)] = 7172, - [SMALL_STATE(216)] = 7254, - [SMALL_STATE(217)] = 7304, - [SMALL_STATE(218)] = 7383, - [SMALL_STATE(219)] = 7462, - [SMALL_STATE(220)] = 7541, - [SMALL_STATE(221)] = 7620, - [SMALL_STATE(222)] = 7699, - [SMALL_STATE(223)] = 7778, - [SMALL_STATE(224)] = 7827, - [SMALL_STATE(225)] = 7876, - [SMALL_STATE(226)] = 7955, - [SMALL_STATE(227)] = 8004, - [SMALL_STATE(228)] = 8083, - [SMALL_STATE(229)] = 8162, - [SMALL_STATE(230)] = 8241, - [SMALL_STATE(231)] = 8320, - [SMALL_STATE(232)] = 8399, - [SMALL_STATE(233)] = 8478, - [SMALL_STATE(234)] = 8557, - [SMALL_STATE(235)] = 8636, - [SMALL_STATE(236)] = 8715, - [SMALL_STATE(237)] = 8794, - [SMALL_STATE(238)] = 8873, - [SMALL_STATE(239)] = 8952, - [SMALL_STATE(240)] = 9031, - [SMALL_STATE(241)] = 9110, - [SMALL_STATE(242)] = 9189, - [SMALL_STATE(243)] = 9268, - [SMALL_STATE(244)] = 9347, - [SMALL_STATE(245)] = 9426, - [SMALL_STATE(246)] = 9505, - [SMALL_STATE(247)] = 9584, - [SMALL_STATE(248)] = 9633, - [SMALL_STATE(249)] = 9686, - [SMALL_STATE(250)] = 9767, - [SMALL_STATE(251)] = 9846, - [SMALL_STATE(252)] = 9925, - [SMALL_STATE(253)] = 10004, - [SMALL_STATE(254)] = 10083, - [SMALL_STATE(255)] = 10162, - [SMALL_STATE(256)] = 10245, - [SMALL_STATE(257)] = 10328, - [SMALL_STATE(258)] = 10407, - [SMALL_STATE(259)] = 10486, - [SMALL_STATE(260)] = 10565, - [SMALL_STATE(261)] = 10644, - [SMALL_STATE(262)] = 10723, - [SMALL_STATE(263)] = 10802, - [SMALL_STATE(264)] = 10881, - [SMALL_STATE(265)] = 10960, - [SMALL_STATE(266)] = 11039, - [SMALL_STATE(267)] = 11117, - [SMALL_STATE(268)] = 11193, - [SMALL_STATE(269)] = 11269, - [SMALL_STATE(270)] = 11345, - [SMALL_STATE(271)] = 11421, - [SMALL_STATE(272)] = 11497, - [SMALL_STATE(273)] = 11573, - [SMALL_STATE(274)] = 11649, - [SMALL_STATE(275)] = 11725, - [SMALL_STATE(276)] = 11801, - [SMALL_STATE(277)] = 11877, - [SMALL_STATE(278)] = 11953, - [SMALL_STATE(279)] = 12029, - [SMALL_STATE(280)] = 12105, - [SMALL_STATE(281)] = 12185, - [SMALL_STATE(282)] = 12261, - [SMALL_STATE(283)] = 12337, - [SMALL_STATE(284)] = 12413, - [SMALL_STATE(285)] = 12489, - [SMALL_STATE(286)] = 12565, - [SMALL_STATE(287)] = 12641, - [SMALL_STATE(288)] = 12717, - [SMALL_STATE(289)] = 12793, - [SMALL_STATE(290)] = 12869, - [SMALL_STATE(291)] = 12945, - [SMALL_STATE(292)] = 13021, - [SMALL_STATE(293)] = 13097, - [SMALL_STATE(294)] = 13173, - [SMALL_STATE(295)] = 13253, - [SMALL_STATE(296)] = 13329, - [SMALL_STATE(297)] = 13405, - [SMALL_STATE(298)] = 13481, - [SMALL_STATE(299)] = 13557, - [SMALL_STATE(300)] = 13633, - [SMALL_STATE(301)] = 13705, - [SMALL_STATE(302)] = 13781, - [SMALL_STATE(303)] = 13857, - [SMALL_STATE(304)] = 13933, - [SMALL_STATE(305)] = 14009, - [SMALL_STATE(306)] = 14089, - [SMALL_STATE(307)] = 14165, - [SMALL_STATE(308)] = 14241, - [SMALL_STATE(309)] = 14317, - [SMALL_STATE(310)] = 14397, - [SMALL_STATE(311)] = 14473, - [SMALL_STATE(312)] = 14521, - [SMALL_STATE(313)] = 14597, - [SMALL_STATE(314)] = 14673, - [SMALL_STATE(315)] = 14729, - [SMALL_STATE(316)] = 14805, - [SMALL_STATE(317)] = 14881, - [SMALL_STATE(318)] = 14957, - [SMALL_STATE(319)] = 15005, - [SMALL_STATE(320)] = 15081, - [SMALL_STATE(321)] = 15129, - [SMALL_STATE(322)] = 15205, - [SMALL_STATE(323)] = 15283, - [SMALL_STATE(324)] = 15359, - [SMALL_STATE(325)] = 15435, - [SMALL_STATE(326)] = 15511, - [SMALL_STATE(327)] = 15587, - [SMALL_STATE(328)] = 15635, - [SMALL_STATE(329)] = 15711, - [SMALL_STATE(330)] = 15787, - [SMALL_STATE(331)] = 15863, - [SMALL_STATE(332)] = 15939, - [SMALL_STATE(333)] = 16015, - [SMALL_STATE(334)] = 16093, - [SMALL_STATE(335)] = 16141, - [SMALL_STATE(336)] = 16217, - [SMALL_STATE(337)] = 16293, - [SMALL_STATE(338)] = 16369, - [SMALL_STATE(339)] = 16445, - [SMALL_STATE(340)] = 16521, - [SMALL_STATE(341)] = 16597, - [SMALL_STATE(342)] = 16675, - [SMALL_STATE(343)] = 16751, - [SMALL_STATE(344)] = 16827, - [SMALL_STATE(345)] = 16903, - [SMALL_STATE(346)] = 16979, - [SMALL_STATE(347)] = 17055, - [SMALL_STATE(348)] = 17131, - [SMALL_STATE(349)] = 17209, - [SMALL_STATE(350)] = 17285, - [SMALL_STATE(351)] = 17361, - [SMALL_STATE(352)] = 17437, - [SMALL_STATE(353)] = 17513, - [SMALL_STATE(354)] = 17565, - [SMALL_STATE(355)] = 17643, - [SMALL_STATE(356)] = 17719, - [SMALL_STATE(357)] = 17795, - [SMALL_STATE(358)] = 17871, - [SMALL_STATE(359)] = 17947, - [SMALL_STATE(360)] = 18023, - [SMALL_STATE(361)] = 18099, - [SMALL_STATE(362)] = 18175, - [SMALL_STATE(363)] = 18251, - [SMALL_STATE(364)] = 18327, - [SMALL_STATE(365)] = 18403, - [SMALL_STATE(366)] = 18479, - [SMALL_STATE(367)] = 18527, - [SMALL_STATE(368)] = 18603, - [SMALL_STATE(369)] = 18651, - [SMALL_STATE(370)] = 18699, - [SMALL_STATE(371)] = 18747, - [SMALL_STATE(372)] = 18795, - [SMALL_STATE(373)] = 18851, - [SMALL_STATE(374)] = 18927, - [SMALL_STATE(375)] = 19003, - [SMALL_STATE(376)] = 19079, - [SMALL_STATE(377)] = 19155, - [SMALL_STATE(378)] = 19231, - [SMALL_STATE(379)] = 19307, - [SMALL_STATE(380)] = 19383, - [SMALL_STATE(381)] = 19441, - [SMALL_STATE(382)] = 19517, - [SMALL_STATE(383)] = 19579, - [SMALL_STATE(384)] = 19655, - [SMALL_STATE(385)] = 19723, - [SMALL_STATE(386)] = 19789, - [SMALL_STATE(387)] = 19865, - [SMALL_STATE(388)] = 19941, - [SMALL_STATE(389)] = 20017, - [SMALL_STATE(390)] = 20093, - [SMALL_STATE(391)] = 20169, - [SMALL_STATE(392)] = 20217, - [SMALL_STATE(393)] = 20293, - [SMALL_STATE(394)] = 20341, - [SMALL_STATE(395)] = 20389, - [SMALL_STATE(396)] = 20465, - [SMALL_STATE(397)] = 20541, - [SMALL_STATE(398)] = 20617, - [SMALL_STATE(399)] = 20693, - [SMALL_STATE(400)] = 20769, - [SMALL_STATE(401)] = 20845, - [SMALL_STATE(402)] = 20921, - [SMALL_STATE(403)] = 20969, - [SMALL_STATE(404)] = 21017, - [SMALL_STATE(405)] = 21093, - [SMALL_STATE(406)] = 21169, - [SMALL_STATE(407)] = 21245, - [SMALL_STATE(408)] = 21321, - [SMALL_STATE(409)] = 21397, - [SMALL_STATE(410)] = 21473, - [SMALL_STATE(411)] = 21549, - [SMALL_STATE(412)] = 21597, - [SMALL_STATE(413)] = 21673, - [SMALL_STATE(414)] = 21749, - [SMALL_STATE(415)] = 21797, - [SMALL_STATE(416)] = 21845, - [SMALL_STATE(417)] = 21893, - [SMALL_STATE(418)] = 21941, - [SMALL_STATE(419)] = 22019, - [SMALL_STATE(420)] = 22081, - [SMALL_STATE(421)] = 22129, - [SMALL_STATE(422)] = 22177, - [SMALL_STATE(423)] = 22253, - [SMALL_STATE(424)] = 22329, - [SMALL_STATE(425)] = 22377, - [SMALL_STATE(426)] = 22425, - [SMALL_STATE(427)] = 22501, - [SMALL_STATE(428)] = 22577, - [SMALL_STATE(429)] = 22653, - [SMALL_STATE(430)] = 22701, - [SMALL_STATE(431)] = 22749, - [SMALL_STATE(432)] = 22825, - [SMALL_STATE(433)] = 22873, - [SMALL_STATE(434)] = 22921, - [SMALL_STATE(435)] = 22969, - [SMALL_STATE(436)] = 23017, - [SMALL_STATE(437)] = 23093, - [SMALL_STATE(438)] = 23141, - [SMALL_STATE(439)] = 23217, - [SMALL_STATE(440)] = 23265, - [SMALL_STATE(441)] = 23341, - [SMALL_STATE(442)] = 23411, - [SMALL_STATE(443)] = 23487, - [SMALL_STATE(444)] = 23563, - [SMALL_STATE(445)] = 23611, - [SMALL_STATE(446)] = 23659, - [SMALL_STATE(447)] = 23707, - [SMALL_STATE(448)] = 23755, - [SMALL_STATE(449)] = 23833, - [SMALL_STATE(450)] = 23881, - [SMALL_STATE(451)] = 23929, - [SMALL_STATE(452)] = 23977, - [SMALL_STATE(453)] = 24025, - [SMALL_STATE(454)] = 24072, - [SMALL_STATE(455)] = 24119, - [SMALL_STATE(456)] = 24166, - [SMALL_STATE(457)] = 24213, - [SMALL_STATE(458)] = 24260, - [SMALL_STATE(459)] = 24307, - [SMALL_STATE(460)] = 24354, - [SMALL_STATE(461)] = 24401, - [SMALL_STATE(462)] = 24466, - [SMALL_STATE(463)] = 24533, - [SMALL_STATE(464)] = 24594, - [SMALL_STATE(465)] = 24651, - [SMALL_STATE(466)] = 24698, - [SMALL_STATE(467)] = 24753, - [SMALL_STATE(468)] = 24800, - [SMALL_STATE(469)] = 24847, - [SMALL_STATE(470)] = 24894, - [SMALL_STATE(471)] = 24941, - [SMALL_STATE(472)] = 24988, - [SMALL_STATE(473)] = 25035, - [SMALL_STATE(474)] = 25082, - [SMALL_STATE(475)] = 25129, - [SMALL_STATE(476)] = 25176, - [SMALL_STATE(477)] = 25231, - [SMALL_STATE(478)] = 25278, - [SMALL_STATE(479)] = 25325, - [SMALL_STATE(480)] = 25372, - [SMALL_STATE(481)] = 25419, - [SMALL_STATE(482)] = 25466, - [SMALL_STATE(483)] = 25517, - [SMALL_STATE(484)] = 25564, - [SMALL_STATE(485)] = 25611, - [SMALL_STATE(486)] = 25658, - [SMALL_STATE(487)] = 25705, - [SMALL_STATE(488)] = 25766, - [SMALL_STATE(489)] = 25813, - [SMALL_STATE(490)] = 25860, - [SMALL_STATE(491)] = 25907, - [SMALL_STATE(492)] = 25954, - [SMALL_STATE(493)] = 26001, - [SMALL_STATE(494)] = 26072, - [SMALL_STATE(495)] = 26119, - [SMALL_STATE(496)] = 26166, - [SMALL_STATE(497)] = 26213, - [SMALL_STATE(498)] = 26260, - [SMALL_STATE(499)] = 26307, - [SMALL_STATE(500)] = 26354, - [SMALL_STATE(501)] = 26401, - [SMALL_STATE(502)] = 26470, - [SMALL_STATE(503)] = 26517, - [SMALL_STATE(504)] = 26569, - [SMALL_STATE(505)] = 26620, - [SMALL_STATE(506)] = 26671, - [SMALL_STATE(507)] = 26722, - [SMALL_STATE(508)] = 26765, - [SMALL_STATE(509)] = 26818, - [SMALL_STATE(510)] = 26871, - [SMALL_STATE(511)] = 26914, - [SMALL_STATE(512)] = 27011, - [SMALL_STATE(513)] = 27064, - [SMALL_STATE(514)] = 27117, - [SMALL_STATE(515)] = 27165, - [SMALL_STATE(516)] = 27213, - [SMALL_STATE(517)] = 27309, - [SMALL_STATE(518)] = 27357, - [SMALL_STATE(519)] = 27398, - [SMALL_STATE(520)] = 27443, - [SMALL_STATE(521)] = 27488, - [SMALL_STATE(522)] = 27529, - [SMALL_STATE(523)] = 27570, - [SMALL_STATE(524)] = 27611, - [SMALL_STATE(525)] = 27656, - [SMALL_STATE(526)] = 27697, - [SMALL_STATE(527)] = 27738, - [SMALL_STATE(528)] = 27783, - [SMALL_STATE(529)] = 27824, - [SMALL_STATE(530)] = 27865, - [SMALL_STATE(531)] = 27906, - [SMALL_STATE(532)] = 27947, - [SMALL_STATE(533)] = 27988, - [SMALL_STATE(534)] = 28029, - [SMALL_STATE(535)] = 28070, - [SMALL_STATE(536)] = 28114, - [SMALL_STATE(537)] = 28158, - [SMALL_STATE(538)] = 28198, - [SMALL_STATE(539)] = 28238, - [SMALL_STATE(540)] = 28281, - [SMALL_STATE(541)] = 28326, - [SMALL_STATE(542)] = 28369, - [SMALL_STATE(543)] = 28408, - [SMALL_STATE(544)] = 28453, - [SMALL_STATE(545)] = 28492, - [SMALL_STATE(546)] = 28537, - [SMALL_STATE(547)] = 28575, - [SMALL_STATE(548)] = 28627, - [SMALL_STATE(549)] = 28665, - [SMALL_STATE(550)] = 28703, - [SMALL_STATE(551)] = 28741, - [SMALL_STATE(552)] = 28779, - [SMALL_STATE(553)] = 28817, - [SMALL_STATE(554)] = 28875, - [SMALL_STATE(555)] = 28933, - [SMALL_STATE(556)] = 28977, - [SMALL_STATE(557)] = 29015, - [SMALL_STATE(558)] = 29053, - [SMALL_STATE(559)] = 29091, - [SMALL_STATE(560)] = 29129, - [SMALL_STATE(561)] = 29187, - [SMALL_STATE(562)] = 29225, - [SMALL_STATE(563)] = 29263, - [SMALL_STATE(564)] = 29307, - [SMALL_STATE(565)] = 29345, - [SMALL_STATE(566)] = 29391, - [SMALL_STATE(567)] = 29429, - [SMALL_STATE(568)] = 29467, - [SMALL_STATE(569)] = 29505, - [SMALL_STATE(570)] = 29543, - [SMALL_STATE(571)] = 29581, - [SMALL_STATE(572)] = 29619, - [SMALL_STATE(573)] = 29657, - [SMALL_STATE(574)] = 29695, - [SMALL_STATE(575)] = 29733, - [SMALL_STATE(576)] = 29771, - [SMALL_STATE(577)] = 29809, - [SMALL_STATE(578)] = 29847, - [SMALL_STATE(579)] = 29891, - [SMALL_STATE(580)] = 29929, - [SMALL_STATE(581)] = 29967, - [SMALL_STATE(582)] = 30005, - [SMALL_STATE(583)] = 30043, - [SMALL_STATE(584)] = 30081, - [SMALL_STATE(585)] = 30119, - [SMALL_STATE(586)] = 30161, - [SMALL_STATE(587)] = 30199, - [SMALL_STATE(588)] = 30237, - [SMALL_STATE(589)] = 30275, - [SMALL_STATE(590)] = 30313, - [SMALL_STATE(591)] = 30351, - [SMALL_STATE(592)] = 30393, - [SMALL_STATE(593)] = 30439, - [SMALL_STATE(594)] = 30477, - [SMALL_STATE(595)] = 30525, - [SMALL_STATE(596)] = 30563, - [SMALL_STATE(597)] = 30615, - [SMALL_STATE(598)] = 30669, - [SMALL_STATE(599)] = 30725, - [SMALL_STATE(600)] = 30762, - [SMALL_STATE(601)] = 30799, - [SMALL_STATE(602)] = 30840, - [SMALL_STATE(603)] = 30881, - [SMALL_STATE(604)] = 30938, - [SMALL_STATE(605)] = 30975, - [SMALL_STATE(606)] = 31016, - [SMALL_STATE(607)] = 31057, - [SMALL_STATE(608)] = 31114, - [SMALL_STATE(609)] = 31155, - [SMALL_STATE(610)] = 31197, - [SMALL_STATE(611)] = 31261, - [SMALL_STATE(612)] = 31319, - [SMALL_STATE(613)] = 31361, - [SMALL_STATE(614)] = 31425, - [SMALL_STATE(615)] = 31491, - [SMALL_STATE(616)] = 31533, - [SMALL_STATE(617)] = 31599, - [SMALL_STATE(618)] = 31665, - [SMALL_STATE(619)] = 31731, - [SMALL_STATE(620)] = 31797, - [SMALL_STATE(621)] = 31839, - [SMALL_STATE(622)] = 31879, - [SMALL_STATE(623)] = 31915, - [SMALL_STATE(624)] = 31981, - [SMALL_STATE(625)] = 32021, - [SMALL_STATE(626)] = 32063, - [SMALL_STATE(627)] = 32129, - [SMALL_STATE(628)] = 32165, - [SMALL_STATE(629)] = 32201, - [SMALL_STATE(630)] = 32267, - [SMALL_STATE(631)] = 32326, - [SMALL_STATE(632)] = 32361, - [SMALL_STATE(633)] = 32418, - [SMALL_STATE(634)] = 32453, - [SMALL_STATE(635)] = 32488, - [SMALL_STATE(636)] = 32533, - [SMALL_STATE(637)] = 32576, - [SMALL_STATE(638)] = 32611, - [SMALL_STATE(639)] = 32646, - [SMALL_STATE(640)] = 32705, - [SMALL_STATE(641)] = 32740, - [SMALL_STATE(642)] = 32775, - [SMALL_STATE(643)] = 32834, - [SMALL_STATE(644)] = 32895, - [SMALL_STATE(645)] = 32930, - [SMALL_STATE(646)] = 32989, - [SMALL_STATE(647)] = 33048, - [SMALL_STATE(648)] = 33107, - [SMALL_STATE(649)] = 33166, - [SMALL_STATE(650)] = 33201, - [SMALL_STATE(651)] = 33262, - [SMALL_STATE(652)] = 33297, - [SMALL_STATE(653)] = 33334, - [SMALL_STATE(654)] = 33371, - [SMALL_STATE(655)] = 33414, - [SMALL_STATE(656)] = 33475, - [SMALL_STATE(657)] = 33510, - [SMALL_STATE(658)] = 33567, - [SMALL_STATE(659)] = 33624, - [SMALL_STATE(660)] = 33661, - [SMALL_STATE(661)] = 33710, - [SMALL_STATE(662)] = 33771, - [SMALL_STATE(663)] = 33808, - [SMALL_STATE(664)] = 33849, - [SMALL_STATE(665)] = 33902, - [SMALL_STATE(666)] = 33959, - [SMALL_STATE(667)] = 34010, - [SMALL_STATE(668)] = 34045, - [SMALL_STATE(669)] = 34102, - [SMALL_STATE(670)] = 34159, - [SMALL_STATE(671)] = 34220, - [SMALL_STATE(672)] = 34255, - [SMALL_STATE(673)] = 34316, - [SMALL_STATE(674)] = 34351, - [SMALL_STATE(675)] = 34386, - [SMALL_STATE(676)] = 34421, - [SMALL_STATE(677)] = 34456, - [SMALL_STATE(678)] = 34491, - [SMALL_STATE(679)] = 34552, - [SMALL_STATE(680)] = 34587, - [SMALL_STATE(681)] = 34636, - [SMALL_STATE(682)] = 34697, - [SMALL_STATE(683)] = 34754, - [SMALL_STATE(684)] = 34789, - [SMALL_STATE(685)] = 34824, - [SMALL_STATE(686)] = 34859, - [SMALL_STATE(687)] = 34894, - [SMALL_STATE(688)] = 34929, - [SMALL_STATE(689)] = 34964, - [SMALL_STATE(690)] = 35021, - [SMALL_STATE(691)] = 35058, - [SMALL_STATE(692)] = 35119, - [SMALL_STATE(693)] = 35180, - [SMALL_STATE(694)] = 35241, - [SMALL_STATE(695)] = 35302, - [SMALL_STATE(696)] = 35337, - [SMALL_STATE(697)] = 35392, - [SMALL_STATE(698)] = 35427, - [SMALL_STATE(699)] = 35462, - [SMALL_STATE(700)] = 35497, - [SMALL_STATE(701)] = 35532, - [SMALL_STATE(702)] = 35567, - [SMALL_STATE(703)] = 35602, - [SMALL_STATE(704)] = 35637, - [SMALL_STATE(705)] = 35672, - [SMALL_STATE(706)] = 35729, - [SMALL_STATE(707)] = 35786, - [SMALL_STATE(708)] = 35821, - [SMALL_STATE(709)] = 35882, - [SMALL_STATE(710)] = 35917, - [SMALL_STATE(711)] = 35952, - [SMALL_STATE(712)] = 35987, - [SMALL_STATE(713)] = 36048, - [SMALL_STATE(714)] = 36109, - [SMALL_STATE(715)] = 36144, - [SMALL_STATE(716)] = 36179, - [SMALL_STATE(717)] = 36235, - [SMALL_STATE(718)] = 36269, - [SMALL_STATE(719)] = 36327, - [SMALL_STATE(720)] = 36361, - [SMALL_STATE(721)] = 36417, - [SMALL_STATE(722)] = 36477, - [SMALL_STATE(723)] = 36529, - [SMALL_STATE(724)] = 36563, - [SMALL_STATE(725)] = 36623, - [SMALL_STATE(726)] = 36683, - [SMALL_STATE(727)] = 36743, - [SMALL_STATE(728)] = 36803, - [SMALL_STATE(729)] = 36863, - [SMALL_STATE(730)] = 36921, - [SMALL_STATE(731)] = 36957, - [SMALL_STATE(732)] = 37015, - [SMALL_STATE(733)] = 37073, - [SMALL_STATE(734)] = 37109, - [SMALL_STATE(735)] = 37165, - [SMALL_STATE(736)] = 37225, - [SMALL_STATE(737)] = 37259, - [SMALL_STATE(738)] = 37325, - [SMALL_STATE(739)] = 37361, - [SMALL_STATE(740)] = 37421, - [SMALL_STATE(741)] = 37481, - [SMALL_STATE(742)] = 37515, - [SMALL_STATE(743)] = 37549, - [SMALL_STATE(744)] = 37609, - [SMALL_STATE(745)] = 37669, - [SMALL_STATE(746)] = 37703, - [SMALL_STATE(747)] = 37741, - [SMALL_STATE(748)] = 37775, - [SMALL_STATE(749)] = 37809, - [SMALL_STATE(750)] = 37843, - [SMALL_STATE(751)] = 37877, - [SMALL_STATE(752)] = 37911, - [SMALL_STATE(753)] = 37945, - [SMALL_STATE(754)] = 37987, - [SMALL_STATE(755)] = 38047, - [SMALL_STATE(756)] = 38081, - [SMALL_STATE(757)] = 38115, - [SMALL_STATE(758)] = 38149, - [SMALL_STATE(759)] = 38209, - [SMALL_STATE(760)] = 38265, - [SMALL_STATE(761)] = 38323, - [SMALL_STATE(762)] = 38357, - [SMALL_STATE(763)] = 38391, - [SMALL_STATE(764)] = 38425, - [SMALL_STATE(765)] = 38483, - [SMALL_STATE(766)] = 38541, - [SMALL_STATE(767)] = 38595, - [SMALL_STATE(768)] = 38629, - [SMALL_STATE(769)] = 38663, - [SMALL_STATE(770)] = 38697, - [SMALL_STATE(771)] = 38731, - [SMALL_STATE(772)] = 38787, - [SMALL_STATE(773)] = 38845, - [SMALL_STATE(774)] = 38901, - [SMALL_STATE(775)] = 38957, - [SMALL_STATE(776)] = 38991, - [SMALL_STATE(777)] = 39025, - [SMALL_STATE(778)] = 39081, - [SMALL_STATE(779)] = 39115, - [SMALL_STATE(780)] = 39149, - [SMALL_STATE(781)] = 39207, - [SMALL_STATE(782)] = 39265, - [SMALL_STATE(783)] = 39323, - [SMALL_STATE(784)] = 39383, - [SMALL_STATE(785)] = 39417, - [SMALL_STATE(786)] = 39451, - [SMALL_STATE(787)] = 39499, - [SMALL_STATE(788)] = 39533, - [SMALL_STATE(789)] = 39593, - [SMALL_STATE(790)] = 39627, - [SMALL_STATE(791)] = 39661, - [SMALL_STATE(792)] = 39695, - [SMALL_STATE(793)] = 39729, - [SMALL_STATE(794)] = 39763, - [SMALL_STATE(795)] = 39819, - [SMALL_STATE(796)] = 39855, - [SMALL_STATE(797)] = 39891, - [SMALL_STATE(798)] = 39951, - [SMALL_STATE(799)] = 39985, - [SMALL_STATE(800)] = 40019, - [SMALL_STATE(801)] = 40067, - [SMALL_STATE(802)] = 40125, - [SMALL_STATE(803)] = 40159, - [SMALL_STATE(804)] = 40217, - [SMALL_STATE(805)] = 40273, - [SMALL_STATE(806)] = 40317, - [SMALL_STATE(807)] = 40375, - [SMALL_STATE(808)] = 40431, - [SMALL_STATE(809)] = 40487, - [SMALL_STATE(810)] = 40521, - [SMALL_STATE(811)] = 40571, - [SMALL_STATE(812)] = 40627, - [SMALL_STATE(813)] = 40661, - [SMALL_STATE(814)] = 40703, - [SMALL_STATE(815)] = 40737, - [SMALL_STATE(816)] = 40792, - [SMALL_STATE(817)] = 40829, - [SMALL_STATE(818)] = 40884, - [SMALL_STATE(819)] = 40939, - [SMALL_STATE(820)] = 40994, - [SMALL_STATE(821)] = 41027, - [SMALL_STATE(822)] = 41084, - [SMALL_STATE(823)] = 41141, - [SMALL_STATE(824)] = 41196, - [SMALL_STATE(825)] = 41233, - [SMALL_STATE(826)] = 41288, - [SMALL_STATE(827)] = 41343, - [SMALL_STATE(828)] = 41398, - [SMALL_STATE(829)] = 41453, - [SMALL_STATE(830)] = 41508, - [SMALL_STATE(831)] = 41563, - [SMALL_STATE(832)] = 41618, - [SMALL_STATE(833)] = 41651, - [SMALL_STATE(834)] = 41706, - [SMALL_STATE(835)] = 41761, - [SMALL_STATE(836)] = 41798, - [SMALL_STATE(837)] = 41847, - [SMALL_STATE(838)] = 41880, - [SMALL_STATE(839)] = 41935, - [SMALL_STATE(840)] = 42000, - [SMALL_STATE(841)] = 42055, - [SMALL_STATE(842)] = 42110, - [SMALL_STATE(843)] = 42173, - [SMALL_STATE(844)] = 42228, - [SMALL_STATE(845)] = 42291, - [SMALL_STATE(846)] = 42332, - [SMALL_STATE(847)] = 42387, - [SMALL_STATE(848)] = 42420, - [SMALL_STATE(849)] = 42453, - [SMALL_STATE(850)] = 42508, - [SMALL_STATE(851)] = 42563, - [SMALL_STATE(852)] = 42618, - [SMALL_STATE(853)] = 42673, - [SMALL_STATE(854)] = 42728, - [SMALL_STATE(855)] = 42783, - [SMALL_STATE(856)] = 42820, - [SMALL_STATE(857)] = 42869, - [SMALL_STATE(858)] = 42924, - [SMALL_STATE(859)] = 42979, - [SMALL_STATE(860)] = 43020, - [SMALL_STATE(861)] = 43057, - [SMALL_STATE(862)] = 43096, - [SMALL_STATE(863)] = 43151, - [SMALL_STATE(864)] = 43206, - [SMALL_STATE(865)] = 43261, - [SMALL_STATE(866)] = 43316, - [SMALL_STATE(867)] = 43371, - [SMALL_STATE(868)] = 43426, - [SMALL_STATE(869)] = 43481, - [SMALL_STATE(870)] = 43514, - [SMALL_STATE(871)] = 43569, - [SMALL_STATE(872)] = 43602, - [SMALL_STATE(873)] = 43635, - [SMALL_STATE(874)] = 43692, - [SMALL_STATE(875)] = 43733, - [SMALL_STATE(876)] = 43766, - [SMALL_STATE(877)] = 43821, - [SMALL_STATE(878)] = 43876, - [SMALL_STATE(879)] = 43939, - [SMALL_STATE(880)] = 43994, - [SMALL_STATE(881)] = 44049, - [SMALL_STATE(882)] = 44090, - [SMALL_STATE(883)] = 44145, - [SMALL_STATE(884)] = 44200, - [SMALL_STATE(885)] = 44255, - [SMALL_STATE(886)] = 44312, - [SMALL_STATE(887)] = 44349, - [SMALL_STATE(888)] = 44404, - [SMALL_STATE(889)] = 44459, - [SMALL_STATE(890)] = 44514, - [SMALL_STATE(891)] = 44569, - [SMALL_STATE(892)] = 44626, - [SMALL_STATE(893)] = 44681, - [SMALL_STATE(894)] = 44736, - [SMALL_STATE(895)] = 44769, - [SMALL_STATE(896)] = 44824, - [SMALL_STATE(897)] = 44879, - [SMALL_STATE(898)] = 44934, - [SMALL_STATE(899)] = 44989, - [SMALL_STATE(900)] = 45044, - [SMALL_STATE(901)] = 45077, - [SMALL_STATE(902)] = 45110, - [SMALL_STATE(903)] = 45165, - [SMALL_STATE(904)] = 45220, - [SMALL_STATE(905)] = 45275, - [SMALL_STATE(906)] = 45330, - [SMALL_STATE(907)] = 45385, - [SMALL_STATE(908)] = 45434, - [SMALL_STATE(909)] = 45471, - [SMALL_STATE(910)] = 45508, - [SMALL_STATE(911)] = 45563, - [SMALL_STATE(912)] = 45618, - [SMALL_STATE(913)] = 45673, - [SMALL_STATE(914)] = 45728, - [SMALL_STATE(915)] = 45783, - [SMALL_STATE(916)] = 45838, - [SMALL_STATE(917)] = 45893, - [SMALL_STATE(918)] = 45948, - [SMALL_STATE(919)] = 45985, - [SMALL_STATE(920)] = 46040, - [SMALL_STATE(921)] = 46095, - [SMALL_STATE(922)] = 46150, - [SMALL_STATE(923)] = 46205, - [SMALL_STATE(924)] = 46260, - [SMALL_STATE(925)] = 46315, - [SMALL_STATE(926)] = 46370, - [SMALL_STATE(927)] = 46425, - [SMALL_STATE(928)] = 46480, - [SMALL_STATE(929)] = 46535, - [SMALL_STATE(930)] = 46590, - [SMALL_STATE(931)] = 46627, - [SMALL_STATE(932)] = 46664, - [SMALL_STATE(933)] = 46719, - [SMALL_STATE(934)] = 46768, - [SMALL_STATE(935)] = 46830, - [SMALL_STATE(936)] = 46892, - [SMALL_STATE(937)] = 46944, - [SMALL_STATE(938)] = 46980, - [SMALL_STATE(939)] = 47032, - [SMALL_STATE(940)] = 47086, - [SMALL_STATE(941)] = 47118, - [SMALL_STATE(942)] = 47162, - [SMALL_STATE(943)] = 47198, - [SMALL_STATE(944)] = 47250, - [SMALL_STATE(945)] = 47286, - [SMALL_STATE(946)] = 47318, - [SMALL_STATE(947)] = 47362, - [SMALL_STATE(948)] = 47414, - [SMALL_STATE(949)] = 47446, - [SMALL_STATE(950)] = 47478, - [SMALL_STATE(951)] = 47530, - [SMALL_STATE(952)] = 47582, - [SMALL_STATE(953)] = 47618, - [SMALL_STATE(954)] = 47654, - [SMALL_STATE(955)] = 47706, - [SMALL_STATE(956)] = 47744, - [SMALL_STATE(957)] = 47780, - [SMALL_STATE(958)] = 47812, - [SMALL_STATE(959)] = 47856, - [SMALL_STATE(960)] = 47908, - [SMALL_STATE(961)] = 47970, - [SMALL_STATE(962)] = 48006, - [SMALL_STATE(963)] = 48050, - [SMALL_STATE(964)] = 48082, - [SMALL_STATE(965)] = 48114, - [SMALL_STATE(966)] = 48146, - [SMALL_STATE(967)] = 48190, - [SMALL_STATE(968)] = 48234, - [SMALL_STATE(969)] = 48270, - [SMALL_STATE(970)] = 48308, - [SMALL_STATE(971)] = 48340, - [SMALL_STATE(972)] = 48376, - [SMALL_STATE(973)] = 48420, - [SMALL_STATE(974)] = 48452, - [SMALL_STATE(975)] = 48484, - [SMALL_STATE(976)] = 48528, - [SMALL_STATE(977)] = 48560, - [SMALL_STATE(978)] = 48601, - [SMALL_STATE(979)] = 48634, - [SMALL_STATE(980)] = 48669, - [SMALL_STATE(981)] = 48716, - [SMALL_STATE(982)] = 48763, - [SMALL_STATE(983)] = 48814, - [SMALL_STATE(984)] = 48849, - [SMALL_STATE(985)] = 48880, - [SMALL_STATE(986)] = 48911, - [SMALL_STATE(987)] = 48942, - [SMALL_STATE(988)] = 48981, - [SMALL_STATE(989)] = 49016, - [SMALL_STATE(990)] = 49057, - [SMALL_STATE(991)] = 49092, - [SMALL_STATE(992)] = 49143, - [SMALL_STATE(993)] = 49184, - [SMALL_STATE(994)] = 49219, - [SMALL_STATE(995)] = 49260, - [SMALL_STATE(996)] = 49299, - [SMALL_STATE(997)] = 49338, - [SMALL_STATE(998)] = 49385, - [SMALL_STATE(999)] = 49432, - [SMALL_STATE(1000)] = 49463, - [SMALL_STATE(1001)] = 49514, - [SMALL_STATE(1002)] = 49565, - [SMALL_STATE(1003)] = 49598, - [SMALL_STATE(1004)] = 49633, - [SMALL_STATE(1005)] = 49666, - [SMALL_STATE(1006)] = 49705, - [SMALL_STATE(1007)] = 49746, - [SMALL_STATE(1008)] = 49788, - [SMALL_STATE(1009)] = 49818, - [SMALL_STATE(1010)] = 49864, - [SMALL_STATE(1011)] = 49906, - [SMALL_STATE(1012)] = 49936, - [SMALL_STATE(1013)] = 49966, - [SMALL_STATE(1014)] = 49996, - [SMALL_STATE(1015)] = 50042, - [SMALL_STATE(1016)] = 50084, - [SMALL_STATE(1017)] = 50114, - [SMALL_STATE(1018)] = 50144, - [SMALL_STATE(1019)] = 50174, - [SMALL_STATE(1020)] = 50216, - [SMALL_STATE(1021)] = 50262, - [SMALL_STATE(1022)] = 50296, - [SMALL_STATE(1023)] = 50354, - [SMALL_STATE(1024)] = 50388, - [SMALL_STATE(1025)] = 50418, - [SMALL_STATE(1026)] = 50452, - [SMALL_STATE(1027)] = 50486, - [SMALL_STATE(1028)] = 50516, - [SMALL_STATE(1029)] = 50546, - [SMALL_STATE(1030)] = 50578, - [SMALL_STATE(1031)] = 50610, - [SMALL_STATE(1032)] = 50644, - [SMALL_STATE(1033)] = 50690, - [SMALL_STATE(1034)] = 50720, - [SMALL_STATE(1035)] = 50762, - [SMALL_STATE(1036)] = 50804, - [SMALL_STATE(1037)] = 50846, - [SMALL_STATE(1038)] = 50876, - [SMALL_STATE(1039)] = 50906, - [SMALL_STATE(1040)] = 50936, - [SMALL_STATE(1041)] = 50966, - [SMALL_STATE(1042)] = 50996, - [SMALL_STATE(1043)] = 51054, - [SMALL_STATE(1044)] = 51100, - [SMALL_STATE(1045)] = 51132, - [SMALL_STATE(1046)] = 51174, - [SMALL_STATE(1047)] = 51204, - [SMALL_STATE(1048)] = 51234, - [SMALL_STATE(1049)] = 51280, - [SMALL_STATE(1050)] = 51326, - [SMALL_STATE(1051)] = 51356, - [SMALL_STATE(1052)] = 51386, - [SMALL_STATE(1053)] = 51416, - [SMALL_STATE(1054)] = 51446, - [SMALL_STATE(1055)] = 51479, - [SMALL_STATE(1056)] = 51512, - [SMALL_STATE(1057)] = 51557, - [SMALL_STATE(1058)] = 51602, - [SMALL_STATE(1059)] = 51649, - [SMALL_STATE(1060)] = 51694, - [SMALL_STATE(1061)] = 51739, - [SMALL_STATE(1062)] = 51784, - [SMALL_STATE(1063)] = 51813, - [SMALL_STATE(1064)] = 51842, - [SMALL_STATE(1065)] = 51887, - [SMALL_STATE(1066)] = 51920, - [SMALL_STATE(1067)] = 51965, - [SMALL_STATE(1068)] = 52012, - [SMALL_STATE(1069)] = 52059, - [SMALL_STATE(1070)] = 52088, - [SMALL_STATE(1071)] = 52135, - [SMALL_STATE(1072)] = 52164, - [SMALL_STATE(1073)] = 52197, - [SMALL_STATE(1074)] = 52226, - [SMALL_STATE(1075)] = 52259, - [SMALL_STATE(1076)] = 52292, - [SMALL_STATE(1077)] = 52336, - [SMALL_STATE(1078)] = 52368, - [SMALL_STATE(1079)] = 52416, - [SMALL_STATE(1080)] = 52444, - [SMALL_STATE(1081)] = 52472, - [SMALL_STATE(1082)] = 52500, - [SMALL_STATE(1083)] = 52528, - [SMALL_STATE(1084)] = 52560, - [SMALL_STATE(1085)] = 52588, - [SMALL_STATE(1086)] = 52616, - [SMALL_STATE(1087)] = 52644, - [SMALL_STATE(1088)] = 52676, - [SMALL_STATE(1089)] = 52704, - [SMALL_STATE(1090)] = 52732, - [SMALL_STATE(1091)] = 52760, - [SMALL_STATE(1092)] = 52788, - [SMALL_STATE(1093)] = 52820, - [SMALL_STATE(1094)] = 52852, - [SMALL_STATE(1095)] = 52897, - [SMALL_STATE(1096)] = 52928, - [SMALL_STATE(1097)] = 52955, - [SMALL_STATE(1098)] = 52982, - [SMALL_STATE(1099)] = 53015, - [SMALL_STATE(1100)] = 53042, - [SMALL_STATE(1101)] = 53073, - [SMALL_STATE(1102)] = 53110, - [SMALL_STATE(1103)] = 53157, - [SMALL_STATE(1104)] = 53204, - [SMALL_STATE(1105)] = 53235, - [SMALL_STATE(1106)] = 53262, - [SMALL_STATE(1107)] = 53289, - [SMALL_STATE(1108)] = 53320, - [SMALL_STATE(1109)] = 53351, - [SMALL_STATE(1110)] = 53384, - [SMALL_STATE(1111)] = 53411, - [SMALL_STATE(1112)] = 53438, - [SMALL_STATE(1113)] = 53465, - [SMALL_STATE(1114)] = 53509, - [SMALL_STATE(1115)] = 53547, - [SMALL_STATE(1116)] = 53589, - [SMALL_STATE(1117)] = 53619, - [SMALL_STATE(1118)] = 53645, - [SMALL_STATE(1119)] = 53689, - [SMALL_STATE(1120)] = 53715, - [SMALL_STATE(1121)] = 53741, - [SMALL_STATE(1122)] = 53767, - [SMALL_STATE(1123)] = 53803, - [SMALL_STATE(1124)] = 53833, - [SMALL_STATE(1125)] = 53859, - [SMALL_STATE(1126)] = 53885, - [SMALL_STATE(1127)] = 53911, - [SMALL_STATE(1128)] = 53937, - [SMALL_STATE(1129)] = 53967, - [SMALL_STATE(1130)] = 53993, - [SMALL_STATE(1131)] = 54021, - [SMALL_STATE(1132)] = 54045, - [SMALL_STATE(1133)] = 54091, - [SMALL_STATE(1134)] = 54131, - [SMALL_STATE(1135)] = 54157, - [SMALL_STATE(1136)] = 54187, - [SMALL_STATE(1137)] = 54213, - [SMALL_STATE(1138)] = 54245, - [SMALL_STATE(1139)] = 54279, - [SMALL_STATE(1140)] = 54305, - [SMALL_STATE(1141)] = 54331, - [SMALL_STATE(1142)] = 54357, - [SMALL_STATE(1143)] = 54383, - [SMALL_STATE(1144)] = 54409, - [SMALL_STATE(1145)] = 54435, - [SMALL_STATE(1146)] = 54476, - [SMALL_STATE(1147)] = 54501, - [SMALL_STATE(1148)] = 54542, - [SMALL_STATE(1149)] = 54577, - [SMALL_STATE(1150)] = 54600, - [SMALL_STATE(1151)] = 54625, - [SMALL_STATE(1152)] = 54650, - [SMALL_STATE(1153)] = 54675, - [SMALL_STATE(1154)] = 54700, - [SMALL_STATE(1155)] = 54729, - [SMALL_STATE(1156)] = 54754, - [SMALL_STATE(1157)] = 54795, - [SMALL_STATE(1158)] = 54838, - [SMALL_STATE(1159)] = 54867, - [SMALL_STATE(1160)] = 54910, - [SMALL_STATE(1161)] = 54935, - [SMALL_STATE(1162)] = 54972, - [SMALL_STATE(1163)] = 55001, - [SMALL_STATE(1164)] = 55044, - [SMALL_STATE(1165)] = 55069, - [SMALL_STATE(1166)] = 55112, - [SMALL_STATE(1167)] = 55155, - [SMALL_STATE(1168)] = 55192, - [SMALL_STATE(1169)] = 55215, - [SMALL_STATE(1170)] = 55238, - [SMALL_STATE(1171)] = 55275, - [SMALL_STATE(1172)] = 55314, - [SMALL_STATE(1173)] = 55349, - [SMALL_STATE(1174)] = 55374, - [SMALL_STATE(1175)] = 55399, - [SMALL_STATE(1176)] = 55424, - [SMALL_STATE(1177)] = 55462, - [SMALL_STATE(1178)] = 55502, - [SMALL_STATE(1179)] = 55526, - [SMALL_STATE(1180)] = 55566, - [SMALL_STATE(1181)] = 55606, - [SMALL_STATE(1182)] = 55630, - [SMALL_STATE(1183)] = 55668, - [SMALL_STATE(1184)] = 55696, - [SMALL_STATE(1185)] = 55720, - [SMALL_STATE(1186)] = 55744, - [SMALL_STATE(1187)] = 55768, - [SMALL_STATE(1188)] = 55792, - [SMALL_STATE(1189)] = 55832, - [SMALL_STATE(1190)] = 55860, - [SMALL_STATE(1191)] = 55890, - [SMALL_STATE(1192)] = 55926, - [SMALL_STATE(1193)] = 55950, - [SMALL_STATE(1194)] = 55974, - [SMALL_STATE(1195)] = 55998, - [SMALL_STATE(1196)] = 56036, - [SMALL_STATE(1197)] = 56074, - [SMALL_STATE(1198)] = 56112, - [SMALL_STATE(1199)] = 56136, - [SMALL_STATE(1200)] = 56166, - [SMALL_STATE(1201)] = 56194, - [SMALL_STATE(1202)] = 56218, - [SMALL_STATE(1203)] = 56242, - [SMALL_STATE(1204)] = 56266, - [SMALL_STATE(1205)] = 56292, - [SMALL_STATE(1206)] = 56320, - [SMALL_STATE(1207)] = 56358, - [SMALL_STATE(1208)] = 56388, - [SMALL_STATE(1209)] = 56412, - [SMALL_STATE(1210)] = 56458, - [SMALL_STATE(1211)] = 56486, - [SMALL_STATE(1212)] = 56510, - [SMALL_STATE(1213)] = 56538, - [SMALL_STATE(1214)] = 56572, - [SMALL_STATE(1215)] = 56610, - [SMALL_STATE(1216)] = 56644, - [SMALL_STATE(1217)] = 56674, - [SMALL_STATE(1218)] = 56704, - [SMALL_STATE(1219)] = 56736, - [SMALL_STATE(1220)] = 56766, - [SMALL_STATE(1221)] = 56790, - [SMALL_STATE(1222)] = 56818, - [SMALL_STATE(1223)] = 56854, - [SMALL_STATE(1224)] = 56888, - [SMALL_STATE(1225)] = 56922, - [SMALL_STATE(1226)] = 56950, - [SMALL_STATE(1227)] = 56984, - [SMALL_STATE(1228)] = 57016, - [SMALL_STATE(1229)] = 57044, - [SMALL_STATE(1230)] = 57072, - [SMALL_STATE(1231)] = 57096, - [SMALL_STATE(1232)] = 57119, - [SMALL_STATE(1233)] = 57156, - [SMALL_STATE(1234)] = 57179, - [SMALL_STATE(1235)] = 57202, - [SMALL_STATE(1236)] = 57239, - [SMALL_STATE(1237)] = 57274, - [SMALL_STATE(1238)] = 57297, - [SMALL_STATE(1239)] = 57320, - [SMALL_STATE(1240)] = 57349, - [SMALL_STATE(1241)] = 57382, - [SMALL_STATE(1242)] = 57411, - [SMALL_STATE(1243)] = 57448, - [SMALL_STATE(1244)] = 57471, - [SMALL_STATE(1245)] = 57496, - [SMALL_STATE(1246)] = 57525, - [SMALL_STATE(1247)] = 57550, - [SMALL_STATE(1248)] = 57579, - [SMALL_STATE(1249)] = 57602, - [SMALL_STATE(1250)] = 57625, - [SMALL_STATE(1251)] = 57648, - [SMALL_STATE(1252)] = 57671, - [SMALL_STATE(1253)] = 57710, - [SMALL_STATE(1254)] = 57749, - [SMALL_STATE(1255)] = 57776, - [SMALL_STATE(1256)] = 57799, - [SMALL_STATE(1257)] = 57836, - [SMALL_STATE(1258)] = 57859, - [SMALL_STATE(1259)] = 57882, - [SMALL_STATE(1260)] = 57905, - [SMALL_STATE(1261)] = 57932, - [SMALL_STATE(1262)] = 57955, - [SMALL_STATE(1263)] = 57984, - [SMALL_STATE(1264)] = 58013, - [SMALL_STATE(1265)] = 58052, - [SMALL_STATE(1266)] = 58089, - [SMALL_STATE(1267)] = 58112, - [SMALL_STATE(1268)] = 58151, - [SMALL_STATE(1269)] = 58178, - [SMALL_STATE(1270)] = 58205, - [SMALL_STATE(1271)] = 58230, - [SMALL_STATE(1272)] = 58253, - [SMALL_STATE(1273)] = 58280, - [SMALL_STATE(1274)] = 58307, - [SMALL_STATE(1275)] = 58342, - [SMALL_STATE(1276)] = 58363, - [SMALL_STATE(1277)] = 58394, - [SMALL_STATE(1278)] = 58419, - [SMALL_STATE(1279)] = 58452, - [SMALL_STATE(1280)] = 58485, - [SMALL_STATE(1281)] = 58518, - [SMALL_STATE(1282)] = 58539, - [SMALL_STATE(1283)] = 58560, - [SMALL_STATE(1284)] = 58597, - [SMALL_STATE(1285)] = 58630, - [SMALL_STATE(1286)] = 58667, - [SMALL_STATE(1287)] = 58692, - [SMALL_STATE(1288)] = 58719, - [SMALL_STATE(1289)] = 58742, - [SMALL_STATE(1290)] = 58765, - [SMALL_STATE(1291)] = 58786, - [SMALL_STATE(1292)] = 58825, - [SMALL_STATE(1293)] = 58852, - [SMALL_STATE(1294)] = 58883, - [SMALL_STATE(1295)] = 58916, - [SMALL_STATE(1296)] = 58943, - [SMALL_STATE(1297)] = 58980, - [SMALL_STATE(1298)] = 59007, - [SMALL_STATE(1299)] = 59030, - [SMALL_STATE(1300)] = 59067, - [SMALL_STATE(1301)] = 59092, - [SMALL_STATE(1302)] = 59129, - [SMALL_STATE(1303)] = 59166, - [SMALL_STATE(1304)] = 59191, - [SMALL_STATE(1305)] = 59220, - [SMALL_STATE(1306)] = 59249, - [SMALL_STATE(1307)] = 59278, - [SMALL_STATE(1308)] = 59301, - [SMALL_STATE(1309)] = 59330, - [SMALL_STATE(1310)] = 59355, - [SMALL_STATE(1311)] = 59388, - [SMALL_STATE(1312)] = 59421, - [SMALL_STATE(1313)] = 59450, - [SMALL_STATE(1314)] = 59473, - [SMALL_STATE(1315)] = 59498, - [SMALL_STATE(1316)] = 59521, - [SMALL_STATE(1317)] = 59566, - [SMALL_STATE(1318)] = 59589, - [SMALL_STATE(1319)] = 59609, - [SMALL_STATE(1320)] = 59629, - [SMALL_STATE(1321)] = 59665, - [SMALL_STATE(1322)] = 59689, - [SMALL_STATE(1323)] = 59709, - [SMALL_STATE(1324)] = 59735, - [SMALL_STATE(1325)] = 59769, - [SMALL_STATE(1326)] = 59797, - [SMALL_STATE(1327)] = 59823, - [SMALL_STATE(1328)] = 59843, - [SMALL_STATE(1329)] = 59871, - [SMALL_STATE(1330)] = 59893, - [SMALL_STATE(1331)] = 59917, - [SMALL_STATE(1332)] = 59941, - [SMALL_STATE(1333)] = 59975, - [SMALL_STATE(1334)] = 59997, - [SMALL_STATE(1335)] = 60029, - [SMALL_STATE(1336)] = 60063, - [SMALL_STATE(1337)] = 60085, - [SMALL_STATE(1338)] = 60113, - [SMALL_STATE(1339)] = 60147, - [SMALL_STATE(1340)] = 60181, - [SMALL_STATE(1341)] = 60209, - [SMALL_STATE(1342)] = 60237, - [SMALL_STATE(1343)] = 60259, - [SMALL_STATE(1344)] = 60287, - [SMALL_STATE(1345)] = 60309, - [SMALL_STATE(1346)] = 60343, - [SMALL_STATE(1347)] = 60369, - [SMALL_STATE(1348)] = 60405, - [SMALL_STATE(1349)] = 60427, - [SMALL_STATE(1350)] = 60455, - [SMALL_STATE(1351)] = 60483, - [SMALL_STATE(1352)] = 60517, - [SMALL_STATE(1353)] = 60545, - [SMALL_STATE(1354)] = 60573, - [SMALL_STATE(1355)] = 60601, - [SMALL_STATE(1356)] = 60621, - [SMALL_STATE(1357)] = 60643, - [SMALL_STATE(1358)] = 60669, - [SMALL_STATE(1359)] = 60689, - [SMALL_STATE(1360)] = 60725, - [SMALL_STATE(1361)] = 60745, - [SMALL_STATE(1362)] = 60765, - [SMALL_STATE(1363)] = 60797, - [SMALL_STATE(1364)] = 60825, - [SMALL_STATE(1365)] = 60849, - [SMALL_STATE(1366)] = 60877, - [SMALL_STATE(1367)] = 60899, - [SMALL_STATE(1368)] = 60935, - [SMALL_STATE(1369)] = 60969, - [SMALL_STATE(1370)] = 60991, - [SMALL_STATE(1371)] = 61019, - [SMALL_STATE(1372)] = 61047, - [SMALL_STATE(1373)] = 61081, - [SMALL_STATE(1374)] = 61109, - [SMALL_STATE(1375)] = 61133, - [SMALL_STATE(1376)] = 61169, - [SMALL_STATE(1377)] = 61193, - [SMALL_STATE(1378)] = 61221, - [SMALL_STATE(1379)] = 61261, - [SMALL_STATE(1380)] = 61283, - [SMALL_STATE(1381)] = 61321, - [SMALL_STATE(1382)] = 61349, - [SMALL_STATE(1383)] = 61383, - [SMALL_STATE(1384)] = 61405, - [SMALL_STATE(1385)] = 61429, - [SMALL_STATE(1386)] = 61457, - [SMALL_STATE(1387)] = 61481, - [SMALL_STATE(1388)] = 61508, - [SMALL_STATE(1389)] = 61535, - [SMALL_STATE(1390)] = 61558, - [SMALL_STATE(1391)] = 61581, - [SMALL_STATE(1392)] = 61608, - [SMALL_STATE(1393)] = 61643, - [SMALL_STATE(1394)] = 61664, - [SMALL_STATE(1395)] = 61697, - [SMALL_STATE(1396)] = 61718, - [SMALL_STATE(1397)] = 61751, - [SMALL_STATE(1398)] = 61784, - [SMALL_STATE(1399)] = 61817, - [SMALL_STATE(1400)] = 61846, - [SMALL_STATE(1401)] = 61875, - [SMALL_STATE(1402)] = 61908, - [SMALL_STATE(1403)] = 61933, - [SMALL_STATE(1404)] = 61966, - [SMALL_STATE(1405)] = 61999, - [SMALL_STATE(1406)] = 62020, - [SMALL_STATE(1407)] = 62053, - [SMALL_STATE(1408)] = 62078, - [SMALL_STATE(1409)] = 62111, - [SMALL_STATE(1410)] = 62144, - [SMALL_STATE(1411)] = 62177, - [SMALL_STATE(1412)] = 62210, - [SMALL_STATE(1413)] = 62233, - [SMALL_STATE(1414)] = 62266, - [SMALL_STATE(1415)] = 62299, - [SMALL_STATE(1416)] = 62332, - [SMALL_STATE(1417)] = 62359, - [SMALL_STATE(1418)] = 62390, - [SMALL_STATE(1419)] = 62409, - [SMALL_STATE(1420)] = 62442, - [SMALL_STATE(1421)] = 62475, - [SMALL_STATE(1422)] = 62506, - [SMALL_STATE(1423)] = 62535, - [SMALL_STATE(1424)] = 62554, - [SMALL_STATE(1425)] = 62581, - [SMALL_STATE(1426)] = 62616, - [SMALL_STATE(1427)] = 62643, - [SMALL_STATE(1428)] = 62664, - [SMALL_STATE(1429)] = 62685, - [SMALL_STATE(1430)] = 62716, - [SMALL_STATE(1431)] = 62741, - [SMALL_STATE(1432)] = 62772, - [SMALL_STATE(1433)] = 62805, - [SMALL_STATE(1434)] = 62834, - [SMALL_STATE(1435)] = 62857, - [SMALL_STATE(1436)] = 62890, - [SMALL_STATE(1437)] = 62913, - [SMALL_STATE(1438)] = 62946, - [SMALL_STATE(1439)] = 62979, - [SMALL_STATE(1440)] = 63020, - [SMALL_STATE(1441)] = 63055, - [SMALL_STATE(1442)] = 63090, - [SMALL_STATE(1443)] = 63115, - [SMALL_STATE(1444)] = 63142, - [SMALL_STATE(1445)] = 63167, - [SMALL_STATE(1446)] = 63186, - [SMALL_STATE(1447)] = 63211, - [SMALL_STATE(1448)] = 63236, - [SMALL_STATE(1449)] = 63257, - [SMALL_STATE(1450)] = 63280, - [SMALL_STATE(1451)] = 63307, - [SMALL_STATE(1452)] = 63346, - [SMALL_STATE(1453)] = 63373, - [SMALL_STATE(1454)] = 63406, - [SMALL_STATE(1455)] = 63427, - [SMALL_STATE(1456)] = 63460, - [SMALL_STATE(1457)] = 63487, - [SMALL_STATE(1458)] = 63514, - [SMALL_STATE(1459)] = 63535, - [SMALL_STATE(1460)] = 63556, - [SMALL_STATE(1461)] = 63589, - [SMALL_STATE(1462)] = 63622, - [SMALL_STATE(1463)] = 63647, - [SMALL_STATE(1464)] = 63668, - [SMALL_STATE(1465)] = 63689, - [SMALL_STATE(1466)] = 63722, - [SMALL_STATE(1467)] = 63749, - [SMALL_STATE(1468)] = 63774, - [SMALL_STATE(1469)] = 63807, - [SMALL_STATE(1470)] = 63830, - [SMALL_STATE(1471)] = 63857, - [SMALL_STATE(1472)] = 63888, - [SMALL_STATE(1473)] = 63921, - [SMALL_STATE(1474)] = 63948, - [SMALL_STATE(1475)] = 63979, - [SMALL_STATE(1476)] = 64012, - [SMALL_STATE(1477)] = 64045, - [SMALL_STATE(1478)] = 64074, - [SMALL_STATE(1479)] = 64097, - [SMALL_STATE(1480)] = 64130, - [SMALL_STATE(1481)] = 64155, - [SMALL_STATE(1482)] = 64182, - [SMALL_STATE(1483)] = 64215, - [SMALL_STATE(1484)] = 64244, - [SMALL_STATE(1485)] = 64277, - [SMALL_STATE(1486)] = 64306, - [SMALL_STATE(1487)] = 64339, - [SMALL_STATE(1488)] = 64372, - [SMALL_STATE(1489)] = 64405, - [SMALL_STATE(1490)] = 64434, - [SMALL_STATE(1491)] = 64467, - [SMALL_STATE(1492)] = 64500, - [SMALL_STATE(1493)] = 64533, - [SMALL_STATE(1494)] = 64564, - [SMALL_STATE(1495)] = 64597, - [SMALL_STATE(1496)] = 64622, - [SMALL_STATE(1497)] = 64655, - [SMALL_STATE(1498)] = 64688, - [SMALL_STATE(1499)] = 64721, - [SMALL_STATE(1500)] = 64754, - [SMALL_STATE(1501)] = 64787, - [SMALL_STATE(1502)] = 64818, - [SMALL_STATE(1503)] = 64837, - [SMALL_STATE(1504)] = 64870, - [SMALL_STATE(1505)] = 64903, - [SMALL_STATE(1506)] = 64940, - [SMALL_STATE(1507)] = 64973, - [SMALL_STATE(1508)] = 65014, - [SMALL_STATE(1509)] = 65047, - [SMALL_STATE(1510)] = 65074, - [SMALL_STATE(1511)] = 65107, - [SMALL_STATE(1512)] = 65134, - [SMALL_STATE(1513)] = 65167, - [SMALL_STATE(1514)] = 65200, - [SMALL_STATE(1515)] = 65227, - [SMALL_STATE(1516)] = 65260, - [SMALL_STATE(1517)] = 65293, - [SMALL_STATE(1518)] = 65326, - [SMALL_STATE(1519)] = 65361, - [SMALL_STATE(1520)] = 65396, - [SMALL_STATE(1521)] = 65417, - [SMALL_STATE(1522)] = 65443, - [SMALL_STATE(1523)] = 65473, - [SMALL_STATE(1524)] = 65503, - [SMALL_STATE(1525)] = 65521, - [SMALL_STATE(1526)] = 65541, - [SMALL_STATE(1527)] = 65569, - [SMALL_STATE(1528)] = 65589, - [SMALL_STATE(1529)] = 65609, - [SMALL_STATE(1530)] = 65639, - [SMALL_STATE(1531)] = 65669, - [SMALL_STATE(1532)] = 65689, - [SMALL_STATE(1533)] = 65719, - [SMALL_STATE(1534)] = 65749, - [SMALL_STATE(1535)] = 65779, - [SMALL_STATE(1536)] = 65809, - [SMALL_STATE(1537)] = 65837, - [SMALL_STATE(1538)] = 65863, - [SMALL_STATE(1539)] = 65889, - [SMALL_STATE(1540)] = 65919, - [SMALL_STATE(1541)] = 65937, - [SMALL_STATE(1542)] = 65967, - [SMALL_STATE(1543)] = 65997, - [SMALL_STATE(1544)] = 66027, - [SMALL_STATE(1545)] = 66049, - [SMALL_STATE(1546)] = 66069, - [SMALL_STATE(1547)] = 66089, - [SMALL_STATE(1548)] = 66113, - [SMALL_STATE(1549)] = 66133, - [SMALL_STATE(1550)] = 66151, - [SMALL_STATE(1551)] = 66169, - [SMALL_STATE(1552)] = 66199, - [SMALL_STATE(1553)] = 66229, - [SMALL_STATE(1554)] = 66253, - [SMALL_STATE(1555)] = 66279, - [SMALL_STATE(1556)] = 66309, - [SMALL_STATE(1557)] = 66327, - [SMALL_STATE(1558)] = 66347, - [SMALL_STATE(1559)] = 66365, - [SMALL_STATE(1560)] = 66383, - [SMALL_STATE(1561)] = 66401, - [SMALL_STATE(1562)] = 66423, - [SMALL_STATE(1563)] = 66441, - [SMALL_STATE(1564)] = 66459, - [SMALL_STATE(1565)] = 66489, - [SMALL_STATE(1566)] = 66511, - [SMALL_STATE(1567)] = 66541, - [SMALL_STATE(1568)] = 66563, - [SMALL_STATE(1569)] = 66593, - [SMALL_STATE(1570)] = 66619, - [SMALL_STATE(1571)] = 66647, - [SMALL_STATE(1572)] = 66677, - [SMALL_STATE(1573)] = 66707, - [SMALL_STATE(1574)] = 66725, - [SMALL_STATE(1575)] = 66743, - [SMALL_STATE(1576)] = 66761, - [SMALL_STATE(1577)] = 66785, - [SMALL_STATE(1578)] = 66813, - [SMALL_STATE(1579)] = 66831, - [SMALL_STATE(1580)] = 66861, - [SMALL_STATE(1581)] = 66895, - [SMALL_STATE(1582)] = 66923, - [SMALL_STATE(1583)] = 66941, - [SMALL_STATE(1584)] = 66961, - [SMALL_STATE(1585)] = 66989, - [SMALL_STATE(1586)] = 67019, - [SMALL_STATE(1587)] = 67043, - [SMALL_STATE(1588)] = 67061, - [SMALL_STATE(1589)] = 67079, - [SMALL_STATE(1590)] = 67097, - [SMALL_STATE(1591)] = 67125, - [SMALL_STATE(1592)] = 67155, - [SMALL_STATE(1593)] = 67175, - [SMALL_STATE(1594)] = 67205, - [SMALL_STATE(1595)] = 67225, - [SMALL_STATE(1596)] = 67245, - [SMALL_STATE(1597)] = 67265, - [SMALL_STATE(1598)] = 67283, - [SMALL_STATE(1599)] = 67309, - [SMALL_STATE(1600)] = 67329, - [SMALL_STATE(1601)] = 67349, - [SMALL_STATE(1602)] = 67369, - [SMALL_STATE(1603)] = 67389, - [SMALL_STATE(1604)] = 67409, - [SMALL_STATE(1605)] = 67439, - [SMALL_STATE(1606)] = 67459, - [SMALL_STATE(1607)] = 67481, - [SMALL_STATE(1608)] = 67509, - [SMALL_STATE(1609)] = 67531, - [SMALL_STATE(1610)] = 67555, - [SMALL_STATE(1611)] = 67585, - [SMALL_STATE(1612)] = 67615, - [SMALL_STATE(1613)] = 67637, - [SMALL_STATE(1614)] = 67667, - [SMALL_STATE(1615)] = 67691, - [SMALL_STATE(1616)] = 67715, - [SMALL_STATE(1617)] = 67735, - [SMALL_STATE(1618)] = 67759, - [SMALL_STATE(1619)] = 67781, - [SMALL_STATE(1620)] = 67801, - [SMALL_STATE(1621)] = 67823, - [SMALL_STATE(1622)] = 67853, - [SMALL_STATE(1623)] = 67875, - [SMALL_STATE(1624)] = 67905, - [SMALL_STATE(1625)] = 67929, - [SMALL_STATE(1626)] = 67959, - [SMALL_STATE(1627)] = 67978, - [SMALL_STATE(1628)] = 68005, - [SMALL_STATE(1629)] = 68034, - [SMALL_STATE(1630)] = 68053, - [SMALL_STATE(1631)] = 68080, - [SMALL_STATE(1632)] = 68099, - [SMALL_STATE(1633)] = 68126, - [SMALL_STATE(1634)] = 68149, - [SMALL_STATE(1635)] = 68174, - [SMALL_STATE(1636)] = 68193, - [SMALL_STATE(1637)] = 68210, - [SMALL_STATE(1638)] = 68237, - [SMALL_STATE(1639)] = 68264, - [SMALL_STATE(1640)] = 68283, - [SMALL_STATE(1641)] = 68310, - [SMALL_STATE(1642)] = 68333, - [SMALL_STATE(1643)] = 68360, - [SMALL_STATE(1644)] = 68387, - [SMALL_STATE(1645)] = 68414, - [SMALL_STATE(1646)] = 68431, - [SMALL_STATE(1647)] = 68456, - [SMALL_STATE(1648)] = 68473, - [SMALL_STATE(1649)] = 68490, - [SMALL_STATE(1650)] = 68509, - [SMALL_STATE(1651)] = 68536, - [SMALL_STATE(1652)] = 68563, - [SMALL_STATE(1653)] = 68590, - [SMALL_STATE(1654)] = 68609, - [SMALL_STATE(1655)] = 68636, - [SMALL_STATE(1656)] = 68665, - [SMALL_STATE(1657)] = 68692, - [SMALL_STATE(1658)] = 68725, - [SMALL_STATE(1659)] = 68742, - [SMALL_STATE(1660)] = 68759, - [SMALL_STATE(1661)] = 68786, - [SMALL_STATE(1662)] = 68815, - [SMALL_STATE(1663)] = 68834, - [SMALL_STATE(1664)] = 68863, - [SMALL_STATE(1665)] = 68892, - [SMALL_STATE(1666)] = 68919, - [SMALL_STATE(1667)] = 68938, - [SMALL_STATE(1668)] = 68965, - [SMALL_STATE(1669)] = 68984, - [SMALL_STATE(1670)] = 69003, - [SMALL_STATE(1671)] = 69020, - [SMALL_STATE(1672)] = 69047, - [SMALL_STATE(1673)] = 69066, - [SMALL_STATE(1674)] = 69093, - [SMALL_STATE(1675)] = 69112, - [SMALL_STATE(1676)] = 69139, - [SMALL_STATE(1677)] = 69166, - [SMALL_STATE(1678)] = 69193, - [SMALL_STATE(1679)] = 69216, - [SMALL_STATE(1680)] = 69233, - [SMALL_STATE(1681)] = 69260, - [SMALL_STATE(1682)] = 69279, - [SMALL_STATE(1683)] = 69298, - [SMALL_STATE(1684)] = 69317, - [SMALL_STATE(1685)] = 69338, - [SMALL_STATE(1686)] = 69365, - [SMALL_STATE(1687)] = 69392, - [SMALL_STATE(1688)] = 69419, - [SMALL_STATE(1689)] = 69438, - [SMALL_STATE(1690)] = 69457, - [SMALL_STATE(1691)] = 69484, - [SMALL_STATE(1692)] = 69503, - [SMALL_STATE(1693)] = 69522, - [SMALL_STATE(1694)] = 69545, - [SMALL_STATE(1695)] = 69564, - [SMALL_STATE(1696)] = 69583, - [SMALL_STATE(1697)] = 69612, - [SMALL_STATE(1698)] = 69635, - [SMALL_STATE(1699)] = 69662, - [SMALL_STATE(1700)] = 69681, - [SMALL_STATE(1701)] = 69700, - [SMALL_STATE(1702)] = 69722, - [SMALL_STATE(1703)] = 69750, - [SMALL_STATE(1704)] = 69772, - [SMALL_STATE(1705)] = 69794, - [SMALL_STATE(1706)] = 69812, - [SMALL_STATE(1707)] = 69830, - [SMALL_STATE(1708)] = 69856, - [SMALL_STATE(1709)] = 69882, - [SMALL_STATE(1710)] = 69908, - [SMALL_STATE(1711)] = 69932, - [SMALL_STATE(1712)] = 69950, - [SMALL_STATE(1713)] = 69972, - [SMALL_STATE(1714)] = 69994, - [SMALL_STATE(1715)] = 70012, - [SMALL_STATE(1716)] = 70038, - [SMALL_STATE(1717)] = 70056, - [SMALL_STATE(1718)] = 70084, - [SMALL_STATE(1719)] = 70110, - [SMALL_STATE(1720)] = 70128, - [SMALL_STATE(1721)] = 70150, - [SMALL_STATE(1722)] = 70168, - [SMALL_STATE(1723)] = 70186, - [SMALL_STATE(1724)] = 70214, - [SMALL_STATE(1725)] = 70236, - [SMALL_STATE(1726)] = 70262, - [SMALL_STATE(1727)] = 70288, - [SMALL_STATE(1728)] = 70314, - [SMALL_STATE(1729)] = 70336, - [SMALL_STATE(1730)] = 70354, - [SMALL_STATE(1731)] = 70382, - [SMALL_STATE(1732)] = 70404, - [SMALL_STATE(1733)] = 70430, - [SMALL_STATE(1734)] = 70454, - [SMALL_STATE(1735)] = 70472, - [SMALL_STATE(1736)] = 70498, - [SMALL_STATE(1737)] = 70526, - [SMALL_STATE(1738)] = 70550, - [SMALL_STATE(1739)] = 70572, - [SMALL_STATE(1740)] = 70596, - [SMALL_STATE(1741)] = 70612, - [SMALL_STATE(1742)] = 70636, - [SMALL_STATE(1743)] = 70654, - [SMALL_STATE(1744)] = 70678, - [SMALL_STATE(1745)] = 70702, - [SMALL_STATE(1746)] = 70720, - [SMALL_STATE(1747)] = 70738, - [SMALL_STATE(1748)] = 70764, - [SMALL_STATE(1749)] = 70780, - [SMALL_STATE(1750)] = 70806, - [SMALL_STATE(1751)] = 70824, - [SMALL_STATE(1752)] = 70842, - [SMALL_STATE(1753)] = 70860, - [SMALL_STATE(1754)] = 70886, - [SMALL_STATE(1755)] = 70914, - [SMALL_STATE(1756)] = 70936, - [SMALL_STATE(1757)] = 70958, - [SMALL_STATE(1758)] = 70974, - [SMALL_STATE(1759)] = 70994, - [SMALL_STATE(1760)] = 71020, - [SMALL_STATE(1761)] = 71042, - [SMALL_STATE(1762)] = 71068, - [SMALL_STATE(1763)] = 71094, - [SMALL_STATE(1764)] = 71114, - [SMALL_STATE(1765)] = 71136, - [SMALL_STATE(1766)] = 71158, - [SMALL_STATE(1767)] = 71186, - [SMALL_STATE(1768)] = 71208, - [SMALL_STATE(1769)] = 71226, - [SMALL_STATE(1770)] = 71244, - [SMALL_STATE(1771)] = 71260, - [SMALL_STATE(1772)] = 71278, - [SMALL_STATE(1773)] = 71304, - [SMALL_STATE(1774)] = 71332, - [SMALL_STATE(1775)] = 71348, - [SMALL_STATE(1776)] = 71374, - [SMALL_STATE(1777)] = 71392, - [SMALL_STATE(1778)] = 71420, - [SMALL_STATE(1779)] = 71442, - [SMALL_STATE(1780)] = 71465, - [SMALL_STATE(1781)] = 71486, - [SMALL_STATE(1782)] = 71511, - [SMALL_STATE(1783)] = 71536, - [SMALL_STATE(1784)] = 71559, - [SMALL_STATE(1785)] = 71576, - [SMALL_STATE(1786)] = 71601, - [SMALL_STATE(1787)] = 71626, - [SMALL_STATE(1788)] = 71649, - [SMALL_STATE(1789)] = 71672, - [SMALL_STATE(1790)] = 71697, - [SMALL_STATE(1791)] = 71722, - [SMALL_STATE(1792)] = 71747, - [SMALL_STATE(1793)] = 71764, - [SMALL_STATE(1794)] = 71789, - [SMALL_STATE(1795)] = 71818, - [SMALL_STATE(1796)] = 71841, - [SMALL_STATE(1797)] = 71868, - [SMALL_STATE(1798)] = 71883, - [SMALL_STATE(1799)] = 71908, - [SMALL_STATE(1800)] = 71933, - [SMALL_STATE(1801)] = 71950, - [SMALL_STATE(1802)] = 71965, - [SMALL_STATE(1803)] = 71986, - [SMALL_STATE(1804)] = 72001, - [SMALL_STATE(1805)] = 72026, - [SMALL_STATE(1806)] = 72043, - [SMALL_STATE(1807)] = 72066, - [SMALL_STATE(1808)] = 72091, - [SMALL_STATE(1809)] = 72106, - [SMALL_STATE(1810)] = 72131, - [SMALL_STATE(1811)] = 72156, - [SMALL_STATE(1812)] = 72183, - [SMALL_STATE(1813)] = 72208, - [SMALL_STATE(1814)] = 72235, - [SMALL_STATE(1815)] = 72250, - [SMALL_STATE(1816)] = 72273, - [SMALL_STATE(1817)] = 72294, - [SMALL_STATE(1818)] = 72317, - [SMALL_STATE(1819)] = 72340, - [SMALL_STATE(1820)] = 72355, - [SMALL_STATE(1821)] = 72372, - [SMALL_STATE(1822)] = 72393, - [SMALL_STATE(1823)] = 72422, - [SMALL_STATE(1824)] = 72443, - [SMALL_STATE(1825)] = 72472, - [SMALL_STATE(1826)] = 72489, - [SMALL_STATE(1827)] = 72510, - [SMALL_STATE(1828)] = 72535, - [SMALL_STATE(1829)] = 72550, - [SMALL_STATE(1830)] = 72571, - [SMALL_STATE(1831)] = 72592, - [SMALL_STATE(1832)] = 72613, - [SMALL_STATE(1833)] = 72628, - [SMALL_STATE(1834)] = 72651, - [SMALL_STATE(1835)] = 72672, - [SMALL_STATE(1836)] = 72697, - [SMALL_STATE(1837)] = 72714, - [SMALL_STATE(1838)] = 72735, - [SMALL_STATE(1839)] = 72750, - [SMALL_STATE(1840)] = 72767, - [SMALL_STATE(1841)] = 72788, - [SMALL_STATE(1842)] = 72805, - [SMALL_STATE(1843)] = 72826, - [SMALL_STATE(1844)] = 72849, - [SMALL_STATE(1845)] = 72872, - [SMALL_STATE(1846)] = 72897, - [SMALL_STATE(1847)] = 72920, - [SMALL_STATE(1848)] = 72943, - [SMALL_STATE(1849)] = 72964, - [SMALL_STATE(1850)] = 72987, - [SMALL_STATE(1851)] = 73008, - [SMALL_STATE(1852)] = 73029, - [SMALL_STATE(1853)] = 73052, - [SMALL_STATE(1854)] = 73073, - [SMALL_STATE(1855)] = 73090, - [SMALL_STATE(1856)] = 73111, - [SMALL_STATE(1857)] = 73132, - [SMALL_STATE(1858)] = 73157, - [SMALL_STATE(1859)] = 73182, - [SMALL_STATE(1860)] = 73199, - [SMALL_STATE(1861)] = 73214, - [SMALL_STATE(1862)] = 73243, - [SMALL_STATE(1863)] = 73258, - [SMALL_STATE(1864)] = 73279, - [SMALL_STATE(1865)] = 73304, - [SMALL_STATE(1866)] = 73321, - [SMALL_STATE(1867)] = 73338, - [SMALL_STATE(1868)] = 73361, - [SMALL_STATE(1869)] = 73386, - [SMALL_STATE(1870)] = 73402, - [SMALL_STATE(1871)] = 73418, - [SMALL_STATE(1872)] = 73434, - [SMALL_STATE(1873)] = 73454, - [SMALL_STATE(1874)] = 73474, - [SMALL_STATE(1875)] = 73498, - [SMALL_STATE(1876)] = 73514, - [SMALL_STATE(1877)] = 73536, - [SMALL_STATE(1878)] = 73558, - [SMALL_STATE(1879)] = 73574, - [SMALL_STATE(1880)] = 73594, - [SMALL_STATE(1881)] = 73616, - [SMALL_STATE(1882)] = 73638, - [SMALL_STATE(1883)] = 73660, - [SMALL_STATE(1884)] = 73676, - [SMALL_STATE(1885)] = 73692, - [SMALL_STATE(1886)] = 73714, - [SMALL_STATE(1887)] = 73738, - [SMALL_STATE(1888)] = 73762, - [SMALL_STATE(1889)] = 73780, - [SMALL_STATE(1890)] = 73804, - [SMALL_STATE(1891)] = 73824, - [SMALL_STATE(1892)] = 73848, - [SMALL_STATE(1893)] = 73866, - [SMALL_STATE(1894)] = 73882, - [SMALL_STATE(1895)] = 73902, - [SMALL_STATE(1896)] = 73924, - [SMALL_STATE(1897)] = 73944, - [SMALL_STATE(1898)] = 73970, - [SMALL_STATE(1899)] = 73992, - [SMALL_STATE(1900)] = 74014, - [SMALL_STATE(1901)] = 74038, - [SMALL_STATE(1902)] = 74054, - [SMALL_STATE(1903)] = 74076, - [SMALL_STATE(1904)] = 74092, - [SMALL_STATE(1905)] = 74112, - [SMALL_STATE(1906)] = 74128, - [SMALL_STATE(1907)] = 74152, - [SMALL_STATE(1908)] = 74178, - [SMALL_STATE(1909)] = 74194, - [SMALL_STATE(1910)] = 74220, - [SMALL_STATE(1911)] = 74242, - [SMALL_STATE(1912)] = 74264, - [SMALL_STATE(1913)] = 74290, - [SMALL_STATE(1914)] = 74312, - [SMALL_STATE(1915)] = 74334, - [SMALL_STATE(1916)] = 74358, - [SMALL_STATE(1917)] = 74380, - [SMALL_STATE(1918)] = 74400, - [SMALL_STATE(1919)] = 74424, - [SMALL_STATE(1920)] = 74444, - [SMALL_STATE(1921)] = 74466, - [SMALL_STATE(1922)] = 74488, - [SMALL_STATE(1923)] = 74512, - [SMALL_STATE(1924)] = 74536, - [SMALL_STATE(1925)] = 74560, - [SMALL_STATE(1926)] = 74580, - [SMALL_STATE(1927)] = 74598, - [SMALL_STATE(1928)] = 74622, - [SMALL_STATE(1929)] = 74646, - [SMALL_STATE(1930)] = 74670, - [SMALL_STATE(1931)] = 74694, - [SMALL_STATE(1932)] = 74718, - [SMALL_STATE(1933)] = 74742, - [SMALL_STATE(1934)] = 74758, - [SMALL_STATE(1935)] = 74778, - [SMALL_STATE(1936)] = 74794, - [SMALL_STATE(1937)] = 74812, - [SMALL_STATE(1938)] = 74834, - [SMALL_STATE(1939)] = 74856, - [SMALL_STATE(1940)] = 74878, - [SMALL_STATE(1941)] = 74902, - [SMALL_STATE(1942)] = 74920, - [SMALL_STATE(1943)] = 74939, - [SMALL_STATE(1944)] = 74952, - [SMALL_STATE(1945)] = 74969, - [SMALL_STATE(1946)] = 74986, - [SMALL_STATE(1947)] = 75005, - [SMALL_STATE(1948)] = 75024, - [SMALL_STATE(1949)] = 75039, - [SMALL_STATE(1950)] = 75052, - [SMALL_STATE(1951)] = 75073, - [SMALL_STATE(1952)] = 75094, - [SMALL_STATE(1953)] = 75115, - [SMALL_STATE(1954)] = 75134, - [SMALL_STATE(1955)] = 75153, - [SMALL_STATE(1956)] = 75172, - [SMALL_STATE(1957)] = 75191, - [SMALL_STATE(1958)] = 75204, - [SMALL_STATE(1959)] = 75221, - [SMALL_STATE(1960)] = 75240, - [SMALL_STATE(1961)] = 75255, - [SMALL_STATE(1962)] = 75268, - [SMALL_STATE(1963)] = 75283, - [SMALL_STATE(1964)] = 75304, - [SMALL_STATE(1965)] = 75323, - [SMALL_STATE(1966)] = 75342, - [SMALL_STATE(1967)] = 75357, - [SMALL_STATE(1968)] = 75378, - [SMALL_STATE(1969)] = 75399, - [SMALL_STATE(1970)] = 75418, - [SMALL_STATE(1971)] = 75437, - [SMALL_STATE(1972)] = 75456, - [SMALL_STATE(1973)] = 75475, - [SMALL_STATE(1974)] = 75494, - [SMALL_STATE(1975)] = 75507, - [SMALL_STATE(1976)] = 75528, - [SMALL_STATE(1977)] = 75549, - [SMALL_STATE(1978)] = 75568, - [SMALL_STATE(1979)] = 75587, - [SMALL_STATE(1980)] = 75602, - [SMALL_STATE(1981)] = 75621, - [SMALL_STATE(1982)] = 75636, - [SMALL_STATE(1983)] = 75655, - [SMALL_STATE(1984)] = 75678, - [SMALL_STATE(1985)] = 75693, - [SMALL_STATE(1986)] = 75714, - [SMALL_STATE(1987)] = 75735, - [SMALL_STATE(1988)] = 75758, - [SMALL_STATE(1989)] = 75779, - [SMALL_STATE(1990)] = 75794, - [SMALL_STATE(1991)] = 75813, - [SMALL_STATE(1992)] = 75832, - [SMALL_STATE(1993)] = 75845, - [SMALL_STATE(1994)] = 75858, - [SMALL_STATE(1995)] = 75871, - [SMALL_STATE(1996)] = 75884, - [SMALL_STATE(1997)] = 75907, - [SMALL_STATE(1998)] = 75920, - [SMALL_STATE(1999)] = 75939, - [SMALL_STATE(2000)] = 75960, - [SMALL_STATE(2001)] = 75975, - [SMALL_STATE(2002)] = 75988, - [SMALL_STATE(2003)] = 76001, - [SMALL_STATE(2004)] = 76020, - [SMALL_STATE(2005)] = 76033, - [SMALL_STATE(2006)] = 76046, - [SMALL_STATE(2007)] = 76063, - [SMALL_STATE(2008)] = 76084, - [SMALL_STATE(2009)] = 76097, - [SMALL_STATE(2010)] = 76110, - [SMALL_STATE(2011)] = 76133, - [SMALL_STATE(2012)] = 76152, - [SMALL_STATE(2013)] = 76171, - [SMALL_STATE(2014)] = 76188, - [SMALL_STATE(2015)] = 76209, - [SMALL_STATE(2016)] = 76228, - [SMALL_STATE(2017)] = 76247, - [SMALL_STATE(2018)] = 76266, - [SMALL_STATE(2019)] = 76279, - [SMALL_STATE(2020)] = 76300, - [SMALL_STATE(2021)] = 76319, - [SMALL_STATE(2022)] = 76340, - [SMALL_STATE(2023)] = 76361, - [SMALL_STATE(2024)] = 76374, - [SMALL_STATE(2025)] = 76397, - [SMALL_STATE(2026)] = 76416, - [SMALL_STATE(2027)] = 76435, - [SMALL_STATE(2028)] = 76454, - [SMALL_STATE(2029)] = 76475, - [SMALL_STATE(2030)] = 76494, - [SMALL_STATE(2031)] = 76507, - [SMALL_STATE(2032)] = 76528, - [SMALL_STATE(2033)] = 76545, - [SMALL_STATE(2034)] = 76560, - [SMALL_STATE(2035)] = 76575, - [SMALL_STATE(2036)] = 76594, - [SMALL_STATE(2037)] = 76613, - [SMALL_STATE(2038)] = 76626, - [SMALL_STATE(2039)] = 76645, - [SMALL_STATE(2040)] = 76660, - [SMALL_STATE(2041)] = 76679, - [SMALL_STATE(2042)] = 76698, - [SMALL_STATE(2043)] = 76717, - [SMALL_STATE(2044)] = 76740, - [SMALL_STATE(2045)] = 76753, - [SMALL_STATE(2046)] = 76766, - [SMALL_STATE(2047)] = 76789, - [SMALL_STATE(2048)] = 76806, - [SMALL_STATE(2049)] = 76825, - [SMALL_STATE(2050)] = 76840, - [SMALL_STATE(2051)] = 76852, - [SMALL_STATE(2052)] = 76866, - [SMALL_STATE(2053)] = 76880, - [SMALL_STATE(2054)] = 76896, - [SMALL_STATE(2055)] = 76908, - [SMALL_STATE(2056)] = 76924, - [SMALL_STATE(2057)] = 76944, - [SMALL_STATE(2058)] = 76960, - [SMALL_STATE(2059)] = 76976, - [SMALL_STATE(2060)] = 76992, - [SMALL_STATE(2061)] = 77008, - [SMALL_STATE(2062)] = 77020, - [SMALL_STATE(2063)] = 77032, - [SMALL_STATE(2064)] = 77050, - [SMALL_STATE(2065)] = 77066, - [SMALL_STATE(2066)] = 77082, - [SMALL_STATE(2067)] = 77098, - [SMALL_STATE(2068)] = 77112, - [SMALL_STATE(2069)] = 77126, - [SMALL_STATE(2070)] = 77144, - [SMALL_STATE(2071)] = 77160, - [SMALL_STATE(2072)] = 77176, - [SMALL_STATE(2073)] = 77192, - [SMALL_STATE(2074)] = 77206, - [SMALL_STATE(2075)] = 77220, - [SMALL_STATE(2076)] = 77236, - [SMALL_STATE(2077)] = 77254, - [SMALL_STATE(2078)] = 77272, - [SMALL_STATE(2079)] = 77286, - [SMALL_STATE(2080)] = 77300, - [SMALL_STATE(2081)] = 77316, - [SMALL_STATE(2082)] = 77334, - [SMALL_STATE(2083)] = 77350, - [SMALL_STATE(2084)] = 77368, - [SMALL_STATE(2085)] = 77386, - [SMALL_STATE(2086)] = 77404, - [SMALL_STATE(2087)] = 77422, - [SMALL_STATE(2088)] = 77438, - [SMALL_STATE(2089)] = 77454, - [SMALL_STATE(2090)] = 77472, - [SMALL_STATE(2091)] = 77490, - [SMALL_STATE(2092)] = 77506, - [SMALL_STATE(2093)] = 77524, - [SMALL_STATE(2094)] = 77542, - [SMALL_STATE(2095)] = 77558, - [SMALL_STATE(2096)] = 77576, - [SMALL_STATE(2097)] = 77588, - [SMALL_STATE(2098)] = 77602, - [SMALL_STATE(2099)] = 77614, - [SMALL_STATE(2100)] = 77632, - [SMALL_STATE(2101)] = 77648, - [SMALL_STATE(2102)] = 77664, - [SMALL_STATE(2103)] = 77680, - [SMALL_STATE(2104)] = 77696, - [SMALL_STATE(2105)] = 77710, - [SMALL_STATE(2106)] = 77722, - [SMALL_STATE(2107)] = 77734, - [SMALL_STATE(2108)] = 77750, - [SMALL_STATE(2109)] = 77766, - [SMALL_STATE(2110)] = 77784, - [SMALL_STATE(2111)] = 77800, - [SMALL_STATE(2112)] = 77816, - [SMALL_STATE(2113)] = 77830, - [SMALL_STATE(2114)] = 77842, - [SMALL_STATE(2115)] = 77860, - [SMALL_STATE(2116)] = 77876, - [SMALL_STATE(2117)] = 77890, - [SMALL_STATE(2118)] = 77904, - [SMALL_STATE(2119)] = 77918, - [SMALL_STATE(2120)] = 77932, - [SMALL_STATE(2121)] = 77946, - [SMALL_STATE(2122)] = 77964, - [SMALL_STATE(2123)] = 77978, - [SMALL_STATE(2124)] = 77996, - [SMALL_STATE(2125)] = 78008, - [SMALL_STATE(2126)] = 78024, - [SMALL_STATE(2127)] = 78038, - [SMALL_STATE(2128)] = 78050, - [SMALL_STATE(2129)] = 78066, - [SMALL_STATE(2130)] = 78082, - [SMALL_STATE(2131)] = 78098, - [SMALL_STATE(2132)] = 78114, - [SMALL_STATE(2133)] = 78128, - [SMALL_STATE(2134)] = 78144, - [SMALL_STATE(2135)] = 78156, - [SMALL_STATE(2136)] = 78172, - [SMALL_STATE(2137)] = 78190, - [SMALL_STATE(2138)] = 78207, - [SMALL_STATE(2139)] = 78222, - [SMALL_STATE(2140)] = 78239, - [SMALL_STATE(2141)] = 78254, - [SMALL_STATE(2142)] = 78267, - [SMALL_STATE(2143)] = 78282, - [SMALL_STATE(2144)] = 78297, - [SMALL_STATE(2145)] = 78314, - [SMALL_STATE(2146)] = 78329, - [SMALL_STATE(2147)] = 78346, - [SMALL_STATE(2148)] = 78363, - [SMALL_STATE(2149)] = 78380, - [SMALL_STATE(2150)] = 78395, - [SMALL_STATE(2151)] = 78408, - [SMALL_STATE(2152)] = 78425, - [SMALL_STATE(2153)] = 78440, - [SMALL_STATE(2154)] = 78451, - [SMALL_STATE(2155)] = 78468, - [SMALL_STATE(2156)] = 78485, - [SMALL_STATE(2157)] = 78502, - [SMALL_STATE(2158)] = 78519, - [SMALL_STATE(2159)] = 78530, - [SMALL_STATE(2160)] = 78547, - [SMALL_STATE(2161)] = 78562, - [SMALL_STATE(2162)] = 78579, - [SMALL_STATE(2163)] = 78590, - [SMALL_STATE(2164)] = 78605, - [SMALL_STATE(2165)] = 78622, - [SMALL_STATE(2166)] = 78639, - [SMALL_STATE(2167)] = 78654, - [SMALL_STATE(2168)] = 78671, - [SMALL_STATE(2169)] = 78688, - [SMALL_STATE(2170)] = 78701, - [SMALL_STATE(2171)] = 78716, - [SMALL_STATE(2172)] = 78731, - [SMALL_STATE(2173)] = 78746, - [SMALL_STATE(2174)] = 78763, - [SMALL_STATE(2175)] = 78778, - [SMALL_STATE(2176)] = 78795, - [SMALL_STATE(2177)] = 78812, - [SMALL_STATE(2178)] = 78829, - [SMALL_STATE(2179)] = 78842, - [SMALL_STATE(2180)] = 78855, - [SMALL_STATE(2181)] = 78868, - [SMALL_STATE(2182)] = 78883, - [SMALL_STATE(2183)] = 78900, - [SMALL_STATE(2184)] = 78917, - [SMALL_STATE(2185)] = 78932, - [SMALL_STATE(2186)] = 78945, - [SMALL_STATE(2187)] = 78958, - [SMALL_STATE(2188)] = 78975, - [SMALL_STATE(2189)] = 78992, - [SMALL_STATE(2190)] = 79009, - [SMALL_STATE(2191)] = 79024, - [SMALL_STATE(2192)] = 79041, - [SMALL_STATE(2193)] = 79058, - [SMALL_STATE(2194)] = 79075, - [SMALL_STATE(2195)] = 79092, - [SMALL_STATE(2196)] = 79109, - [SMALL_STATE(2197)] = 79126, - [SMALL_STATE(2198)] = 79143, - [SMALL_STATE(2199)] = 79158, - [SMALL_STATE(2200)] = 79175, - [SMALL_STATE(2201)] = 79192, - [SMALL_STATE(2202)] = 79207, - [SMALL_STATE(2203)] = 79224, - [SMALL_STATE(2204)] = 79241, - [SMALL_STATE(2205)] = 79256, - [SMALL_STATE(2206)] = 79271, - [SMALL_STATE(2207)] = 79282, - [SMALL_STATE(2208)] = 79295, - [SMALL_STATE(2209)] = 79308, - [SMALL_STATE(2210)] = 79323, - [SMALL_STATE(2211)] = 79336, - [SMALL_STATE(2212)] = 79351, - [SMALL_STATE(2213)] = 79366, - [SMALL_STATE(2214)] = 79381, - [SMALL_STATE(2215)] = 79396, - [SMALL_STATE(2216)] = 79413, - [SMALL_STATE(2217)] = 79428, - [SMALL_STATE(2218)] = 79441, - [SMALL_STATE(2219)] = 79454, - [SMALL_STATE(2220)] = 79465, - [SMALL_STATE(2221)] = 79480, - [SMALL_STATE(2222)] = 79497, - [SMALL_STATE(2223)] = 79514, - [SMALL_STATE(2224)] = 79529, - [SMALL_STATE(2225)] = 79542, - [SMALL_STATE(2226)] = 79557, - [SMALL_STATE(2227)] = 79572, - [SMALL_STATE(2228)] = 79587, - [SMALL_STATE(2229)] = 79602, - [SMALL_STATE(2230)] = 79617, - [SMALL_STATE(2231)] = 79632, - [SMALL_STATE(2232)] = 79647, - [SMALL_STATE(2233)] = 79658, - [SMALL_STATE(2234)] = 79675, - [SMALL_STATE(2235)] = 79688, - [SMALL_STATE(2236)] = 79705, - [SMALL_STATE(2237)] = 79722, - [SMALL_STATE(2238)] = 79735, - [SMALL_STATE(2239)] = 79748, - [SMALL_STATE(2240)] = 79765, - [SMALL_STATE(2241)] = 79782, - [SMALL_STATE(2242)] = 79797, - [SMALL_STATE(2243)] = 79814, - [SMALL_STATE(2244)] = 79831, - [SMALL_STATE(2245)] = 79844, - [SMALL_STATE(2246)] = 79861, - [SMALL_STATE(2247)] = 79872, - [SMALL_STATE(2248)] = 79887, - [SMALL_STATE(2249)] = 79904, - [SMALL_STATE(2250)] = 79915, - [SMALL_STATE(2251)] = 79932, - [SMALL_STATE(2252)] = 79945, - [SMALL_STATE(2253)] = 79958, - [SMALL_STATE(2254)] = 79969, - [SMALL_STATE(2255)] = 79984, - [SMALL_STATE(2256)] = 80001, - [SMALL_STATE(2257)] = 80018, - [SMALL_STATE(2258)] = 80035, - [SMALL_STATE(2259)] = 80052, - [SMALL_STATE(2260)] = 80067, - [SMALL_STATE(2261)] = 80084, - [SMALL_STATE(2262)] = 80101, - [SMALL_STATE(2263)] = 80118, - [SMALL_STATE(2264)] = 80129, - [SMALL_STATE(2265)] = 80142, - [SMALL_STATE(2266)] = 80159, - [SMALL_STATE(2267)] = 80174, - [SMALL_STATE(2268)] = 80189, - [SMALL_STATE(2269)] = 80202, - [SMALL_STATE(2270)] = 80219, - [SMALL_STATE(2271)] = 80236, - [SMALL_STATE(2272)] = 80253, - [SMALL_STATE(2273)] = 80270, - [SMALL_STATE(2274)] = 80287, - [SMALL_STATE(2275)] = 80302, - [SMALL_STATE(2276)] = 80317, - [SMALL_STATE(2277)] = 80327, - [SMALL_STATE(2278)] = 80337, - [SMALL_STATE(2279)] = 80347, - [SMALL_STATE(2280)] = 80361, - [SMALL_STATE(2281)] = 80375, - [SMALL_STATE(2282)] = 80387, - [SMALL_STATE(2283)] = 80401, - [SMALL_STATE(2284)] = 80415, - [SMALL_STATE(2285)] = 80429, - [SMALL_STATE(2286)] = 80439, - [SMALL_STATE(2287)] = 80449, - [SMALL_STATE(2288)] = 80459, - [SMALL_STATE(2289)] = 80473, - [SMALL_STATE(2290)] = 80483, - [SMALL_STATE(2291)] = 80497, - [SMALL_STATE(2292)] = 80507, - [SMALL_STATE(2293)] = 80517, - [SMALL_STATE(2294)] = 80527, - [SMALL_STATE(2295)] = 80541, - [SMALL_STATE(2296)] = 80551, - [SMALL_STATE(2297)] = 80561, - [SMALL_STATE(2298)] = 80571, - [SMALL_STATE(2299)] = 80581, - [SMALL_STATE(2300)] = 80595, - [SMALL_STATE(2301)] = 80609, - [SMALL_STATE(2302)] = 80623, - [SMALL_STATE(2303)] = 80635, - [SMALL_STATE(2304)] = 80649, - [SMALL_STATE(2305)] = 80659, - [SMALL_STATE(2306)] = 80673, - [SMALL_STATE(2307)] = 80687, - [SMALL_STATE(2308)] = 80701, - [SMALL_STATE(2309)] = 80715, - [SMALL_STATE(2310)] = 80729, - [SMALL_STATE(2311)] = 80743, - [SMALL_STATE(2312)] = 80757, - [SMALL_STATE(2313)] = 80769, - [SMALL_STATE(2314)] = 80779, - [SMALL_STATE(2315)] = 80789, - [SMALL_STATE(2316)] = 80803, - [SMALL_STATE(2317)] = 80813, - [SMALL_STATE(2318)] = 80823, - [SMALL_STATE(2319)] = 80837, - [SMALL_STATE(2320)] = 80847, - [SMALL_STATE(2321)] = 80861, - [SMALL_STATE(2322)] = 80875, - [SMALL_STATE(2323)] = 80889, - [SMALL_STATE(2324)] = 80899, - [SMALL_STATE(2325)] = 80911, - [SMALL_STATE(2326)] = 80921, - [SMALL_STATE(2327)] = 80931, - [SMALL_STATE(2328)] = 80945, - [SMALL_STATE(2329)] = 80955, - [SMALL_STATE(2330)] = 80969, - [SMALL_STATE(2331)] = 80979, - [SMALL_STATE(2332)] = 80989, - [SMALL_STATE(2333)] = 81003, - [SMALL_STATE(2334)] = 81013, - [SMALL_STATE(2335)] = 81023, - [SMALL_STATE(2336)] = 81033, - [SMALL_STATE(2337)] = 81043, - [SMALL_STATE(2338)] = 81057, - [SMALL_STATE(2339)] = 81069, - [SMALL_STATE(2340)] = 81083, - [SMALL_STATE(2341)] = 81097, - [SMALL_STATE(2342)] = 81107, - [SMALL_STATE(2343)] = 81117, - [SMALL_STATE(2344)] = 81127, - [SMALL_STATE(2345)] = 81137, - [SMALL_STATE(2346)] = 81147, - [SMALL_STATE(2347)] = 81157, - [SMALL_STATE(2348)] = 81167, - [SMALL_STATE(2349)] = 81177, - [SMALL_STATE(2350)] = 81187, - [SMALL_STATE(2351)] = 81197, - [SMALL_STATE(2352)] = 81209, - [SMALL_STATE(2353)] = 81219, - [SMALL_STATE(2354)] = 81231, - [SMALL_STATE(2355)] = 81243, - [SMALL_STATE(2356)] = 81253, - [SMALL_STATE(2357)] = 81265, - [SMALL_STATE(2358)] = 81275, - [SMALL_STATE(2359)] = 81285, - [SMALL_STATE(2360)] = 81295, - [SMALL_STATE(2361)] = 81309, - [SMALL_STATE(2362)] = 81323, - [SMALL_STATE(2363)] = 81333, - [SMALL_STATE(2364)] = 81343, - [SMALL_STATE(2365)] = 81353, - [SMALL_STATE(2366)] = 81367, - [SMALL_STATE(2367)] = 81377, - [SMALL_STATE(2368)] = 81387, - [SMALL_STATE(2369)] = 81397, - [SMALL_STATE(2370)] = 81407, - [SMALL_STATE(2371)] = 81417, - [SMALL_STATE(2372)] = 81431, - [SMALL_STATE(2373)] = 81445, - [SMALL_STATE(2374)] = 81457, - [SMALL_STATE(2375)] = 81467, - [SMALL_STATE(2376)] = 81477, - [SMALL_STATE(2377)] = 81487, - [SMALL_STATE(2378)] = 81501, - [SMALL_STATE(2379)] = 81511, - [SMALL_STATE(2380)] = 81521, - [SMALL_STATE(2381)] = 81531, - [SMALL_STATE(2382)] = 81541, - [SMALL_STATE(2383)] = 81551, - [SMALL_STATE(2384)] = 81561, - [SMALL_STATE(2385)] = 81571, - [SMALL_STATE(2386)] = 81581, - [SMALL_STATE(2387)] = 81591, - [SMALL_STATE(2388)] = 81601, - [SMALL_STATE(2389)] = 81615, - [SMALL_STATE(2390)] = 81629, - [SMALL_STATE(2391)] = 81639, - [SMALL_STATE(2392)] = 81651, - [SMALL_STATE(2393)] = 81661, - [SMALL_STATE(2394)] = 81675, - [SMALL_STATE(2395)] = 81685, - [SMALL_STATE(2396)] = 81695, - [SMALL_STATE(2397)] = 81705, - [SMALL_STATE(2398)] = 81715, - [SMALL_STATE(2399)] = 81725, - [SMALL_STATE(2400)] = 81739, - [SMALL_STATE(2401)] = 81753, - [SMALL_STATE(2402)] = 81763, - [SMALL_STATE(2403)] = 81773, - [SMALL_STATE(2404)] = 81783, - [SMALL_STATE(2405)] = 81793, - [SMALL_STATE(2406)] = 81805, - [SMALL_STATE(2407)] = 81819, - [SMALL_STATE(2408)] = 81829, - [SMALL_STATE(2409)] = 81839, - [SMALL_STATE(2410)] = 81853, - [SMALL_STATE(2411)] = 81867, - [SMALL_STATE(2412)] = 81877, - [SMALL_STATE(2413)] = 81891, - [SMALL_STATE(2414)] = 81901, - [SMALL_STATE(2415)] = 81911, - [SMALL_STATE(2416)] = 81925, - [SMALL_STATE(2417)] = 81937, - [SMALL_STATE(2418)] = 81947, - [SMALL_STATE(2419)] = 81957, - [SMALL_STATE(2420)] = 81971, - [SMALL_STATE(2421)] = 81983, - [SMALL_STATE(2422)] = 81997, - [SMALL_STATE(2423)] = 82007, - [SMALL_STATE(2424)] = 82017, - [SMALL_STATE(2425)] = 82027, - [SMALL_STATE(2426)] = 82037, - [SMALL_STATE(2427)] = 82051, - [SMALL_STATE(2428)] = 82061, - [SMALL_STATE(2429)] = 82075, - [SMALL_STATE(2430)] = 82089, - [SMALL_STATE(2431)] = 82103, - [SMALL_STATE(2432)] = 82113, - [SMALL_STATE(2433)] = 82123, - [SMALL_STATE(2434)] = 82133, - [SMALL_STATE(2435)] = 82143, - [SMALL_STATE(2436)] = 82153, - [SMALL_STATE(2437)] = 82167, - [SMALL_STATE(2438)] = 82181, - [SMALL_STATE(2439)] = 82191, - [SMALL_STATE(2440)] = 82201, - [SMALL_STATE(2441)] = 82211, - [SMALL_STATE(2442)] = 82225, - [SMALL_STATE(2443)] = 82235, - [SMALL_STATE(2444)] = 82245, - [SMALL_STATE(2445)] = 82255, - [SMALL_STATE(2446)] = 82269, - [SMALL_STATE(2447)] = 82279, - [SMALL_STATE(2448)] = 82289, - [SMALL_STATE(2449)] = 82303, - [SMALL_STATE(2450)] = 82313, - [SMALL_STATE(2451)] = 82327, - [SMALL_STATE(2452)] = 82341, - [SMALL_STATE(2453)] = 82351, - [SMALL_STATE(2454)] = 82365, - [SMALL_STATE(2455)] = 82375, - [SMALL_STATE(2456)] = 82389, - [SMALL_STATE(2457)] = 82399, - [SMALL_STATE(2458)] = 82411, - [SMALL_STATE(2459)] = 82421, - [SMALL_STATE(2460)] = 82431, - [SMALL_STATE(2461)] = 82441, - [SMALL_STATE(2462)] = 82451, - [SMALL_STATE(2463)] = 82461, - [SMALL_STATE(2464)] = 82471, - [SMALL_STATE(2465)] = 82485, - [SMALL_STATE(2466)] = 82495, - [SMALL_STATE(2467)] = 82509, - [SMALL_STATE(2468)] = 82521, - [SMALL_STATE(2469)] = 82535, - [SMALL_STATE(2470)] = 82547, - [SMALL_STATE(2471)] = 82557, - [SMALL_STATE(2472)] = 82567, - [SMALL_STATE(2473)] = 82577, - [SMALL_STATE(2474)] = 82587, - [SMALL_STATE(2475)] = 82597, - [SMALL_STATE(2476)] = 82607, - [SMALL_STATE(2477)] = 82617, - [SMALL_STATE(2478)] = 82627, - [SMALL_STATE(2479)] = 82637, - [SMALL_STATE(2480)] = 82647, - [SMALL_STATE(2481)] = 82657, - [SMALL_STATE(2482)] = 82667, - [SMALL_STATE(2483)] = 82677, - [SMALL_STATE(2484)] = 82691, - [SMALL_STATE(2485)] = 82701, - [SMALL_STATE(2486)] = 82715, - [SMALL_STATE(2487)] = 82729, - [SMALL_STATE(2488)] = 82743, - [SMALL_STATE(2489)] = 82757, - [SMALL_STATE(2490)] = 82767, - [SMALL_STATE(2491)] = 82777, - [SMALL_STATE(2492)] = 82787, - [SMALL_STATE(2493)] = 82797, - [SMALL_STATE(2494)] = 82807, - [SMALL_STATE(2495)] = 82821, - [SMALL_STATE(2496)] = 82835, - [SMALL_STATE(2497)] = 82849, - [SMALL_STATE(2498)] = 82863, - [SMALL_STATE(2499)] = 82877, - [SMALL_STATE(2500)] = 82891, - [SMALL_STATE(2501)] = 82901, - [SMALL_STATE(2502)] = 82911, - [SMALL_STATE(2503)] = 82921, - [SMALL_STATE(2504)] = 82935, - [SMALL_STATE(2505)] = 82945, - [SMALL_STATE(2506)] = 82955, - [SMALL_STATE(2507)] = 82969, - [SMALL_STATE(2508)] = 82979, - [SMALL_STATE(2509)] = 82993, - [SMALL_STATE(2510)] = 83003, - [SMALL_STATE(2511)] = 83013, - [SMALL_STATE(2512)] = 83023, - [SMALL_STATE(2513)] = 83033, - [SMALL_STATE(2514)] = 83043, - [SMALL_STATE(2515)] = 83053, - [SMALL_STATE(2516)] = 83063, - [SMALL_STATE(2517)] = 83073, - [SMALL_STATE(2518)] = 83085, - [SMALL_STATE(2519)] = 83095, - [SMALL_STATE(2520)] = 83105, - [SMALL_STATE(2521)] = 83119, - [SMALL_STATE(2522)] = 83129, - [SMALL_STATE(2523)] = 83139, - [SMALL_STATE(2524)] = 83149, - [SMALL_STATE(2525)] = 83161, - [SMALL_STATE(2526)] = 83171, - [SMALL_STATE(2527)] = 83181, - [SMALL_STATE(2528)] = 83195, - [SMALL_STATE(2529)] = 83205, - [SMALL_STATE(2530)] = 83219, - [SMALL_STATE(2531)] = 83233, - [SMALL_STATE(2532)] = 83243, - [SMALL_STATE(2533)] = 83253, - [SMALL_STATE(2534)] = 83265, - [SMALL_STATE(2535)] = 83275, - [SMALL_STATE(2536)] = 83285, - [SMALL_STATE(2537)] = 83299, - [SMALL_STATE(2538)] = 83313, - [SMALL_STATE(2539)] = 83327, - [SMALL_STATE(2540)] = 83341, - [SMALL_STATE(2541)] = 83351, - [SMALL_STATE(2542)] = 83361, - [SMALL_STATE(2543)] = 83375, - [SMALL_STATE(2544)] = 83387, - [SMALL_STATE(2545)] = 83397, - [SMALL_STATE(2546)] = 83411, - [SMALL_STATE(2547)] = 83425, - [SMALL_STATE(2548)] = 83435, - [SMALL_STATE(2549)] = 83449, - [SMALL_STATE(2550)] = 83463, - [SMALL_STATE(2551)] = 83473, - [SMALL_STATE(2552)] = 83485, - [SMALL_STATE(2553)] = 83495, - [SMALL_STATE(2554)] = 83509, - [SMALL_STATE(2555)] = 83523, - [SMALL_STATE(2556)] = 83537, - [SMALL_STATE(2557)] = 83551, - [SMALL_STATE(2558)] = 83565, - [SMALL_STATE(2559)] = 83575, - [SMALL_STATE(2560)] = 83585, - [SMALL_STATE(2561)] = 83599, - [SMALL_STATE(2562)] = 83609, - [SMALL_STATE(2563)] = 83623, - [SMALL_STATE(2564)] = 83637, - [SMALL_STATE(2565)] = 83651, - [SMALL_STATE(2566)] = 83661, - [SMALL_STATE(2567)] = 83675, - [SMALL_STATE(2568)] = 83689, - [SMALL_STATE(2569)] = 83703, - [SMALL_STATE(2570)] = 83713, - [SMALL_STATE(2571)] = 83727, - [SMALL_STATE(2572)] = 83741, - [SMALL_STATE(2573)] = 83751, - [SMALL_STATE(2574)] = 83765, - [SMALL_STATE(2575)] = 83779, - [SMALL_STATE(2576)] = 83789, - [SMALL_STATE(2577)] = 83803, - [SMALL_STATE(2578)] = 83815, - [SMALL_STATE(2579)] = 83825, - [SMALL_STATE(2580)] = 83839, - [SMALL_STATE(2581)] = 83853, - [SMALL_STATE(2582)] = 83867, - [SMALL_STATE(2583)] = 83877, - [SMALL_STATE(2584)] = 83889, - [SMALL_STATE(2585)] = 83903, - [SMALL_STATE(2586)] = 83917, - [SMALL_STATE(2587)] = 83927, - [SMALL_STATE(2588)] = 83937, - [SMALL_STATE(2589)] = 83947, - [SMALL_STATE(2590)] = 83961, - [SMALL_STATE(2591)] = 83975, - [SMALL_STATE(2592)] = 83989, - [SMALL_STATE(2593)] = 83999, - [SMALL_STATE(2594)] = 84013, - [SMALL_STATE(2595)] = 84023, - [SMALL_STATE(2596)] = 84033, - [SMALL_STATE(2597)] = 84043, - [SMALL_STATE(2598)] = 84057, - [SMALL_STATE(2599)] = 84071, - [SMALL_STATE(2600)] = 84085, - [SMALL_STATE(2601)] = 84099, - [SMALL_STATE(2602)] = 84113, - [SMALL_STATE(2603)] = 84125, - [SMALL_STATE(2604)] = 84137, - [SMALL_STATE(2605)] = 84147, - [SMALL_STATE(2606)] = 84161, - [SMALL_STATE(2607)] = 84171, - [SMALL_STATE(2608)] = 84181, - [SMALL_STATE(2609)] = 84191, - [SMALL_STATE(2610)] = 84205, - [SMALL_STATE(2611)] = 84219, - [SMALL_STATE(2612)] = 84229, - [SMALL_STATE(2613)] = 84241, - [SMALL_STATE(2614)] = 84251, - [SMALL_STATE(2615)] = 84261, - [SMALL_STATE(2616)] = 84271, - [SMALL_STATE(2617)] = 84281, - [SMALL_STATE(2618)] = 84291, - [SMALL_STATE(2619)] = 84301, - [SMALL_STATE(2620)] = 84311, - [SMALL_STATE(2621)] = 84321, - [SMALL_STATE(2622)] = 84331, - [SMALL_STATE(2623)] = 84341, - [SMALL_STATE(2624)] = 84351, - [SMALL_STATE(2625)] = 84363, - [SMALL_STATE(2626)] = 84373, - [SMALL_STATE(2627)] = 84383, - [SMALL_STATE(2628)] = 84393, - [SMALL_STATE(2629)] = 84407, - [SMALL_STATE(2630)] = 84417, - [SMALL_STATE(2631)] = 84426, - [SMALL_STATE(2632)] = 84435, - [SMALL_STATE(2633)] = 84444, - [SMALL_STATE(2634)] = 84455, - [SMALL_STATE(2635)] = 84464, - [SMALL_STATE(2636)] = 84473, - [SMALL_STATE(2637)] = 84482, - [SMALL_STATE(2638)] = 84491, - [SMALL_STATE(2639)] = 84502, - [SMALL_STATE(2640)] = 84511, - [SMALL_STATE(2641)] = 84520, - [SMALL_STATE(2642)] = 84529, - [SMALL_STATE(2643)] = 84538, - [SMALL_STATE(2644)] = 84547, - [SMALL_STATE(2645)] = 84556, - [SMALL_STATE(2646)] = 84565, - [SMALL_STATE(2647)] = 84574, - [SMALL_STATE(2648)] = 84583, - [SMALL_STATE(2649)] = 84592, - [SMALL_STATE(2650)] = 84601, - [SMALL_STATE(2651)] = 84610, - [SMALL_STATE(2652)] = 84619, - [SMALL_STATE(2653)] = 84628, - [SMALL_STATE(2654)] = 84637, - [SMALL_STATE(2655)] = 84646, - [SMALL_STATE(2656)] = 84655, - [SMALL_STATE(2657)] = 84664, - [SMALL_STATE(2658)] = 84673, - [SMALL_STATE(2659)] = 84682, - [SMALL_STATE(2660)] = 84691, - [SMALL_STATE(2661)] = 84700, - [SMALL_STATE(2662)] = 84709, - [SMALL_STATE(2663)] = 84718, - [SMALL_STATE(2664)] = 84727, - [SMALL_STATE(2665)] = 84738, - [SMALL_STATE(2666)] = 84749, - [SMALL_STATE(2667)] = 84758, - [SMALL_STATE(2668)] = 84767, - [SMALL_STATE(2669)] = 84776, - [SMALL_STATE(2670)] = 84785, - [SMALL_STATE(2671)] = 84794, - [SMALL_STATE(2672)] = 84803, - [SMALL_STATE(2673)] = 84812, - [SMALL_STATE(2674)] = 84821, - [SMALL_STATE(2675)] = 84830, - [SMALL_STATE(2676)] = 84839, - [SMALL_STATE(2677)] = 84848, - [SMALL_STATE(2678)] = 84857, - [SMALL_STATE(2679)] = 84866, - [SMALL_STATE(2680)] = 84875, - [SMALL_STATE(2681)] = 84884, - [SMALL_STATE(2682)] = 84893, - [SMALL_STATE(2683)] = 84902, - [SMALL_STATE(2684)] = 84911, - [SMALL_STATE(2685)] = 84920, - [SMALL_STATE(2686)] = 84929, - [SMALL_STATE(2687)] = 84938, - [SMALL_STATE(2688)] = 84947, - [SMALL_STATE(2689)] = 84956, - [SMALL_STATE(2690)] = 84965, - [SMALL_STATE(2691)] = 84974, - [SMALL_STATE(2692)] = 84983, - [SMALL_STATE(2693)] = 84994, - [SMALL_STATE(2694)] = 85005, - [SMALL_STATE(2695)] = 85014, - [SMALL_STATE(2696)] = 85023, - [SMALL_STATE(2697)] = 85032, - [SMALL_STATE(2698)] = 85041, - [SMALL_STATE(2699)] = 85052, - [SMALL_STATE(2700)] = 85061, - [SMALL_STATE(2701)] = 85070, - [SMALL_STATE(2702)] = 85079, - [SMALL_STATE(2703)] = 85088, - [SMALL_STATE(2704)] = 85097, - [SMALL_STATE(2705)] = 85106, - [SMALL_STATE(2706)] = 85115, - [SMALL_STATE(2707)] = 85124, - [SMALL_STATE(2708)] = 85133, - [SMALL_STATE(2709)] = 85142, - [SMALL_STATE(2710)] = 85151, - [SMALL_STATE(2711)] = 85160, - [SMALL_STATE(2712)] = 85169, - [SMALL_STATE(2713)] = 85178, - [SMALL_STATE(2714)] = 85187, - [SMALL_STATE(2715)] = 85196, - [SMALL_STATE(2716)] = 85207, - [SMALL_STATE(2717)] = 85216, - [SMALL_STATE(2718)] = 85225, - [SMALL_STATE(2719)] = 85234, - [SMALL_STATE(2720)] = 85243, - [SMALL_STATE(2721)] = 85254, - [SMALL_STATE(2722)] = 85263, - [SMALL_STATE(2723)] = 85272, - [SMALL_STATE(2724)] = 85281, - [SMALL_STATE(2725)] = 85292, - [SMALL_STATE(2726)] = 85301, - [SMALL_STATE(2727)] = 85310, - [SMALL_STATE(2728)] = 85319, - [SMALL_STATE(2729)] = 85328, - [SMALL_STATE(2730)] = 85337, - [SMALL_STATE(2731)] = 85346, - [SMALL_STATE(2732)] = 85355, - [SMALL_STATE(2733)] = 85364, - [SMALL_STATE(2734)] = 85373, - [SMALL_STATE(2735)] = 85384, - [SMALL_STATE(2736)] = 85393, - [SMALL_STATE(2737)] = 85402, - [SMALL_STATE(2738)] = 85413, - [SMALL_STATE(2739)] = 85422, - [SMALL_STATE(2740)] = 85431, - [SMALL_STATE(2741)] = 85440, - [SMALL_STATE(2742)] = 85449, - [SMALL_STATE(2743)] = 85458, - [SMALL_STATE(2744)] = 85467, - [SMALL_STATE(2745)] = 85476, - [SMALL_STATE(2746)] = 85485, - [SMALL_STATE(2747)] = 85494, - [SMALL_STATE(2748)] = 85503, - [SMALL_STATE(2749)] = 85512, - [SMALL_STATE(2750)] = 85521, - [SMALL_STATE(2751)] = 85530, - [SMALL_STATE(2752)] = 85539, - [SMALL_STATE(2753)] = 85550, - [SMALL_STATE(2754)] = 85559, - [SMALL_STATE(2755)] = 85568, - [SMALL_STATE(2756)] = 85577, - [SMALL_STATE(2757)] = 85586, - [SMALL_STATE(2758)] = 85595, - [SMALL_STATE(2759)] = 85604, - [SMALL_STATE(2760)] = 85613, - [SMALL_STATE(2761)] = 85622, - [SMALL_STATE(2762)] = 85631, - [SMALL_STATE(2763)] = 85640, - [SMALL_STATE(2764)] = 85651, - [SMALL_STATE(2765)] = 85660, - [SMALL_STATE(2766)] = 85669, - [SMALL_STATE(2767)] = 85678, - [SMALL_STATE(2768)] = 85687, - [SMALL_STATE(2769)] = 85696, - [SMALL_STATE(2770)] = 85705, - [SMALL_STATE(2771)] = 85714, - [SMALL_STATE(2772)] = 85725, - [SMALL_STATE(2773)] = 85734, - [SMALL_STATE(2774)] = 85743, - [SMALL_STATE(2775)] = 85754, - [SMALL_STATE(2776)] = 85763, - [SMALL_STATE(2777)] = 85772, - [SMALL_STATE(2778)] = 85781, - [SMALL_STATE(2779)] = 85790, - [SMALL_STATE(2780)] = 85799, - [SMALL_STATE(2781)] = 85808, - [SMALL_STATE(2782)] = 85817, - [SMALL_STATE(2783)] = 85826, - [SMALL_STATE(2784)] = 85835, - [SMALL_STATE(2785)] = 85844, - [SMALL_STATE(2786)] = 85853, - [SMALL_STATE(2787)] = 85862, - [SMALL_STATE(2788)] = 85871, - [SMALL_STATE(2789)] = 85880, - [SMALL_STATE(2790)] = 85889, - [SMALL_STATE(2791)] = 85898, - [SMALL_STATE(2792)] = 85907, - [SMALL_STATE(2793)] = 85916, - [SMALL_STATE(2794)] = 85927, - [SMALL_STATE(2795)] = 85936, - [SMALL_STATE(2796)] = 85945, - [SMALL_STATE(2797)] = 85954, - [SMALL_STATE(2798)] = 85963, - [SMALL_STATE(2799)] = 85972, - [SMALL_STATE(2800)] = 85981, - [SMALL_STATE(2801)] = 85990, - [SMALL_STATE(2802)] = 85999, - [SMALL_STATE(2803)] = 86008, - [SMALL_STATE(2804)] = 86017, - [SMALL_STATE(2805)] = 86026, - [SMALL_STATE(2806)] = 86035, - [SMALL_STATE(2807)] = 86044, - [SMALL_STATE(2808)] = 86053, - [SMALL_STATE(2809)] = 86062, - [SMALL_STATE(2810)] = 86073, - [SMALL_STATE(2811)] = 86082, - [SMALL_STATE(2812)] = 86091, - [SMALL_STATE(2813)] = 86100, - [SMALL_STATE(2814)] = 86109, - [SMALL_STATE(2815)] = 86118, - [SMALL_STATE(2816)] = 86127, - [SMALL_STATE(2817)] = 86136, - [SMALL_STATE(2818)] = 86145, - [SMALL_STATE(2819)] = 86154, - [SMALL_STATE(2820)] = 86163, - [SMALL_STATE(2821)] = 86172, - [SMALL_STATE(2822)] = 86181, - [SMALL_STATE(2823)] = 86190, - [SMALL_STATE(2824)] = 86199, - [SMALL_STATE(2825)] = 86208, - [SMALL_STATE(2826)] = 86217, - [SMALL_STATE(2827)] = 86226, - [SMALL_STATE(2828)] = 86235, - [SMALL_STATE(2829)] = 86244, - [SMALL_STATE(2830)] = 86253, - [SMALL_STATE(2831)] = 86262, - [SMALL_STATE(2832)] = 86271, - [SMALL_STATE(2833)] = 86280, - [SMALL_STATE(2834)] = 86289, - [SMALL_STATE(2835)] = 86298, - [SMALL_STATE(2836)] = 86309, - [SMALL_STATE(2837)] = 86318, - [SMALL_STATE(2838)] = 86327, - [SMALL_STATE(2839)] = 86336, - [SMALL_STATE(2840)] = 86345, - [SMALL_STATE(2841)] = 86354, - [SMALL_STATE(2842)] = 86363, - [SMALL_STATE(2843)] = 86372, - [SMALL_STATE(2844)] = 86381, - [SMALL_STATE(2845)] = 86390, - [SMALL_STATE(2846)] = 86399, - [SMALL_STATE(2847)] = 86408, - [SMALL_STATE(2848)] = 86417, - [SMALL_STATE(2849)] = 86426, - [SMALL_STATE(2850)] = 86435, - [SMALL_STATE(2851)] = 86444, - [SMALL_STATE(2852)] = 86453, - [SMALL_STATE(2853)] = 86462, - [SMALL_STATE(2854)] = 86471, - [SMALL_STATE(2855)] = 86480, - [SMALL_STATE(2856)] = 86489, - [SMALL_STATE(2857)] = 86498, - [SMALL_STATE(2858)] = 86507, - [SMALL_STATE(2859)] = 86516, - [SMALL_STATE(2860)] = 86524, - [SMALL_STATE(2861)] = 86532, - [SMALL_STATE(2862)] = 86540, - [SMALL_STATE(2863)] = 86548, - [SMALL_STATE(2864)] = 86556, - [SMALL_STATE(2865)] = 86564, - [SMALL_STATE(2866)] = 86572, - [SMALL_STATE(2867)] = 86580, - [SMALL_STATE(2868)] = 86588, - [SMALL_STATE(2869)] = 86596, - [SMALL_STATE(2870)] = 86604, - [SMALL_STATE(2871)] = 86612, - [SMALL_STATE(2872)] = 86620, - [SMALL_STATE(2873)] = 86628, - [SMALL_STATE(2874)] = 86636, - [SMALL_STATE(2875)] = 86644, - [SMALL_STATE(2876)] = 86652, - [SMALL_STATE(2877)] = 86660, - [SMALL_STATE(2878)] = 86668, - [SMALL_STATE(2879)] = 86676, - [SMALL_STATE(2880)] = 86684, - [SMALL_STATE(2881)] = 86692, - [SMALL_STATE(2882)] = 86700, - [SMALL_STATE(2883)] = 86708, - [SMALL_STATE(2884)] = 86716, - [SMALL_STATE(2885)] = 86724, - [SMALL_STATE(2886)] = 86732, - [SMALL_STATE(2887)] = 86740, - [SMALL_STATE(2888)] = 86748, - [SMALL_STATE(2889)] = 86756, - [SMALL_STATE(2890)] = 86764, - [SMALL_STATE(2891)] = 86772, - [SMALL_STATE(2892)] = 86780, - [SMALL_STATE(2893)] = 86788, - [SMALL_STATE(2894)] = 86796, - [SMALL_STATE(2895)] = 86804, - [SMALL_STATE(2896)] = 86812, - [SMALL_STATE(2897)] = 86820, - [SMALL_STATE(2898)] = 86828, - [SMALL_STATE(2899)] = 86836, - [SMALL_STATE(2900)] = 86844, - [SMALL_STATE(2901)] = 86852, - [SMALL_STATE(2902)] = 86860, - [SMALL_STATE(2903)] = 86868, - [SMALL_STATE(2904)] = 86876, - [SMALL_STATE(2905)] = 86884, - [SMALL_STATE(2906)] = 86892, - [SMALL_STATE(2907)] = 86900, - [SMALL_STATE(2908)] = 86908, - [SMALL_STATE(2909)] = 86916, - [SMALL_STATE(2910)] = 86924, - [SMALL_STATE(2911)] = 86932, - [SMALL_STATE(2912)] = 86940, - [SMALL_STATE(2913)] = 86948, - [SMALL_STATE(2914)] = 86956, - [SMALL_STATE(2915)] = 86964, - [SMALL_STATE(2916)] = 86972, - [SMALL_STATE(2917)] = 86980, - [SMALL_STATE(2918)] = 86988, - [SMALL_STATE(2919)] = 86996, - [SMALL_STATE(2920)] = 87004, - [SMALL_STATE(2921)] = 87012, - [SMALL_STATE(2922)] = 87020, - [SMALL_STATE(2923)] = 87028, - [SMALL_STATE(2924)] = 87036, - [SMALL_STATE(2925)] = 87044, - [SMALL_STATE(2926)] = 87052, - [SMALL_STATE(2927)] = 87060, - [SMALL_STATE(2928)] = 87068, - [SMALL_STATE(2929)] = 87076, - [SMALL_STATE(2930)] = 87084, - [SMALL_STATE(2931)] = 87092, - [SMALL_STATE(2932)] = 87100, - [SMALL_STATE(2933)] = 87108, - [SMALL_STATE(2934)] = 87116, - [SMALL_STATE(2935)] = 87124, - [SMALL_STATE(2936)] = 87132, - [SMALL_STATE(2937)] = 87140, - [SMALL_STATE(2938)] = 87148, - [SMALL_STATE(2939)] = 87156, - [SMALL_STATE(2940)] = 87164, - [SMALL_STATE(2941)] = 87172, - [SMALL_STATE(2942)] = 87180, - [SMALL_STATE(2943)] = 87188, - [SMALL_STATE(2944)] = 87196, - [SMALL_STATE(2945)] = 87204, - [SMALL_STATE(2946)] = 87212, - [SMALL_STATE(2947)] = 87220, - [SMALL_STATE(2948)] = 87228, - [SMALL_STATE(2949)] = 87236, - [SMALL_STATE(2950)] = 87244, - [SMALL_STATE(2951)] = 87252, - [SMALL_STATE(2952)] = 87260, - [SMALL_STATE(2953)] = 87268, - [SMALL_STATE(2954)] = 87276, - [SMALL_STATE(2955)] = 87284, - [SMALL_STATE(2956)] = 87292, - [SMALL_STATE(2957)] = 87300, - [SMALL_STATE(2958)] = 87308, - [SMALL_STATE(2959)] = 87316, - [SMALL_STATE(2960)] = 87324, - [SMALL_STATE(2961)] = 87332, - [SMALL_STATE(2962)] = 87340, - [SMALL_STATE(2963)] = 87348, - [SMALL_STATE(2964)] = 87356, - [SMALL_STATE(2965)] = 87364, - [SMALL_STATE(2966)] = 87372, - [SMALL_STATE(2967)] = 87380, - [SMALL_STATE(2968)] = 87388, - [SMALL_STATE(2969)] = 87396, - [SMALL_STATE(2970)] = 87404, - [SMALL_STATE(2971)] = 87412, - [SMALL_STATE(2972)] = 87420, - [SMALL_STATE(2973)] = 87428, - [SMALL_STATE(2974)] = 87436, - [SMALL_STATE(2975)] = 87444, - [SMALL_STATE(2976)] = 87452, - [SMALL_STATE(2977)] = 87460, - [SMALL_STATE(2978)] = 87468, - [SMALL_STATE(2979)] = 87476, - [SMALL_STATE(2980)] = 87484, - [SMALL_STATE(2981)] = 87492, - [SMALL_STATE(2982)] = 87500, - [SMALL_STATE(2983)] = 87508, - [SMALL_STATE(2984)] = 87516, - [SMALL_STATE(2985)] = 87524, - [SMALL_STATE(2986)] = 87532, - [SMALL_STATE(2987)] = 87540, - [SMALL_STATE(2988)] = 87548, - [SMALL_STATE(2989)] = 87556, - [SMALL_STATE(2990)] = 87564, - [SMALL_STATE(2991)] = 87572, - [SMALL_STATE(2992)] = 87580, - [SMALL_STATE(2993)] = 87588, - [SMALL_STATE(2994)] = 87596, - [SMALL_STATE(2995)] = 87604, - [SMALL_STATE(2996)] = 87612, - [SMALL_STATE(2997)] = 87620, - [SMALL_STATE(2998)] = 87628, - [SMALL_STATE(2999)] = 87636, - [SMALL_STATE(3000)] = 87644, - [SMALL_STATE(3001)] = 87652, - [SMALL_STATE(3002)] = 87660, - [SMALL_STATE(3003)] = 87668, - [SMALL_STATE(3004)] = 87676, - [SMALL_STATE(3005)] = 87684, - [SMALL_STATE(3006)] = 87692, - [SMALL_STATE(3007)] = 87700, - [SMALL_STATE(3008)] = 87708, - [SMALL_STATE(3009)] = 87716, - [SMALL_STATE(3010)] = 87724, - [SMALL_STATE(3011)] = 87732, - [SMALL_STATE(3012)] = 87740, - [SMALL_STATE(3013)] = 87748, - [SMALL_STATE(3014)] = 87756, - [SMALL_STATE(3015)] = 87764, - [SMALL_STATE(3016)] = 87772, - [SMALL_STATE(3017)] = 87780, - [SMALL_STATE(3018)] = 87788, - [SMALL_STATE(3019)] = 87796, - [SMALL_STATE(3020)] = 87804, - [SMALL_STATE(3021)] = 87812, - [SMALL_STATE(3022)] = 87820, - [SMALL_STATE(3023)] = 87828, - [SMALL_STATE(3024)] = 87836, - [SMALL_STATE(3025)] = 87844, - [SMALL_STATE(3026)] = 87852, - [SMALL_STATE(3027)] = 87860, - [SMALL_STATE(3028)] = 87868, - [SMALL_STATE(3029)] = 87876, - [SMALL_STATE(3030)] = 87884, - [SMALL_STATE(3031)] = 87892, - [SMALL_STATE(3032)] = 87900, - [SMALL_STATE(3033)] = 87908, - [SMALL_STATE(3034)] = 87916, - [SMALL_STATE(3035)] = 87924, - [SMALL_STATE(3036)] = 87932, - [SMALL_STATE(3037)] = 87940, - [SMALL_STATE(3038)] = 87948, - [SMALL_STATE(3039)] = 87956, - [SMALL_STATE(3040)] = 87964, - [SMALL_STATE(3041)] = 87972, - [SMALL_STATE(3042)] = 87980, - [SMALL_STATE(3043)] = 87988, - [SMALL_STATE(3044)] = 87996, - [SMALL_STATE(3045)] = 88004, - [SMALL_STATE(3046)] = 88012, - [SMALL_STATE(3047)] = 88020, - [SMALL_STATE(3048)] = 88028, - [SMALL_STATE(3049)] = 88036, - [SMALL_STATE(3050)] = 88044, - [SMALL_STATE(3051)] = 88052, - [SMALL_STATE(3052)] = 88060, - [SMALL_STATE(3053)] = 88068, - [SMALL_STATE(3054)] = 88076, - [SMALL_STATE(3055)] = 88084, - [SMALL_STATE(3056)] = 88092, - [SMALL_STATE(3057)] = 88100, - [SMALL_STATE(3058)] = 88108, - [SMALL_STATE(3059)] = 88116, - [SMALL_STATE(3060)] = 88124, - [SMALL_STATE(3061)] = 88132, - [SMALL_STATE(3062)] = 88140, - [SMALL_STATE(3063)] = 88148, - [SMALL_STATE(3064)] = 88156, - [SMALL_STATE(3065)] = 88164, - [SMALL_STATE(3066)] = 88172, - [SMALL_STATE(3067)] = 88180, - [SMALL_STATE(3068)] = 88188, - [SMALL_STATE(3069)] = 88196, - [SMALL_STATE(3070)] = 88204, - [SMALL_STATE(3071)] = 88212, - [SMALL_STATE(3072)] = 88220, - [SMALL_STATE(3073)] = 88228, - [SMALL_STATE(3074)] = 88236, - [SMALL_STATE(3075)] = 88244, - [SMALL_STATE(3076)] = 88252, - [SMALL_STATE(3077)] = 88260, - [SMALL_STATE(3078)] = 88268, - [SMALL_STATE(3079)] = 88276, - [SMALL_STATE(3080)] = 88284, - [SMALL_STATE(3081)] = 88292, - [SMALL_STATE(3082)] = 88300, - [SMALL_STATE(3083)] = 88308, - [SMALL_STATE(3084)] = 88316, - [SMALL_STATE(3085)] = 88324, - [SMALL_STATE(3086)] = 88332, - [SMALL_STATE(3087)] = 88340, - [SMALL_STATE(3088)] = 88348, - [SMALL_STATE(3089)] = 88356, - [SMALL_STATE(3090)] = 88364, - [SMALL_STATE(3091)] = 88372, - [SMALL_STATE(3092)] = 88380, - [SMALL_STATE(3093)] = 88388, - [SMALL_STATE(3094)] = 88396, - [SMALL_STATE(3095)] = 88404, - [SMALL_STATE(3096)] = 88412, - [SMALL_STATE(3097)] = 88420, - [SMALL_STATE(3098)] = 88428, - [SMALL_STATE(3099)] = 88436, - [SMALL_STATE(3100)] = 88444, - [SMALL_STATE(3101)] = 88452, - [SMALL_STATE(3102)] = 88460, - [SMALL_STATE(3103)] = 88468, - [SMALL_STATE(3104)] = 88476, - [SMALL_STATE(3105)] = 88484, - [SMALL_STATE(3106)] = 88492, - [SMALL_STATE(3107)] = 88500, - [SMALL_STATE(3108)] = 88508, - [SMALL_STATE(3109)] = 88516, - [SMALL_STATE(3110)] = 88524, - [SMALL_STATE(3111)] = 88532, - [SMALL_STATE(3112)] = 88540, - [SMALL_STATE(3113)] = 88548, - [SMALL_STATE(3114)] = 88556, - [SMALL_STATE(3115)] = 88564, - [SMALL_STATE(3116)] = 88572, - [SMALL_STATE(3117)] = 88580, - [SMALL_STATE(3118)] = 88588, - [SMALL_STATE(3119)] = 88596, - [SMALL_STATE(3120)] = 88604, - [SMALL_STATE(3121)] = 88612, - [SMALL_STATE(3122)] = 88620, - [SMALL_STATE(3123)] = 88628, - [SMALL_STATE(3124)] = 88636, - [SMALL_STATE(3125)] = 88644, - [SMALL_STATE(3126)] = 88652, - [SMALL_STATE(3127)] = 88660, - [SMALL_STATE(3128)] = 88668, - [SMALL_STATE(3129)] = 88676, - [SMALL_STATE(3130)] = 88684, - [SMALL_STATE(3131)] = 88692, - [SMALL_STATE(3132)] = 88700, - [SMALL_STATE(3133)] = 88708, - [SMALL_STATE(3134)] = 88716, - [SMALL_STATE(3135)] = 88724, - [SMALL_STATE(3136)] = 88732, - [SMALL_STATE(3137)] = 88740, - [SMALL_STATE(3138)] = 88748, - [SMALL_STATE(3139)] = 88756, - [SMALL_STATE(3140)] = 88764, - [SMALL_STATE(3141)] = 88772, - [SMALL_STATE(3142)] = 88780, - [SMALL_STATE(3143)] = 88788, - [SMALL_STATE(3144)] = 88796, - [SMALL_STATE(3145)] = 88804, - [SMALL_STATE(3146)] = 88812, - [SMALL_STATE(3147)] = 88820, - [SMALL_STATE(3148)] = 88828, - [SMALL_STATE(3149)] = 88836, - [SMALL_STATE(3150)] = 88844, - [SMALL_STATE(3151)] = 88852, - [SMALL_STATE(3152)] = 88860, - [SMALL_STATE(3153)] = 88868, - [SMALL_STATE(3154)] = 88876, - [SMALL_STATE(3155)] = 88884, - [SMALL_STATE(3156)] = 88892, - [SMALL_STATE(3157)] = 88900, - [SMALL_STATE(3158)] = 88908, - [SMALL_STATE(3159)] = 88916, - [SMALL_STATE(3160)] = 88924, - [SMALL_STATE(3161)] = 88932, - [SMALL_STATE(3162)] = 88940, - [SMALL_STATE(3163)] = 88948, - [SMALL_STATE(3164)] = 88956, - [SMALL_STATE(3165)] = 88964, - [SMALL_STATE(3166)] = 88972, - [SMALL_STATE(3167)] = 88980, - [SMALL_STATE(3168)] = 88988, - [SMALL_STATE(3169)] = 88996, - [SMALL_STATE(3170)] = 89004, - [SMALL_STATE(3171)] = 89012, - [SMALL_STATE(3172)] = 89020, - [SMALL_STATE(3173)] = 89028, - [SMALL_STATE(3174)] = 89036, - [SMALL_STATE(3175)] = 89044, - [SMALL_STATE(3176)] = 89052, - [SMALL_STATE(3177)] = 89060, - [SMALL_STATE(3178)] = 89068, - [SMALL_STATE(3179)] = 89076, - [SMALL_STATE(3180)] = 89084, - [SMALL_STATE(3181)] = 89092, - [SMALL_STATE(3182)] = 89100, - [SMALL_STATE(3183)] = 89108, - [SMALL_STATE(3184)] = 89116, - [SMALL_STATE(3185)] = 89124, - [SMALL_STATE(3186)] = 89132, - [SMALL_STATE(3187)] = 89140, - [SMALL_STATE(3188)] = 89148, - [SMALL_STATE(3189)] = 89156, - [SMALL_STATE(3190)] = 89164, - [SMALL_STATE(3191)] = 89172, - [SMALL_STATE(3192)] = 89180, - [SMALL_STATE(3193)] = 89188, - [SMALL_STATE(3194)] = 89196, - [SMALL_STATE(3195)] = 89204, - [SMALL_STATE(3196)] = 89212, - [SMALL_STATE(3197)] = 89220, - [SMALL_STATE(3198)] = 89228, - [SMALL_STATE(3199)] = 89236, - [SMALL_STATE(3200)] = 89244, - [SMALL_STATE(3201)] = 89252, - [SMALL_STATE(3202)] = 89260, - [SMALL_STATE(3203)] = 89268, - [SMALL_STATE(3204)] = 89276, - [SMALL_STATE(3205)] = 89284, - [SMALL_STATE(3206)] = 89292, - [SMALL_STATE(3207)] = 89300, - [SMALL_STATE(3208)] = 89308, - [SMALL_STATE(3209)] = 89316, - [SMALL_STATE(3210)] = 89324, - [SMALL_STATE(3211)] = 89332, - [SMALL_STATE(3212)] = 89340, - [SMALL_STATE(3213)] = 89348, - [SMALL_STATE(3214)] = 89356, - [SMALL_STATE(3215)] = 89364, - [SMALL_STATE(3216)] = 89372, - [SMALL_STATE(3217)] = 89380, - [SMALL_STATE(3218)] = 89388, + [SMALL_STATE(165)] = 3332, + [SMALL_STATE(166)] = 3417, + [SMALL_STATE(167)] = 3475, + [SMALL_STATE(168)] = 3533, + [SMALL_STATE(169)] = 3617, + [SMALL_STATE(170)] = 3701, + [SMALL_STATE(171)] = 3787, + [SMALL_STATE(172)] = 3871, + [SMALL_STATE(173)] = 3929, + [SMALL_STATE(174)] = 4015, + [SMALL_STATE(175)] = 4073, + [SMALL_STATE(176)] = 4159, + [SMALL_STATE(177)] = 4243, + [SMALL_STATE(178)] = 4301, + [SMALL_STATE(179)] = 4387, + [SMALL_STATE(180)] = 4471, + [SMALL_STATE(181)] = 4555, + [SMALL_STATE(182)] = 4643, + [SMALL_STATE(183)] = 4727, + [SMALL_STATE(184)] = 4785, + [SMALL_STATE(185)] = 4869, + [SMALL_STATE(186)] = 4957, + [SMALL_STATE(187)] = 5041, + [SMALL_STATE(188)] = 5125, + [SMALL_STATE(189)] = 5209, + [SMALL_STATE(190)] = 5293, + [SMALL_STATE(191)] = 5377, + [SMALL_STATE(192)] = 5463, + [SMALL_STATE(193)] = 5549, + [SMALL_STATE(194)] = 5631, + [SMALL_STATE(195)] = 5715, + [SMALL_STATE(196)] = 5798, + [SMALL_STATE(197)] = 5881, + [SMALL_STATE(198)] = 5964, + [SMALL_STATE(199)] = 6047, + [SMALL_STATE(200)] = 6128, + [SMALL_STATE(201)] = 6211, + [SMALL_STATE(202)] = 6262, + [SMALL_STATE(203)] = 6345, + [SMALL_STATE(204)] = 6428, + [SMALL_STATE(205)] = 6479, + [SMALL_STATE(206)] = 6562, + [SMALL_STATE(207)] = 6645, + [SMALL_STATE(208)] = 6728, + [SMALL_STATE(209)] = 6811, + [SMALL_STATE(210)] = 6894, + [SMALL_STATE(211)] = 6949, + [SMALL_STATE(212)] = 7000, + [SMALL_STATE(213)] = 7083, + [SMALL_STATE(214)] = 7166, + [SMALL_STATE(215)] = 7249, + [SMALL_STATE(216)] = 7332, + [SMALL_STATE(217)] = 7383, + [SMALL_STATE(218)] = 7463, + [SMALL_STATE(219)] = 7543, + [SMALL_STATE(220)] = 7623, + [SMALL_STATE(221)] = 7703, + [SMALL_STATE(222)] = 7783, + [SMALL_STATE(223)] = 7833, + [SMALL_STATE(224)] = 7913, + [SMALL_STATE(225)] = 7993, + [SMALL_STATE(226)] = 8073, + [SMALL_STATE(227)] = 8153, + [SMALL_STATE(228)] = 8233, + [SMALL_STATE(229)] = 8283, + [SMALL_STATE(230)] = 8363, + [SMALL_STATE(231)] = 8443, + [SMALL_STATE(232)] = 8497, + [SMALL_STATE(233)] = 8577, + [SMALL_STATE(234)] = 8657, + [SMALL_STATE(235)] = 8737, + [SMALL_STATE(236)] = 8817, + [SMALL_STATE(237)] = 8897, + [SMALL_STATE(238)] = 8977, + [SMALL_STATE(239)] = 9057, + [SMALL_STATE(240)] = 9137, + [SMALL_STATE(241)] = 9217, + [SMALL_STATE(242)] = 9297, + [SMALL_STATE(243)] = 9377, + [SMALL_STATE(244)] = 9457, + [SMALL_STATE(245)] = 9507, + [SMALL_STATE(246)] = 9557, + [SMALL_STATE(247)] = 9637, + [SMALL_STATE(248)] = 9717, + [SMALL_STATE(249)] = 9797, + [SMALL_STATE(250)] = 9877, + [SMALL_STATE(251)] = 9957, + [SMALL_STATE(252)] = 10037, + [SMALL_STATE(253)] = 10117, + [SMALL_STATE(254)] = 10201, + [SMALL_STATE(255)] = 10281, + [SMALL_STATE(256)] = 10361, + [SMALL_STATE(257)] = 10441, + [SMALL_STATE(258)] = 10521, + [SMALL_STATE(259)] = 10601, + [SMALL_STATE(260)] = 10681, + [SMALL_STATE(261)] = 10761, + [SMALL_STATE(262)] = 10841, + [SMALL_STATE(263)] = 10923, + [SMALL_STATE(264)] = 11007, + [SMALL_STATE(265)] = 11087, + [SMALL_STATE(266)] = 11167, + [SMALL_STATE(267)] = 11244, + [SMALL_STATE(268)] = 11293, + [SMALL_STATE(269)] = 11370, + [SMALL_STATE(270)] = 11447, + [SMALL_STATE(271)] = 11524, + [SMALL_STATE(272)] = 11601, + [SMALL_STATE(273)] = 11678, + [SMALL_STATE(274)] = 11755, + [SMALL_STATE(275)] = 11832, + [SMALL_STATE(276)] = 11909, + [SMALL_STATE(277)] = 11988, + [SMALL_STATE(278)] = 12065, + [SMALL_STATE(279)] = 12142, + [SMALL_STATE(280)] = 12219, + [SMALL_STATE(281)] = 12296, + [SMALL_STATE(282)] = 12373, + [SMALL_STATE(283)] = 12450, + [SMALL_STATE(284)] = 12527, + [SMALL_STATE(285)] = 12604, + [SMALL_STATE(286)] = 12681, + [SMALL_STATE(287)] = 12758, + [SMALL_STATE(288)] = 12811, + [SMALL_STATE(289)] = 12888, + [SMALL_STATE(290)] = 12969, + [SMALL_STATE(291)] = 13046, + [SMALL_STATE(292)] = 13123, + [SMALL_STATE(293)] = 13200, + [SMALL_STATE(294)] = 13277, + [SMALL_STATE(295)] = 13354, + [SMALL_STATE(296)] = 13431, + [SMALL_STATE(297)] = 13508, + [SMALL_STATE(298)] = 13585, + [SMALL_STATE(299)] = 13662, + [SMALL_STATE(300)] = 13739, + [SMALL_STATE(301)] = 13816, + [SMALL_STATE(302)] = 13893, + [SMALL_STATE(303)] = 13970, + [SMALL_STATE(304)] = 14051, + [SMALL_STATE(305)] = 14128, + [SMALL_STATE(306)] = 14205, + [SMALL_STATE(307)] = 14282, + [SMALL_STATE(308)] = 14363, + [SMALL_STATE(309)] = 14440, + [SMALL_STATE(310)] = 14517, + [SMALL_STATE(311)] = 14598, + [SMALL_STATE(312)] = 14675, + [SMALL_STATE(313)] = 14752, + [SMALL_STATE(314)] = 14829, + [SMALL_STATE(315)] = 14906, + [SMALL_STATE(316)] = 14983, + [SMALL_STATE(317)] = 15060, + [SMALL_STATE(318)] = 15137, + [SMALL_STATE(319)] = 15214, + [SMALL_STATE(320)] = 15291, + [SMALL_STATE(321)] = 15340, + [SMALL_STATE(322)] = 15417, + [SMALL_STATE(323)] = 15496, + [SMALL_STATE(324)] = 15553, + [SMALL_STATE(325)] = 15630, + [SMALL_STATE(326)] = 15679, + [SMALL_STATE(327)] = 15756, + [SMALL_STATE(328)] = 15805, + [SMALL_STATE(329)] = 15882, + [SMALL_STATE(330)] = 15959, + [SMALL_STATE(331)] = 16036, + [SMALL_STATE(332)] = 16113, + [SMALL_STATE(333)] = 16190, + [SMALL_STATE(334)] = 16269, + [SMALL_STATE(335)] = 16346, + [SMALL_STATE(336)] = 16423, + [SMALL_STATE(337)] = 16500, + [SMALL_STATE(338)] = 16577, + [SMALL_STATE(339)] = 16654, + [SMALL_STATE(340)] = 16731, + [SMALL_STATE(341)] = 16808, + [SMALL_STATE(342)] = 16887, + [SMALL_STATE(343)] = 16964, + [SMALL_STATE(344)] = 17041, + [SMALL_STATE(345)] = 17118, + [SMALL_STATE(346)] = 17195, + [SMALL_STATE(347)] = 17272, + [SMALL_STATE(348)] = 17351, + [SMALL_STATE(349)] = 17428, + [SMALL_STATE(350)] = 17505, + [SMALL_STATE(351)] = 17582, + [SMALL_STATE(352)] = 17657, + [SMALL_STATE(353)] = 17734, + [SMALL_STATE(354)] = 17811, + [SMALL_STATE(355)] = 17888, + [SMALL_STATE(356)] = 17965, + [SMALL_STATE(357)] = 18042, + [SMALL_STATE(358)] = 18119, + [SMALL_STATE(359)] = 18196, + [SMALL_STATE(360)] = 18273, + [SMALL_STATE(361)] = 18350, + [SMALL_STATE(362)] = 18427, + [SMALL_STATE(363)] = 18504, + [SMALL_STATE(364)] = 18583, + [SMALL_STATE(365)] = 18660, + [SMALL_STATE(366)] = 18709, + [SMALL_STATE(367)] = 18786, + [SMALL_STATE(368)] = 18835, + [SMALL_STATE(369)] = 18912, + [SMALL_STATE(370)] = 18961, + [SMALL_STATE(371)] = 19010, + [SMALL_STATE(372)] = 19087, + [SMALL_STATE(373)] = 19136, + [SMALL_STATE(374)] = 19185, + [SMALL_STATE(375)] = 19262, + [SMALL_STATE(376)] = 19319, + [SMALL_STATE(377)] = 19398, + [SMALL_STATE(378)] = 19475, + [SMALL_STATE(379)] = 19552, + [SMALL_STATE(380)] = 19629, + [SMALL_STATE(381)] = 19706, + [SMALL_STATE(382)] = 19783, + [SMALL_STATE(383)] = 19860, + [SMALL_STATE(384)] = 19919, + [SMALL_STATE(385)] = 19982, + [SMALL_STATE(386)] = 20059, + [SMALL_STATE(387)] = 20132, + [SMALL_STATE(388)] = 20209, + [SMALL_STATE(389)] = 20286, + [SMALL_STATE(390)] = 20363, + [SMALL_STATE(391)] = 20440, + [SMALL_STATE(392)] = 20517, + [SMALL_STATE(393)] = 20594, + [SMALL_STATE(394)] = 20671, + [SMALL_STATE(395)] = 20740, + [SMALL_STATE(396)] = 20807, + [SMALL_STATE(397)] = 20884, + [SMALL_STATE(398)] = 20961, + [SMALL_STATE(399)] = 21038, + [SMALL_STATE(400)] = 21115, + [SMALL_STATE(401)] = 21192, + [SMALL_STATE(402)] = 21269, + [SMALL_STATE(403)] = 21346, + [SMALL_STATE(404)] = 21395, + [SMALL_STATE(405)] = 21444, + [SMALL_STATE(406)] = 21521, + [SMALL_STATE(407)] = 21598, + [SMALL_STATE(408)] = 21675, + [SMALL_STATE(409)] = 21752, + [SMALL_STATE(410)] = 21829, + [SMALL_STATE(411)] = 21906, + [SMALL_STATE(412)] = 21955, + [SMALL_STATE(413)] = 22032, + [SMALL_STATE(414)] = 22081, + [SMALL_STATE(415)] = 22130, + [SMALL_STATE(416)] = 22179, + [SMALL_STATE(417)] = 22256, + [SMALL_STATE(418)] = 22305, + [SMALL_STATE(419)] = 22382, + [SMALL_STATE(420)] = 22459, + [SMALL_STATE(421)] = 22536, + [SMALL_STATE(422)] = 22585, + [SMALL_STATE(423)] = 22634, + [SMALL_STATE(424)] = 22697, + [SMALL_STATE(425)] = 22774, + [SMALL_STATE(426)] = 22823, + [SMALL_STATE(427)] = 22900, + [SMALL_STATE(428)] = 22949, + [SMALL_STATE(429)] = 23026, + [SMALL_STATE(430)] = 23075, + [SMALL_STATE(431)] = 23124, + [SMALL_STATE(432)] = 23201, + [SMALL_STATE(433)] = 23250, + [SMALL_STATE(434)] = 23299, + [SMALL_STATE(435)] = 23370, + [SMALL_STATE(436)] = 23419, + [SMALL_STATE(437)] = 23496, + [SMALL_STATE(438)] = 23545, + [SMALL_STATE(439)] = 23622, + [SMALL_STATE(440)] = 23699, + [SMALL_STATE(441)] = 23748, + [SMALL_STATE(442)] = 23797, + [SMALL_STATE(443)] = 23846, + [SMALL_STATE(444)] = 23923, + [SMALL_STATE(445)] = 24000, + [SMALL_STATE(446)] = 24049, + [SMALL_STATE(447)] = 24098, + [SMALL_STATE(448)] = 24147, + [SMALL_STATE(449)] = 24196, + [SMALL_STATE(450)] = 24275, + [SMALL_STATE(451)] = 24324, + [SMALL_STATE(452)] = 24373, + [SMALL_STATE(453)] = 24422, + [SMALL_STATE(454)] = 24471, + [SMALL_STATE(455)] = 24520, + [SMALL_STATE(456)] = 24569, + [SMALL_STATE(457)] = 24646, + [SMALL_STATE(458)] = 24723, + [SMALL_STATE(459)] = 24800, + [SMALL_STATE(460)] = 24848, + [SMALL_STATE(461)] = 24904, + [SMALL_STATE(462)] = 24978, + [SMALL_STATE(463)] = 25026, + [SMALL_STATE(464)] = 25074, + [SMALL_STATE(465)] = 25122, + [SMALL_STATE(466)] = 25170, + [SMALL_STATE(467)] = 25218, + [SMALL_STATE(468)] = 25266, + [SMALL_STATE(469)] = 25314, + [SMALL_STATE(470)] = 25362, + [SMALL_STATE(471)] = 25410, + [SMALL_STATE(472)] = 25480, + [SMALL_STATE(473)] = 25528, + [SMALL_STATE(474)] = 25576, + [SMALL_STATE(475)] = 25624, + [SMALL_STATE(476)] = 25672, + [SMALL_STATE(477)] = 25720, + [SMALL_STATE(478)] = 25768, + [SMALL_STATE(479)] = 25816, + [SMALL_STATE(480)] = 25864, + [SMALL_STATE(481)] = 25912, + [SMALL_STATE(482)] = 25960, + [SMALL_STATE(483)] = 26022, + [SMALL_STATE(484)] = 26070, + [SMALL_STATE(485)] = 26118, + [SMALL_STATE(486)] = 26166, + [SMALL_STATE(487)] = 26214, + [SMALL_STATE(488)] = 26262, + [SMALL_STATE(489)] = 26310, + [SMALL_STATE(490)] = 26358, + [SMALL_STATE(491)] = 26416, + [SMALL_STATE(492)] = 26468, + [SMALL_STATE(493)] = 26530, + [SMALL_STATE(494)] = 26578, + [SMALL_STATE(495)] = 26626, + [SMALL_STATE(496)] = 26674, + [SMALL_STATE(497)] = 26722, + [SMALL_STATE(498)] = 26788, + [SMALL_STATE(499)] = 26856, + [SMALL_STATE(500)] = 26928, + [SMALL_STATE(501)] = 26976, + [SMALL_STATE(502)] = 27024, + [SMALL_STATE(503)] = 27072, + [SMALL_STATE(504)] = 27128, + [SMALL_STATE(505)] = 27176, + [SMALL_STATE(506)] = 27224, + [SMALL_STATE(507)] = 27272, + [SMALL_STATE(508)] = 27320, + [SMALL_STATE(509)] = 27368, + [SMALL_STATE(510)] = 27416, + [SMALL_STATE(511)] = 27468, + [SMALL_STATE(512)] = 27520, + [SMALL_STATE(513)] = 27572, + [SMALL_STATE(514)] = 27624, + [SMALL_STATE(515)] = 27668, + [SMALL_STATE(516)] = 27712, + [SMALL_STATE(517)] = 27766, + [SMALL_STATE(518)] = 27820, + [SMALL_STATE(519)] = 27874, + [SMALL_STATE(520)] = 27928, + [SMALL_STATE(521)] = 27977, + [SMALL_STATE(522)] = 28074, + [SMALL_STATE(523)] = 28123, + [SMALL_STATE(524)] = 28172, + [SMALL_STATE(525)] = 28214, + [SMALL_STATE(526)] = 28256, + [SMALL_STATE(527)] = 28302, + [SMALL_STATE(528)] = 28398, + [SMALL_STATE(529)] = 28444, + [SMALL_STATE(530)] = 28486, + [SMALL_STATE(531)] = 28532, + [SMALL_STATE(532)] = 28574, + [SMALL_STATE(533)] = 28616, + [SMALL_STATE(534)] = 28658, + [SMALL_STATE(535)] = 28704, + [SMALL_STATE(536)] = 28746, + [SMALL_STATE(537)] = 28788, + [SMALL_STATE(538)] = 28830, + [SMALL_STATE(539)] = 28872, + [SMALL_STATE(540)] = 28914, + [SMALL_STATE(541)] = 28956, + [SMALL_STATE(542)] = 28998, + [SMALL_STATE(543)] = 29043, + [SMALL_STATE(544)] = 29084, + [SMALL_STATE(545)] = 29129, + [SMALL_STATE(546)] = 29170, + [SMALL_STATE(547)] = 29214, + [SMALL_STATE(548)] = 29254, + [SMALL_STATE(549)] = 29300, + [SMALL_STATE(550)] = 29346, + [SMALL_STATE(551)] = 29392, + [SMALL_STATE(552)] = 29431, + [SMALL_STATE(553)] = 29470, + [SMALL_STATE(554)] = 29509, + [SMALL_STATE(555)] = 29548, + [SMALL_STATE(556)] = 29587, + [SMALL_STATE(557)] = 29632, + [SMALL_STATE(558)] = 29671, + [SMALL_STATE(559)] = 29710, + [SMALL_STATE(560)] = 29749, + [SMALL_STATE(561)] = 29788, + [SMALL_STATE(562)] = 29827, + [SMALL_STATE(563)] = 29866, + [SMALL_STATE(564)] = 29905, + [SMALL_STATE(565)] = 29952, + [SMALL_STATE(566)] = 30005, + [SMALL_STATE(567)] = 30044, + [SMALL_STATE(568)] = 30083, + [SMALL_STATE(569)] = 30126, + [SMALL_STATE(570)] = 30165, + [SMALL_STATE(571)] = 30204, + [SMALL_STATE(572)] = 30243, + [SMALL_STATE(573)] = 30288, + [SMALL_STATE(574)] = 30327, + [SMALL_STATE(575)] = 30366, + [SMALL_STATE(576)] = 30409, + [SMALL_STATE(577)] = 30448, + [SMALL_STATE(578)] = 30487, + [SMALL_STATE(579)] = 30526, + [SMALL_STATE(580)] = 30565, + [SMALL_STATE(581)] = 30604, + [SMALL_STATE(582)] = 30643, + [SMALL_STATE(583)] = 30682, + [SMALL_STATE(584)] = 30727, + [SMALL_STATE(585)] = 30766, + [SMALL_STATE(586)] = 30805, + [SMALL_STATE(587)] = 30844, + [SMALL_STATE(588)] = 30883, + [SMALL_STATE(589)] = 30944, + [SMALL_STATE(590)] = 30991, + [SMALL_STATE(591)] = 31030, + [SMALL_STATE(592)] = 31079, + [SMALL_STATE(593)] = 31132, + [SMALL_STATE(594)] = 31171, + [SMALL_STATE(595)] = 31232, + [SMALL_STATE(596)] = 31291, + [SMALL_STATE(597)] = 31348, + [SMALL_STATE(598)] = 31387, + [SMALL_STATE(599)] = 31426, + [SMALL_STATE(600)] = 31465, + [SMALL_STATE(601)] = 31504, + [SMALL_STATE(602)] = 31543, + [SMALL_STATE(603)] = 31582, + [SMALL_STATE(604)] = 31621, + [SMALL_STATE(605)] = 31659, + [SMALL_STATE(606)] = 31717, + [SMALL_STATE(607)] = 31759, + [SMALL_STATE(608)] = 31817, + [SMALL_STATE(609)] = 31855, + [SMALL_STATE(610)] = 31897, + [SMALL_STATE(611)] = 31938, + [SMALL_STATE(612)] = 31979, + [SMALL_STATE(613)] = 32022, + [SMALL_STATE(614)] = 32065, + [SMALL_STATE(615)] = 32102, + [SMALL_STATE(616)] = 32143, + [SMALL_STATE(617)] = 32180, + [SMALL_STATE(618)] = 32223, + [SMALL_STATE(619)] = 32290, + [SMALL_STATE(620)] = 32347, + [SMALL_STATE(621)] = 32404, + [SMALL_STATE(622)] = 32471, + [SMALL_STATE(623)] = 32514, + [SMALL_STATE(624)] = 32551, + [SMALL_STATE(625)] = 32612, + [SMALL_STATE(626)] = 32655, + [SMALL_STATE(627)] = 32696, + [SMALL_STATE(628)] = 32737, + [SMALL_STATE(629)] = 32773, + [SMALL_STATE(630)] = 32837, + [SMALL_STATE(631)] = 32873, + [SMALL_STATE(632)] = 32909, + [SMALL_STATE(633)] = 32973, + [SMALL_STATE(634)] = 33039, + [SMALL_STATE(635)] = 33075, + [SMALL_STATE(636)] = 33141, + [SMALL_STATE(637)] = 33177, + [SMALL_STATE(638)] = 33213, + [SMALL_STATE(639)] = 33279, + [SMALL_STATE(640)] = 33315, + [SMALL_STATE(641)] = 33359, + [SMALL_STATE(642)] = 33395, + [SMALL_STATE(643)] = 33431, + [SMALL_STATE(644)] = 33493, + [SMALL_STATE(645)] = 33557, + [SMALL_STATE(646)] = 33621, + [SMALL_STATE(647)] = 33681, + [SMALL_STATE(648)] = 33745, + [SMALL_STATE(649)] = 33787, + [SMALL_STATE(650)] = 33831, + [SMALL_STATE(651)] = 33895, + [SMALL_STATE(652)] = 33955, + [SMALL_STATE(653)] = 34015, + [SMALL_STATE(654)] = 34077, + [SMALL_STATE(655)] = 34123, + [SMALL_STATE(656)] = 34159, + [SMALL_STATE(657)] = 34209, + [SMALL_STATE(658)] = 34249, + [SMALL_STATE(659)] = 34315, + [SMALL_STATE(660)] = 34373, + [SMALL_STATE(661)] = 34437, + [SMALL_STATE(662)] = 34499, + [SMALL_STATE(663)] = 34537, + [SMALL_STATE(664)] = 34575, + [SMALL_STATE(665)] = 34637, + [SMALL_STATE(666)] = 34673, + [SMALL_STATE(667)] = 34709, + [SMALL_STATE(668)] = 34745, + [SMALL_STATE(669)] = 34801, + [SMALL_STATE(670)] = 34865, + [SMALL_STATE(671)] = 34925, + [SMALL_STATE(672)] = 34979, + [SMALL_STATE(673)] = 35015, + [SMALL_STATE(674)] = 35079, + [SMALL_STATE(675)] = 35143, + [SMALL_STATE(676)] = 35207, + [SMALL_STATE(677)] = 35271, + [SMALL_STATE(678)] = 35333, + [SMALL_STATE(679)] = 35395, + [SMALL_STATE(680)] = 35455, + [SMALL_STATE(681)] = 35491, + [SMALL_STATE(682)] = 35527, + [SMALL_STATE(683)] = 35563, + [SMALL_STATE(684)] = 35599, + [SMALL_STATE(685)] = 35635, + [SMALL_STATE(686)] = 35671, + [SMALL_STATE(687)] = 35731, + [SMALL_STATE(688)] = 35795, + [SMALL_STATE(689)] = 35831, + [SMALL_STATE(690)] = 35881, + [SMALL_STATE(691)] = 35945, + [SMALL_STATE(692)] = 36009, + [SMALL_STATE(693)] = 36045, + [SMALL_STATE(694)] = 36083, + [SMALL_STATE(695)] = 36149, + [SMALL_STATE(696)] = 36209, + [SMALL_STATE(697)] = 36245, + [SMALL_STATE(698)] = 36311, + [SMALL_STATE(699)] = 36377, + [SMALL_STATE(700)] = 36413, + [SMALL_STATE(701)] = 36449, + [SMALL_STATE(702)] = 36485, + [SMALL_STATE(703)] = 36521, + [SMALL_STATE(704)] = 36557, + [SMALL_STATE(705)] = 36595, + [SMALL_STATE(706)] = 36653, + [SMALL_STATE(707)] = 36691, + [SMALL_STATE(708)] = 36727, + [SMALL_STATE(709)] = 36763, + [SMALL_STATE(710)] = 36799, + [SMALL_STATE(711)] = 36835, + [SMALL_STATE(712)] = 36871, + [SMALL_STATE(713)] = 36907, + [SMALL_STATE(714)] = 36943, + [SMALL_STATE(715)] = 36979, + [SMALL_STATE(716)] = 37041, + [SMALL_STATE(717)] = 37077, + [SMALL_STATE(718)] = 37143, + [SMALL_STATE(719)] = 37179, + [SMALL_STATE(720)] = 37215, + [SMALL_STATE(721)] = 37251, + [SMALL_STATE(722)] = 37287, + [SMALL_STATE(723)] = 37322, + [SMALL_STATE(724)] = 37357, + [SMALL_STATE(725)] = 37392, + [SMALL_STATE(726)] = 37445, + [SMALL_STATE(727)] = 37506, + [SMALL_STATE(728)] = 37541, + [SMALL_STATE(729)] = 37602, + [SMALL_STATE(730)] = 37637, + [SMALL_STATE(731)] = 37680, + [SMALL_STATE(732)] = 37715, + [SMALL_STATE(733)] = 37750, + [SMALL_STATE(734)] = 37811, + [SMALL_STATE(735)] = 37848, + [SMALL_STATE(736)] = 37907, + [SMALL_STATE(737)] = 37944, + [SMALL_STATE(738)] = 37979, + [SMALL_STATE(739)] = 38040, + [SMALL_STATE(740)] = 38075, + [SMALL_STATE(741)] = 38136, + [SMALL_STATE(742)] = 38197, + [SMALL_STATE(743)] = 38232, + [SMALL_STATE(744)] = 38267, + [SMALL_STATE(745)] = 38302, + [SMALL_STATE(746)] = 38337, + [SMALL_STATE(747)] = 38372, + [SMALL_STATE(748)] = 38407, + [SMALL_STATE(749)] = 38442, + [SMALL_STATE(750)] = 38477, + [SMALL_STATE(751)] = 38512, + [SMALL_STATE(752)] = 38573, + [SMALL_STATE(753)] = 38616, + [SMALL_STATE(754)] = 38651, + [SMALL_STATE(755)] = 38696, + [SMALL_STATE(756)] = 38745, + [SMALL_STATE(757)] = 38802, + [SMALL_STATE(758)] = 38837, + [SMALL_STATE(759)] = 38872, + [SMALL_STATE(760)] = 38927, + [SMALL_STATE(761)] = 38962, + [SMALL_STATE(762)] = 39021, + [SMALL_STATE(763)] = 39078, + [SMALL_STATE(764)] = 39135, + [SMALL_STATE(765)] = 39170, + [SMALL_STATE(766)] = 39205, + [SMALL_STATE(767)] = 39240, + [SMALL_STATE(768)] = 39275, + [SMALL_STATE(769)] = 39332, + [SMALL_STATE(770)] = 39367, + [SMALL_STATE(771)] = 39402, + [SMALL_STATE(772)] = 39437, + [SMALL_STATE(773)] = 39472, + [SMALL_STATE(774)] = 39529, + [SMALL_STATE(775)] = 39564, + [SMALL_STATE(776)] = 39625, + [SMALL_STATE(777)] = 39686, + [SMALL_STATE(778)] = 39721, + [SMALL_STATE(779)] = 39756, + [SMALL_STATE(780)] = 39805, + [SMALL_STATE(781)] = 39840, + [SMALL_STATE(782)] = 39901, + [SMALL_STATE(783)] = 39938, + [SMALL_STATE(784)] = 39975, + [SMALL_STATE(785)] = 40010, + [SMALL_STATE(786)] = 40045, + [SMALL_STATE(787)] = 40080, + [SMALL_STATE(788)] = 40115, + [SMALL_STATE(789)] = 40150, + [SMALL_STATE(790)] = 40211, + [SMALL_STATE(791)] = 40272, + [SMALL_STATE(792)] = 40331, + [SMALL_STATE(793)] = 40390, + [SMALL_STATE(794)] = 40449, + [SMALL_STATE(795)] = 40508, + [SMALL_STATE(796)] = 40567, + [SMALL_STATE(797)] = 40628, + [SMALL_STATE(798)] = 40687, + [SMALL_STATE(799)] = 40724, + [SMALL_STATE(800)] = 40783, + [SMALL_STATE(801)] = 40844, + [SMALL_STATE(802)] = 40903, + [SMALL_STATE(803)] = 40938, + [SMALL_STATE(804)] = 40996, + [SMALL_STATE(805)] = 41056, + [SMALL_STATE(806)] = 41116, + [SMALL_STATE(807)] = 41174, + [SMALL_STATE(808)] = 41232, + [SMALL_STATE(809)] = 41290, + [SMALL_STATE(810)] = 41348, + [SMALL_STATE(811)] = 41406, + [SMALL_STATE(812)] = 41464, + [SMALL_STATE(813)] = 41524, + [SMALL_STATE(814)] = 41562, + [SMALL_STATE(815)] = 41618, + [SMALL_STATE(816)] = 41676, + [SMALL_STATE(817)] = 41734, + [SMALL_STATE(818)] = 41792, + [SMALL_STATE(819)] = 41850, + [SMALL_STATE(820)] = 41910, + [SMALL_STATE(821)] = 41968, + [SMALL_STATE(822)] = 42028, + [SMALL_STATE(823)] = 42086, + [SMALL_STATE(824)] = 42144, + [SMALL_STATE(825)] = 42202, + [SMALL_STATE(826)] = 42236, + [SMALL_STATE(827)] = 42294, + [SMALL_STATE(828)] = 42352, + [SMALL_STATE(829)] = 42410, + [SMALL_STATE(830)] = 42468, + [SMALL_STATE(831)] = 42526, + [SMALL_STATE(832)] = 42584, + [SMALL_STATE(833)] = 42642, + [SMALL_STATE(834)] = 42700, + [SMALL_STATE(835)] = 42758, + [SMALL_STATE(836)] = 42816, + [SMALL_STATE(837)] = 42874, + [SMALL_STATE(838)] = 42912, + [SMALL_STATE(839)] = 42970, + [SMALL_STATE(840)] = 43028, + [SMALL_STATE(841)] = 43086, + [SMALL_STATE(842)] = 43144, + [SMALL_STATE(843)] = 43202, + [SMALL_STATE(844)] = 43260, + [SMALL_STATE(845)] = 43318, + [SMALL_STATE(846)] = 43376, + [SMALL_STATE(847)] = 43434, + [SMALL_STATE(848)] = 43492, + [SMALL_STATE(849)] = 43550, + [SMALL_STATE(850)] = 43608, + [SMALL_STATE(851)] = 43666, + [SMALL_STATE(852)] = 43724, + [SMALL_STATE(853)] = 43782, + [SMALL_STATE(854)] = 43840, + [SMALL_STATE(855)] = 43900, + [SMALL_STATE(856)] = 43956, + [SMALL_STATE(857)] = 44014, + [SMALL_STATE(858)] = 44072, + [SMALL_STATE(859)] = 44132, + [SMALL_STATE(860)] = 44190, + [SMALL_STATE(861)] = 44248, + [SMALL_STATE(862)] = 44306, + [SMALL_STATE(863)] = 44364, + [SMALL_STATE(864)] = 44422, + [SMALL_STATE(865)] = 44480, + [SMALL_STATE(866)] = 44538, + [SMALL_STATE(867)] = 44596, + [SMALL_STATE(868)] = 44654, + [SMALL_STATE(869)] = 44692, + [SMALL_STATE(870)] = 44750, + [SMALL_STATE(871)] = 44808, + [SMALL_STATE(872)] = 44866, + [SMALL_STATE(873)] = 44924, + [SMALL_STATE(874)] = 44990, + [SMALL_STATE(875)] = 45050, + [SMALL_STATE(876)] = 45108, + [SMALL_STATE(877)] = 45166, + [SMALL_STATE(878)] = 45224, + [SMALL_STATE(879)] = 45282, + [SMALL_STATE(880)] = 45340, + [SMALL_STATE(881)] = 45398, + [SMALL_STATE(882)] = 45456, + [SMALL_STATE(883)] = 45514, + [SMALL_STATE(884)] = 45570, + [SMALL_STATE(885)] = 45630, + [SMALL_STATE(886)] = 45690, + [SMALL_STATE(887)] = 45748, + [SMALL_STATE(888)] = 45806, + [SMALL_STATE(889)] = 45866, + [SMALL_STATE(890)] = 45924, + [SMALL_STATE(891)] = 45982, + [SMALL_STATE(892)] = 46040, + [SMALL_STATE(893)] = 46100, + [SMALL_STATE(894)] = 46158, + [SMALL_STATE(895)] = 46218, + [SMALL_STATE(896)] = 46278, + [SMALL_STATE(897)] = 46336, + [SMALL_STATE(898)] = 46394, + [SMALL_STATE(899)] = 46452, + [SMALL_STATE(900)] = 46512, + [SMALL_STATE(901)] = 46572, + [SMALL_STATE(902)] = 46630, + [SMALL_STATE(903)] = 46688, + [SMALL_STATE(904)] = 46746, + [SMALL_STATE(905)] = 46804, + [SMALL_STATE(906)] = 46837, + [SMALL_STATE(907)] = 46902, + [SMALL_STATE(908)] = 46935, + [SMALL_STATE(909)] = 46998, + [SMALL_STATE(910)] = 47037, + [SMALL_STATE(911)] = 47070, + [SMALL_STATE(912)] = 47111, + [SMALL_STATE(913)] = 47152, + [SMALL_STATE(914)] = 47201, + [SMALL_STATE(915)] = 47238, + [SMALL_STATE(916)] = 47275, + [SMALL_STATE(917)] = 47332, + [SMALL_STATE(918)] = 47381, + [SMALL_STATE(919)] = 47414, + [SMALL_STATE(920)] = 47447, + [SMALL_STATE(921)] = 47484, + [SMALL_STATE(922)] = 47521, + [SMALL_STATE(923)] = 47558, + [SMALL_STATE(924)] = 47591, + [SMALL_STATE(925)] = 47640, + [SMALL_STATE(926)] = 47681, + [SMALL_STATE(927)] = 47718, + [SMALL_STATE(928)] = 47751, + [SMALL_STATE(929)] = 47806, + [SMALL_STATE(930)] = 47863, + [SMALL_STATE(931)] = 47896, + [SMALL_STATE(932)] = 47933, + [SMALL_STATE(933)] = 47974, + [SMALL_STATE(934)] = 48023, + [SMALL_STATE(935)] = 48060, + [SMALL_STATE(936)] = 48115, + [SMALL_STATE(937)] = 48178, + [SMALL_STATE(938)] = 48241, + [SMALL_STATE(939)] = 48274, + [SMALL_STATE(940)] = 48307, + [SMALL_STATE(941)] = 48364, + [SMALL_STATE(942)] = 48421, + [SMALL_STATE(943)] = 48458, + [SMALL_STATE(944)] = 48515, + [SMALL_STATE(945)] = 48548, + [SMALL_STATE(946)] = 48603, + [SMALL_STATE(947)] = 48636, + [SMALL_STATE(948)] = 48691, + [SMALL_STATE(949)] = 48727, + [SMALL_STATE(950)] = 48763, + [SMALL_STATE(951)] = 48807, + [SMALL_STATE(952)] = 48839, + [SMALL_STATE(953)] = 48893, + [SMALL_STATE(954)] = 48937, + [SMALL_STATE(955)] = 48989, + [SMALL_STATE(956)] = 49051, + [SMALL_STATE(957)] = 49083, + [SMALL_STATE(958)] = 49119, + [SMALL_STATE(959)] = 49155, + [SMALL_STATE(960)] = 49191, + [SMALL_STATE(961)] = 49227, + [SMALL_STATE(962)] = 49263, + [SMALL_STATE(963)] = 49299, + [SMALL_STATE(964)] = 49331, + [SMALL_STATE(965)] = 49393, + [SMALL_STATE(966)] = 49429, + [SMALL_STATE(967)] = 49461, + [SMALL_STATE(968)] = 49493, + [SMALL_STATE(969)] = 49525, + [SMALL_STATE(970)] = 49587, + [SMALL_STATE(971)] = 49619, + [SMALL_STATE(972)] = 49663, + [SMALL_STATE(973)] = 49707, + [SMALL_STATE(974)] = 49739, + [SMALL_STATE(975)] = 49783, + [SMALL_STATE(976)] = 49815, + [SMALL_STATE(977)] = 49847, + [SMALL_STATE(978)] = 49879, + [SMALL_STATE(979)] = 49923, + [SMALL_STATE(980)] = 49955, + [SMALL_STATE(981)] = 49993, + [SMALL_STATE(982)] = 50045, + [SMALL_STATE(983)] = 50083, + [SMALL_STATE(984)] = 50127, + [SMALL_STATE(985)] = 50179, + [SMALL_STATE(986)] = 50231, + [SMALL_STATE(987)] = 50275, + [SMALL_STATE(988)] = 50310, + [SMALL_STATE(989)] = 50361, + [SMALL_STATE(990)] = 50396, + [SMALL_STATE(991)] = 50429, + [SMALL_STATE(992)] = 50464, + [SMALL_STATE(993)] = 50511, + [SMALL_STATE(994)] = 50542, + [SMALL_STATE(995)] = 50575, + [SMALL_STATE(996)] = 50616, + [SMALL_STATE(997)] = 50657, + [SMALL_STATE(998)] = 50688, + [SMALL_STATE(999)] = 50723, + [SMALL_STATE(1000)] = 50770, + [SMALL_STATE(1001)] = 50811, + [SMALL_STATE(1002)] = 50852, + [SMALL_STATE(1003)] = 50887, + [SMALL_STATE(1004)] = 50926, + [SMALL_STATE(1005)] = 50957, + [SMALL_STATE(1006)] = 51008, + [SMALL_STATE(1007)] = 51043, + [SMALL_STATE(1008)] = 51076, + [SMALL_STATE(1009)] = 51107, + [SMALL_STATE(1010)] = 51146, + [SMALL_STATE(1011)] = 51185, + [SMALL_STATE(1012)] = 51232, + [SMALL_STATE(1013)] = 51273, + [SMALL_STATE(1014)] = 51312, + [SMALL_STATE(1015)] = 51359, + [SMALL_STATE(1016)] = 51410, + [SMALL_STATE(1017)] = 51461, + [SMALL_STATE(1018)] = 51491, + [SMALL_STATE(1019)] = 51533, + [SMALL_STATE(1020)] = 51563, + [SMALL_STATE(1021)] = 51593, + [SMALL_STATE(1022)] = 51639, + [SMALL_STATE(1023)] = 51669, + [SMALL_STATE(1024)] = 51715, + [SMALL_STATE(1025)] = 51747, + [SMALL_STATE(1026)] = 51793, + [SMALL_STATE(1027)] = 51835, + [SMALL_STATE(1028)] = 51865, + [SMALL_STATE(1029)] = 51907, + [SMALL_STATE(1030)] = 51937, + [SMALL_STATE(1031)] = 51967, + [SMALL_STATE(1032)] = 51997, + [SMALL_STATE(1033)] = 52027, + [SMALL_STATE(1034)] = 52057, + [SMALL_STATE(1035)] = 52099, + [SMALL_STATE(1036)] = 52129, + [SMALL_STATE(1037)] = 52159, + [SMALL_STATE(1038)] = 52205, + [SMALL_STATE(1039)] = 52235, + [SMALL_STATE(1040)] = 52265, + [SMALL_STATE(1041)] = 52295, + [SMALL_STATE(1042)] = 52341, + [SMALL_STATE(1043)] = 52375, + [SMALL_STATE(1044)] = 52405, + [SMALL_STATE(1045)] = 52439, + [SMALL_STATE(1046)] = 52481, + [SMALL_STATE(1047)] = 52511, + [SMALL_STATE(1048)] = 52553, + [SMALL_STATE(1049)] = 52583, + [SMALL_STATE(1050)] = 52613, + [SMALL_STATE(1051)] = 52647, + [SMALL_STATE(1052)] = 52689, + [SMALL_STATE(1053)] = 52723, + [SMALL_STATE(1054)] = 52765, + [SMALL_STATE(1055)] = 52795, + [SMALL_STATE(1056)] = 52827, + [SMALL_STATE(1057)] = 52885, + [SMALL_STATE(1058)] = 52943, + [SMALL_STATE(1059)] = 52977, + [SMALL_STATE(1060)] = 53007, + [SMALL_STATE(1061)] = 53039, + [SMALL_STATE(1062)] = 53069, + [SMALL_STATE(1063)] = 53115, + [SMALL_STATE(1064)] = 53161, + [SMALL_STATE(1065)] = 53206, + [SMALL_STATE(1066)] = 53253, + [SMALL_STATE(1067)] = 53300, + [SMALL_STATE(1068)] = 53333, + [SMALL_STATE(1069)] = 53378, + [SMALL_STATE(1070)] = 53407, + [SMALL_STATE(1071)] = 53436, + [SMALL_STATE(1072)] = 53465, + [SMALL_STATE(1073)] = 53510, + [SMALL_STATE(1074)] = 53555, + [SMALL_STATE(1075)] = 53588, + [SMALL_STATE(1076)] = 53635, + [SMALL_STATE(1077)] = 53668, + [SMALL_STATE(1078)] = 53697, + [SMALL_STATE(1079)] = 53742, + [SMALL_STATE(1080)] = 53775, + [SMALL_STATE(1081)] = 53820, + [SMALL_STATE(1082)] = 53853, + [SMALL_STATE(1083)] = 53900, + [SMALL_STATE(1084)] = 53929, + [SMALL_STATE(1085)] = 53974, + [SMALL_STATE(1086)] = 54007, + [SMALL_STATE(1087)] = 54035, + [SMALL_STATE(1088)] = 54063, + [SMALL_STATE(1089)] = 54111, + [SMALL_STATE(1090)] = 54139, + [SMALL_STATE(1091)] = 54167, + [SMALL_STATE(1092)] = 54199, + [SMALL_STATE(1093)] = 54227, + [SMALL_STATE(1094)] = 54255, + [SMALL_STATE(1095)] = 54283, + [SMALL_STATE(1096)] = 54315, + [SMALL_STATE(1097)] = 54359, + [SMALL_STATE(1098)] = 54391, + [SMALL_STATE(1099)] = 54419, + [SMALL_STATE(1100)] = 54451, + [SMALL_STATE(1101)] = 54479, + [SMALL_STATE(1102)] = 54511, + [SMALL_STATE(1103)] = 54539, + [SMALL_STATE(1104)] = 54567, + [SMALL_STATE(1105)] = 54600, + [SMALL_STATE(1106)] = 54631, + [SMALL_STATE(1107)] = 54658, + [SMALL_STATE(1108)] = 54685, + [SMALL_STATE(1109)] = 54732, + [SMALL_STATE(1110)] = 54779, + [SMALL_STATE(1111)] = 54812, + [SMALL_STATE(1112)] = 54843, + [SMALL_STATE(1113)] = 54874, + [SMALL_STATE(1114)] = 54905, + [SMALL_STATE(1115)] = 54942, + [SMALL_STATE(1116)] = 54969, + [SMALL_STATE(1117)] = 55000, + [SMALL_STATE(1118)] = 55027, + [SMALL_STATE(1119)] = 55054, + [SMALL_STATE(1120)] = 55081, + [SMALL_STATE(1121)] = 55126, + [SMALL_STATE(1122)] = 55153, + [SMALL_STATE(1123)] = 55180, + [SMALL_STATE(1124)] = 55220, + [SMALL_STATE(1125)] = 55264, + [SMALL_STATE(1126)] = 55292, + [SMALL_STATE(1127)] = 55318, + [SMALL_STATE(1128)] = 55344, + [SMALL_STATE(1129)] = 55382, + [SMALL_STATE(1130)] = 55408, + [SMALL_STATE(1131)] = 55444, + [SMALL_STATE(1132)] = 55488, + [SMALL_STATE(1133)] = 55514, + [SMALL_STATE(1134)] = 55544, + [SMALL_STATE(1135)] = 55570, + [SMALL_STATE(1136)] = 55596, + [SMALL_STATE(1137)] = 55622, + [SMALL_STATE(1138)] = 55652, + [SMALL_STATE(1139)] = 55678, + [SMALL_STATE(1140)] = 55708, + [SMALL_STATE(1141)] = 55750, + [SMALL_STATE(1142)] = 55782, + [SMALL_STATE(1143)] = 55808, + [SMALL_STATE(1144)] = 55834, + [SMALL_STATE(1145)] = 55860, + [SMALL_STATE(1146)] = 55894, + [SMALL_STATE(1147)] = 55920, + [SMALL_STATE(1148)] = 55946, + [SMALL_STATE(1149)] = 55972, + [SMALL_STATE(1150)] = 55998, + [SMALL_STATE(1151)] = 56024, + [SMALL_STATE(1152)] = 56070, + [SMALL_STATE(1153)] = 56096, + [SMALL_STATE(1154)] = 56126, + [SMALL_STATE(1155)] = 56150, + [SMALL_STATE(1156)] = 56185, + [SMALL_STATE(1157)] = 56224, + [SMALL_STATE(1158)] = 56253, + [SMALL_STATE(1159)] = 56278, + [SMALL_STATE(1160)] = 56321, + [SMALL_STATE(1161)] = 56346, + [SMALL_STATE(1162)] = 56383, + [SMALL_STATE(1163)] = 56408, + [SMALL_STATE(1164)] = 56433, + [SMALL_STATE(1165)] = 56470, + [SMALL_STATE(1166)] = 56507, + [SMALL_STATE(1167)] = 56550, + [SMALL_STATE(1168)] = 56585, + [SMALL_STATE(1169)] = 56626, + [SMALL_STATE(1170)] = 56651, + [SMALL_STATE(1171)] = 56676, + [SMALL_STATE(1172)] = 56701, + [SMALL_STATE(1173)] = 56724, + [SMALL_STATE(1174)] = 56749, + [SMALL_STATE(1175)] = 56774, + [SMALL_STATE(1176)] = 56797, + [SMALL_STATE(1177)] = 56826, + [SMALL_STATE(1178)] = 56851, + [SMALL_STATE(1179)] = 56876, + [SMALL_STATE(1180)] = 56919, + [SMALL_STATE(1181)] = 56942, + [SMALL_STATE(1182)] = 56983, + [SMALL_STATE(1183)] = 57024, + [SMALL_STATE(1184)] = 57067, + [SMALL_STATE(1185)] = 57096, + [SMALL_STATE(1186)] = 57139, + [SMALL_STATE(1187)] = 57167, + [SMALL_STATE(1188)] = 57191, + [SMALL_STATE(1189)] = 57215, + [SMALL_STATE(1190)] = 57239, + [SMALL_STATE(1191)] = 57277, + [SMALL_STATE(1192)] = 57305, + [SMALL_STATE(1193)] = 57339, + [SMALL_STATE(1194)] = 57377, + [SMALL_STATE(1195)] = 57415, + [SMALL_STATE(1196)] = 57439, + [SMALL_STATE(1197)] = 57463, + [SMALL_STATE(1198)] = 57487, + [SMALL_STATE(1199)] = 57511, + [SMALL_STATE(1200)] = 57549, + [SMALL_STATE(1201)] = 57589, + [SMALL_STATE(1202)] = 57613, + [SMALL_STATE(1203)] = 57637, + [SMALL_STATE(1204)] = 57671, + [SMALL_STATE(1205)] = 57701, + [SMALL_STATE(1206)] = 57725, + [SMALL_STATE(1207)] = 57755, + [SMALL_STATE(1208)] = 57785, + [SMALL_STATE(1209)] = 57815, + [SMALL_STATE(1210)] = 57847, + [SMALL_STATE(1211)] = 57877, + [SMALL_STATE(1212)] = 57913, + [SMALL_STATE(1213)] = 57937, + [SMALL_STATE(1214)] = 57961, + [SMALL_STATE(1215)] = 57985, + [SMALL_STATE(1216)] = 58013, + [SMALL_STATE(1217)] = 58037, + [SMALL_STATE(1218)] = 58075, + [SMALL_STATE(1219)] = 58103, + [SMALL_STATE(1220)] = 58149, + [SMALL_STATE(1221)] = 58189, + [SMALL_STATE(1222)] = 58227, + [SMALL_STATE(1223)] = 58255, + [SMALL_STATE(1224)] = 58283, + [SMALL_STATE(1225)] = 58311, + [SMALL_STATE(1226)] = 58351, + [SMALL_STATE(1227)] = 58391, + [SMALL_STATE(1228)] = 58415, + [SMALL_STATE(1229)] = 58445, + [SMALL_STATE(1230)] = 58473, + [SMALL_STATE(1231)] = 58501, + [SMALL_STATE(1232)] = 58525, + [SMALL_STATE(1233)] = 58557, + [SMALL_STATE(1234)] = 58591, + [SMALL_STATE(1235)] = 58625, + [SMALL_STATE(1236)] = 58653, + [SMALL_STATE(1237)] = 58677, + [SMALL_STATE(1238)] = 58711, + [SMALL_STATE(1239)] = 58747, + [SMALL_STATE(1240)] = 58785, + [SMALL_STATE(1241)] = 58811, + [SMALL_STATE(1242)] = 58834, + [SMALL_STATE(1243)] = 58863, + [SMALL_STATE(1244)] = 58884, + [SMALL_STATE(1245)] = 58915, + [SMALL_STATE(1246)] = 58942, + [SMALL_STATE(1247)] = 58987, + [SMALL_STATE(1248)] = 59020, + [SMALL_STATE(1249)] = 59041, + [SMALL_STATE(1250)] = 59062, + [SMALL_STATE(1251)] = 59095, + [SMALL_STATE(1252)] = 59122, + [SMALL_STATE(1253)] = 59155, + [SMALL_STATE(1254)] = 59188, + [SMALL_STATE(1255)] = 59217, + [SMALL_STATE(1256)] = 59238, + [SMALL_STATE(1257)] = 59265, + [SMALL_STATE(1258)] = 59294, + [SMALL_STATE(1259)] = 59319, + [SMALL_STATE(1260)] = 59350, + [SMALL_STATE(1261)] = 59379, + [SMALL_STATE(1262)] = 59404, + [SMALL_STATE(1263)] = 59441, + [SMALL_STATE(1264)] = 59480, + [SMALL_STATE(1265)] = 59517, + [SMALL_STATE(1266)] = 59546, + [SMALL_STATE(1267)] = 59585, + [SMALL_STATE(1268)] = 59608, + [SMALL_STATE(1269)] = 59637, + [SMALL_STATE(1270)] = 59666, + [SMALL_STATE(1271)] = 59695, + [SMALL_STATE(1272)] = 59732, + [SMALL_STATE(1273)] = 59755, + [SMALL_STATE(1274)] = 59778, + [SMALL_STATE(1275)] = 59801, + [SMALL_STATE(1276)] = 59826, + [SMALL_STATE(1277)] = 59855, + [SMALL_STATE(1278)] = 59894, + [SMALL_STATE(1279)] = 59921, + [SMALL_STATE(1280)] = 59958, + [SMALL_STATE(1281)] = 59983, + [SMALL_STATE(1282)] = 60010, + [SMALL_STATE(1283)] = 60035, + [SMALL_STATE(1284)] = 60072, + [SMALL_STATE(1285)] = 60107, + [SMALL_STATE(1286)] = 60146, + [SMALL_STATE(1287)] = 60185, + [SMALL_STATE(1288)] = 60208, + [SMALL_STATE(1289)] = 60231, + [SMALL_STATE(1290)] = 60254, + [SMALL_STATE(1291)] = 60283, + [SMALL_STATE(1292)] = 60312, + [SMALL_STATE(1293)] = 60349, + [SMALL_STATE(1294)] = 60372, + [SMALL_STATE(1295)] = 60409, + [SMALL_STATE(1296)] = 60434, + [SMALL_STATE(1297)] = 60457, + [SMALL_STATE(1298)] = 60494, + [SMALL_STATE(1299)] = 60517, + [SMALL_STATE(1300)] = 60550, + [SMALL_STATE(1301)] = 60585, + [SMALL_STATE(1302)] = 60608, + [SMALL_STATE(1303)] = 60631, + [SMALL_STATE(1304)] = 60654, + [SMALL_STATE(1305)] = 60677, + [SMALL_STATE(1306)] = 60714, + [SMALL_STATE(1307)] = 60737, + [SMALL_STATE(1308)] = 60760, + [SMALL_STATE(1309)] = 60783, + [SMALL_STATE(1310)] = 60810, + [SMALL_STATE(1311)] = 60833, + [SMALL_STATE(1312)] = 60856, + [SMALL_STATE(1313)] = 60879, + [SMALL_STATE(1314)] = 60906, + [SMALL_STATE(1315)] = 60933, + [SMALL_STATE(1316)] = 60958, + [SMALL_STATE(1317)] = 60991, + [SMALL_STATE(1318)] = 61028, + [SMALL_STATE(1319)] = 61053, + [SMALL_STATE(1320)] = 61076, + [SMALL_STATE(1321)] = 61101, + [SMALL_STATE(1322)] = 61128, + [SMALL_STATE(1323)] = 61155, + [SMALL_STATE(1324)] = 61188, + [SMALL_STATE(1325)] = 61221, + [SMALL_STATE(1326)] = 61244, + [SMALL_STATE(1327)] = 61281, + [SMALL_STATE(1328)] = 61304, + [SMALL_STATE(1329)] = 61332, + [SMALL_STATE(1330)] = 61356, + [SMALL_STATE(1331)] = 61390, + [SMALL_STATE(1332)] = 61410, + [SMALL_STATE(1333)] = 61444, + [SMALL_STATE(1334)] = 61468, + [SMALL_STATE(1335)] = 61490, + [SMALL_STATE(1336)] = 61518, + [SMALL_STATE(1337)] = 61540, + [SMALL_STATE(1338)] = 61568, + [SMALL_STATE(1339)] = 61604, + [SMALL_STATE(1340)] = 61638, + [SMALL_STATE(1341)] = 61674, + [SMALL_STATE(1342)] = 61708, + [SMALL_STATE(1343)] = 61730, + [SMALL_STATE(1344)] = 61766, + [SMALL_STATE(1345)] = 61786, + [SMALL_STATE(1346)] = 61814, + [SMALL_STATE(1347)] = 61842, + [SMALL_STATE(1348)] = 61870, + [SMALL_STATE(1349)] = 61898, + [SMALL_STATE(1350)] = 61924, + [SMALL_STATE(1351)] = 61950, + [SMALL_STATE(1352)] = 61984, + [SMALL_STATE(1353)] = 62018, + [SMALL_STATE(1354)] = 62046, + [SMALL_STATE(1355)] = 62074, + [SMALL_STATE(1356)] = 62096, + [SMALL_STATE(1357)] = 62120, + [SMALL_STATE(1358)] = 62140, + [SMALL_STATE(1359)] = 62164, + [SMALL_STATE(1360)] = 62202, + [SMALL_STATE(1361)] = 62226, + [SMALL_STATE(1362)] = 62254, + [SMALL_STATE(1363)] = 62286, + [SMALL_STATE(1364)] = 62314, + [SMALL_STATE(1365)] = 62342, + [SMALL_STATE(1366)] = 62376, + [SMALL_STATE(1367)] = 62398, + [SMALL_STATE(1368)] = 62432, + [SMALL_STATE(1369)] = 62460, + [SMALL_STATE(1370)] = 62488, + [SMALL_STATE(1371)] = 62516, + [SMALL_STATE(1372)] = 62542, + [SMALL_STATE(1373)] = 62562, + [SMALL_STATE(1374)] = 62582, + [SMALL_STATE(1375)] = 62608, + [SMALL_STATE(1376)] = 62628, + [SMALL_STATE(1377)] = 62648, + [SMALL_STATE(1378)] = 62670, + [SMALL_STATE(1379)] = 62692, + [SMALL_STATE(1380)] = 62714, + [SMALL_STATE(1381)] = 62736, + [SMALL_STATE(1382)] = 62760, + [SMALL_STATE(1383)] = 62796, + [SMALL_STATE(1384)] = 62824, + [SMALL_STATE(1385)] = 62858, + [SMALL_STATE(1386)] = 62886, + [SMALL_STATE(1387)] = 62914, + [SMALL_STATE(1388)] = 62936, + [SMALL_STATE(1389)] = 62964, + [SMALL_STATE(1390)] = 62988, + [SMALL_STATE(1391)] = 63028, + [SMALL_STATE(1392)] = 63060, + [SMALL_STATE(1393)] = 63096, + [SMALL_STATE(1394)] = 63116, + [SMALL_STATE(1395)] = 63150, + [SMALL_STATE(1396)] = 63174, + [SMALL_STATE(1397)] = 63196, + [SMALL_STATE(1398)] = 63229, + [SMALL_STATE(1399)] = 63262, + [SMALL_STATE(1400)] = 63283, + [SMALL_STATE(1401)] = 63306, + [SMALL_STATE(1402)] = 63327, + [SMALL_STATE(1403)] = 63358, + [SMALL_STATE(1404)] = 63385, + [SMALL_STATE(1405)] = 63410, + [SMALL_STATE(1406)] = 63435, + [SMALL_STATE(1407)] = 63468, + [SMALL_STATE(1408)] = 63501, + [SMALL_STATE(1409)] = 63534, + [SMALL_STATE(1410)] = 63555, + [SMALL_STATE(1411)] = 63588, + [SMALL_STATE(1412)] = 63621, + [SMALL_STATE(1413)] = 63654, + [SMALL_STATE(1414)] = 63683, + [SMALL_STATE(1415)] = 63716, + [SMALL_STATE(1416)] = 63749, + [SMALL_STATE(1417)] = 63782, + [SMALL_STATE(1418)] = 63809, + [SMALL_STATE(1419)] = 63842, + [SMALL_STATE(1420)] = 63865, + [SMALL_STATE(1421)] = 63898, + [SMALL_STATE(1422)] = 63939, + [SMALL_STATE(1423)] = 63972, + [SMALL_STATE(1424)] = 64007, + [SMALL_STATE(1425)] = 64040, + [SMALL_STATE(1426)] = 64073, + [SMALL_STATE(1427)] = 64094, + [SMALL_STATE(1428)] = 64127, + [SMALL_STATE(1429)] = 64162, + [SMALL_STATE(1430)] = 64197, + [SMALL_STATE(1431)] = 64230, + [SMALL_STATE(1432)] = 64263, + [SMALL_STATE(1433)] = 64296, + [SMALL_STATE(1434)] = 64321, + [SMALL_STATE(1435)] = 64346, + [SMALL_STATE(1436)] = 64379, + [SMALL_STATE(1437)] = 64412, + [SMALL_STATE(1438)] = 64445, + [SMALL_STATE(1439)] = 64472, + [SMALL_STATE(1440)] = 64501, + [SMALL_STATE(1441)] = 64520, + [SMALL_STATE(1442)] = 64553, + [SMALL_STATE(1443)] = 64586, + [SMALL_STATE(1444)] = 64619, + [SMALL_STATE(1445)] = 64648, + [SMALL_STATE(1446)] = 64681, + [SMALL_STATE(1447)] = 64714, + [SMALL_STATE(1448)] = 64739, + [SMALL_STATE(1449)] = 64772, + [SMALL_STATE(1450)] = 64805, + [SMALL_STATE(1451)] = 64838, + [SMALL_STATE(1452)] = 64865, + [SMALL_STATE(1453)] = 64894, + [SMALL_STATE(1454)] = 64921, + [SMALL_STATE(1455)] = 64940, + [SMALL_STATE(1456)] = 64959, + [SMALL_STATE(1457)] = 64984, + [SMALL_STATE(1458)] = 65017, + [SMALL_STATE(1459)] = 65052, + [SMALL_STATE(1460)] = 65085, + [SMALL_STATE(1461)] = 65118, + [SMALL_STATE(1462)] = 65151, + [SMALL_STATE(1463)] = 65176, + [SMALL_STATE(1464)] = 65201, + [SMALL_STATE(1465)] = 65230, + [SMALL_STATE(1466)] = 65257, + [SMALL_STATE(1467)] = 65294, + [SMALL_STATE(1468)] = 65327, + [SMALL_STATE(1469)] = 65360, + [SMALL_STATE(1470)] = 65393, + [SMALL_STATE(1471)] = 65420, + [SMALL_STATE(1472)] = 65453, + [SMALL_STATE(1473)] = 65494, + [SMALL_STATE(1474)] = 65521, + [SMALL_STATE(1475)] = 65552, + [SMALL_STATE(1476)] = 65575, + [SMALL_STATE(1477)] = 65608, + [SMALL_STATE(1478)] = 65639, + [SMALL_STATE(1479)] = 65666, + [SMALL_STATE(1480)] = 65699, + [SMALL_STATE(1481)] = 65732, + [SMALL_STATE(1482)] = 65753, + [SMALL_STATE(1483)] = 65774, + [SMALL_STATE(1484)] = 65801, + [SMALL_STATE(1485)] = 65822, + [SMALL_STATE(1486)] = 65843, + [SMALL_STATE(1487)] = 65876, + [SMALL_STATE(1488)] = 65909, + [SMALL_STATE(1489)] = 65938, + [SMALL_STATE(1490)] = 65971, + [SMALL_STATE(1491)] = 65998, + [SMALL_STATE(1492)] = 66025, + [SMALL_STATE(1493)] = 66064, + [SMALL_STATE(1494)] = 66087, + [SMALL_STATE(1495)] = 66118, + [SMALL_STATE(1496)] = 66143, + [SMALL_STATE(1497)] = 66170, + [SMALL_STATE(1498)] = 66197, + [SMALL_STATE(1499)] = 66226, + [SMALL_STATE(1500)] = 66251, + [SMALL_STATE(1501)] = 66272, + [SMALL_STATE(1502)] = 66293, + [SMALL_STATE(1503)] = 66326, + [SMALL_STATE(1504)] = 66351, + [SMALL_STATE(1505)] = 66374, + [SMALL_STATE(1506)] = 66393, + [SMALL_STATE(1507)] = 66420, + [SMALL_STATE(1508)] = 66453, + [SMALL_STATE(1509)] = 66482, + [SMALL_STATE(1510)] = 66515, + [SMALL_STATE(1511)] = 66548, + [SMALL_STATE(1512)] = 66583, + [SMALL_STATE(1513)] = 66618, + [SMALL_STATE(1514)] = 66641, + [SMALL_STATE(1515)] = 66672, + [SMALL_STATE(1516)] = 66705, + [SMALL_STATE(1517)] = 66728, + [SMALL_STATE(1518)] = 66749, + [SMALL_STATE(1519)] = 66780, + [SMALL_STATE(1520)] = 66813, + [SMALL_STATE(1521)] = 66840, + [SMALL_STATE(1522)] = 66871, + [SMALL_STATE(1523)] = 66898, + [SMALL_STATE(1524)] = 66929, + [SMALL_STATE(1525)] = 66950, + [SMALL_STATE(1526)] = 66977, + [SMALL_STATE(1527)] = 67010, + [SMALL_STATE(1528)] = 67033, + [SMALL_STATE(1529)] = 67066, + [SMALL_STATE(1530)] = 67099, + [SMALL_STATE(1531)] = 67132, + [SMALL_STATE(1532)] = 67150, + [SMALL_STATE(1533)] = 67176, + [SMALL_STATE(1534)] = 67206, + [SMALL_STATE(1535)] = 67226, + [SMALL_STATE(1536)] = 67252, + [SMALL_STATE(1537)] = 67282, + [SMALL_STATE(1538)] = 67310, + [SMALL_STATE(1539)] = 67328, + [SMALL_STATE(1540)] = 67350, + [SMALL_STATE(1541)] = 67380, + [SMALL_STATE(1542)] = 67410, + [SMALL_STATE(1543)] = 67440, + [SMALL_STATE(1544)] = 67458, + [SMALL_STATE(1545)] = 67478, + [SMALL_STATE(1546)] = 67508, + [SMALL_STATE(1547)] = 67538, + [SMALL_STATE(1548)] = 67568, + [SMALL_STATE(1549)] = 67588, + [SMALL_STATE(1550)] = 67612, + [SMALL_STATE(1551)] = 67640, + [SMALL_STATE(1552)] = 67658, + [SMALL_STATE(1553)] = 67688, + [SMALL_STATE(1554)] = 67710, + [SMALL_STATE(1555)] = 67740, + [SMALL_STATE(1556)] = 67764, + [SMALL_STATE(1557)] = 67784, + [SMALL_STATE(1558)] = 67814, + [SMALL_STATE(1559)] = 67836, + [SMALL_STATE(1560)] = 67866, + [SMALL_STATE(1561)] = 67894, + [SMALL_STATE(1562)] = 67924, + [SMALL_STATE(1563)] = 67944, + [SMALL_STATE(1564)] = 67974, + [SMALL_STATE(1565)] = 67994, + [SMALL_STATE(1566)] = 68020, + [SMALL_STATE(1567)] = 68038, + [SMALL_STATE(1568)] = 68068, + [SMALL_STATE(1569)] = 68096, + [SMALL_STATE(1570)] = 68122, + [SMALL_STATE(1571)] = 68146, + [SMALL_STATE(1572)] = 68174, + [SMALL_STATE(1573)] = 68194, + [SMALL_STATE(1574)] = 68224, + [SMALL_STATE(1575)] = 68248, + [SMALL_STATE(1576)] = 68272, + [SMALL_STATE(1577)] = 68292, + [SMALL_STATE(1578)] = 68316, + [SMALL_STATE(1579)] = 68346, + [SMALL_STATE(1580)] = 68368, + [SMALL_STATE(1581)] = 68398, + [SMALL_STATE(1582)] = 68426, + [SMALL_STATE(1583)] = 68454, + [SMALL_STATE(1584)] = 68484, + [SMALL_STATE(1585)] = 68514, + [SMALL_STATE(1586)] = 68536, + [SMALL_STATE(1587)] = 68566, + [SMALL_STATE(1588)] = 68590, + [SMALL_STATE(1589)] = 68614, + [SMALL_STATE(1590)] = 68644, + [SMALL_STATE(1591)] = 68674, + [SMALL_STATE(1592)] = 68694, + [SMALL_STATE(1593)] = 68716, + [SMALL_STATE(1594)] = 68734, + [SMALL_STATE(1595)] = 68756, + [SMALL_STATE(1596)] = 68786, + [SMALL_STATE(1597)] = 68804, + [SMALL_STATE(1598)] = 68834, + [SMALL_STATE(1599)] = 68854, + [SMALL_STATE(1600)] = 68872, + [SMALL_STATE(1601)] = 68902, + [SMALL_STATE(1602)] = 68922, + [SMALL_STATE(1603)] = 68942, + [SMALL_STATE(1604)] = 68960, + [SMALL_STATE(1605)] = 68978, + [SMALL_STATE(1606)] = 68998, + [SMALL_STATE(1607)] = 69016, + [SMALL_STATE(1608)] = 69046, + [SMALL_STATE(1609)] = 69064, + [SMALL_STATE(1610)] = 69084, + [SMALL_STATE(1611)] = 69104, + [SMALL_STATE(1612)] = 69122, + [SMALL_STATE(1613)] = 69152, + [SMALL_STATE(1614)] = 69170, + [SMALL_STATE(1615)] = 69188, + [SMALL_STATE(1616)] = 69210, + [SMALL_STATE(1617)] = 69240, + [SMALL_STATE(1618)] = 69260, + [SMALL_STATE(1619)] = 69294, + [SMALL_STATE(1620)] = 69312, + [SMALL_STATE(1621)] = 69330, + [SMALL_STATE(1622)] = 69350, + [SMALL_STATE(1623)] = 69368, + [SMALL_STATE(1624)] = 69394, + [SMALL_STATE(1625)] = 69422, + [SMALL_STATE(1626)] = 69448, + [SMALL_STATE(1627)] = 69468, + [SMALL_STATE(1628)] = 69488, + [SMALL_STATE(1629)] = 69508, + [SMALL_STATE(1630)] = 69538, + [SMALL_STATE(1631)] = 69558, + [SMALL_STATE(1632)] = 69582, + [SMALL_STATE(1633)] = 69600, + [SMALL_STATE(1634)] = 69622, + [SMALL_STATE(1635)] = 69644, + [SMALL_STATE(1636)] = 69674, + [SMALL_STATE(1637)] = 69701, + [SMALL_STATE(1638)] = 69724, + [SMALL_STATE(1639)] = 69741, + [SMALL_STATE(1640)] = 69760, + [SMALL_STATE(1641)] = 69787, + [SMALL_STATE(1642)] = 69814, + [SMALL_STATE(1643)] = 69837, + [SMALL_STATE(1644)] = 69862, + [SMALL_STATE(1645)] = 69891, + [SMALL_STATE(1646)] = 69918, + [SMALL_STATE(1647)] = 69937, + [SMALL_STATE(1648)] = 69964, + [SMALL_STATE(1649)] = 69991, + [SMALL_STATE(1650)] = 70018, + [SMALL_STATE(1651)] = 70037, + [SMALL_STATE(1652)] = 70064, + [SMALL_STATE(1653)] = 70083, + [SMALL_STATE(1654)] = 70102, + [SMALL_STATE(1655)] = 70121, + [SMALL_STATE(1656)] = 70150, + [SMALL_STATE(1657)] = 70177, + [SMALL_STATE(1658)] = 70196, + [SMALL_STATE(1659)] = 70215, + [SMALL_STATE(1660)] = 70242, + [SMALL_STATE(1661)] = 70269, + [SMALL_STATE(1662)] = 70296, + [SMALL_STATE(1663)] = 70319, + [SMALL_STATE(1664)] = 70346, + [SMALL_STATE(1665)] = 70365, + [SMALL_STATE(1666)] = 70384, + [SMALL_STATE(1667)] = 70413, + [SMALL_STATE(1668)] = 70440, + [SMALL_STATE(1669)] = 70467, + [SMALL_STATE(1670)] = 70486, + [SMALL_STATE(1671)] = 70505, + [SMALL_STATE(1672)] = 70522, + [SMALL_STATE(1673)] = 70549, + [SMALL_STATE(1674)] = 70576, + [SMALL_STATE(1675)] = 70603, + [SMALL_STATE(1676)] = 70630, + [SMALL_STATE(1677)] = 70663, + [SMALL_STATE(1678)] = 70692, + [SMALL_STATE(1679)] = 70719, + [SMALL_STATE(1680)] = 70746, + [SMALL_STATE(1681)] = 70763, + [SMALL_STATE(1682)] = 70788, + [SMALL_STATE(1683)] = 70811, + [SMALL_STATE(1684)] = 70828, + [SMALL_STATE(1685)] = 70845, + [SMALL_STATE(1686)] = 70864, + [SMALL_STATE(1687)] = 70881, + [SMALL_STATE(1688)] = 70904, + [SMALL_STATE(1689)] = 70925, + [SMALL_STATE(1690)] = 70944, + [SMALL_STATE(1691)] = 70963, + [SMALL_STATE(1692)] = 70990, + [SMALL_STATE(1693)] = 71017, + [SMALL_STATE(1694)] = 71036, + [SMALL_STATE(1695)] = 71063, + [SMALL_STATE(1696)] = 71080, + [SMALL_STATE(1697)] = 71107, + [SMALL_STATE(1698)] = 71124, + [SMALL_STATE(1699)] = 71153, + [SMALL_STATE(1700)] = 71182, + [SMALL_STATE(1701)] = 71201, + [SMALL_STATE(1702)] = 71220, + [SMALL_STATE(1703)] = 71239, + [SMALL_STATE(1704)] = 71258, + [SMALL_STATE(1705)] = 71277, + [SMALL_STATE(1706)] = 71304, + [SMALL_STATE(1707)] = 71331, + [SMALL_STATE(1708)] = 71358, + [SMALL_STATE(1709)] = 71377, + [SMALL_STATE(1710)] = 71396, + [SMALL_STATE(1711)] = 71415, + [SMALL_STATE(1712)] = 71433, + [SMALL_STATE(1713)] = 71459, + [SMALL_STATE(1714)] = 71477, + [SMALL_STATE(1715)] = 71495, + [SMALL_STATE(1716)] = 71521, + [SMALL_STATE(1717)] = 71541, + [SMALL_STATE(1718)] = 71567, + [SMALL_STATE(1719)] = 71595, + [SMALL_STATE(1720)] = 71617, + [SMALL_STATE(1721)] = 71639, + [SMALL_STATE(1722)] = 71661, + [SMALL_STATE(1723)] = 71679, + [SMALL_STATE(1724)] = 71705, + [SMALL_STATE(1725)] = 71723, + [SMALL_STATE(1726)] = 71749, + [SMALL_STATE(1727)] = 71771, + [SMALL_STATE(1728)] = 71797, + [SMALL_STATE(1729)] = 71823, + [SMALL_STATE(1730)] = 71843, + [SMALL_STATE(1731)] = 71861, + [SMALL_STATE(1732)] = 71879, + [SMALL_STATE(1733)] = 71897, + [SMALL_STATE(1734)] = 71919, + [SMALL_STATE(1735)] = 71937, + [SMALL_STATE(1736)] = 71955, + [SMALL_STATE(1737)] = 71973, + [SMALL_STATE(1738)] = 71995, + [SMALL_STATE(1739)] = 72017, + [SMALL_STATE(1740)] = 72033, + [SMALL_STATE(1741)] = 72051, + [SMALL_STATE(1742)] = 72069, + [SMALL_STATE(1743)] = 72097, + [SMALL_STATE(1744)] = 72125, + [SMALL_STATE(1745)] = 72151, + [SMALL_STATE(1746)] = 72175, + [SMALL_STATE(1747)] = 72201, + [SMALL_STATE(1748)] = 72225, + [SMALL_STATE(1749)] = 72249, + [SMALL_STATE(1750)] = 72275, + [SMALL_STATE(1751)] = 72299, + [SMALL_STATE(1752)] = 72325, + [SMALL_STATE(1753)] = 72351, + [SMALL_STATE(1754)] = 72375, + [SMALL_STATE(1755)] = 72393, + [SMALL_STATE(1756)] = 72409, + [SMALL_STATE(1757)] = 72425, + [SMALL_STATE(1758)] = 72443, + [SMALL_STATE(1759)] = 72465, + [SMALL_STATE(1760)] = 72487, + [SMALL_STATE(1761)] = 72509, + [SMALL_STATE(1762)] = 72537, + [SMALL_STATE(1763)] = 72563, + [SMALL_STATE(1764)] = 72585, + [SMALL_STATE(1765)] = 72613, + [SMALL_STATE(1766)] = 72631, + [SMALL_STATE(1767)] = 72655, + [SMALL_STATE(1768)] = 72677, + [SMALL_STATE(1769)] = 72705, + [SMALL_STATE(1770)] = 72733, + [SMALL_STATE(1771)] = 72759, + [SMALL_STATE(1772)] = 72785, + [SMALL_STATE(1773)] = 72811, + [SMALL_STATE(1774)] = 72833, + [SMALL_STATE(1775)] = 72859, + [SMALL_STATE(1776)] = 72887, + [SMALL_STATE(1777)] = 72903, + [SMALL_STATE(1778)] = 72931, + [SMALL_STATE(1779)] = 72949, + [SMALL_STATE(1780)] = 72975, + [SMALL_STATE(1781)] = 72993, + [SMALL_STATE(1782)] = 73015, + [SMALL_STATE(1783)] = 73037, + [SMALL_STATE(1784)] = 73059, + [SMALL_STATE(1785)] = 73075, + [SMALL_STATE(1786)] = 73093, + [SMALL_STATE(1787)] = 73115, + [SMALL_STATE(1788)] = 73139, + [SMALL_STATE(1789)] = 73157, + [SMALL_STATE(1790)] = 73184, + [SMALL_STATE(1791)] = 73205, + [SMALL_STATE(1792)] = 73228, + [SMALL_STATE(1793)] = 73249, + [SMALL_STATE(1794)] = 73274, + [SMALL_STATE(1795)] = 73297, + [SMALL_STATE(1796)] = 73322, + [SMALL_STATE(1797)] = 73347, + [SMALL_STATE(1798)] = 73368, + [SMALL_STATE(1799)] = 73393, + [SMALL_STATE(1800)] = 73410, + [SMALL_STATE(1801)] = 73431, + [SMALL_STATE(1802)] = 73448, + [SMALL_STATE(1803)] = 73473, + [SMALL_STATE(1804)] = 73494, + [SMALL_STATE(1805)] = 73515, + [SMALL_STATE(1806)] = 73544, + [SMALL_STATE(1807)] = 73565, + [SMALL_STATE(1808)] = 73590, + [SMALL_STATE(1809)] = 73607, + [SMALL_STATE(1810)] = 73630, + [SMALL_STATE(1811)] = 73651, + [SMALL_STATE(1812)] = 73672, + [SMALL_STATE(1813)] = 73693, + [SMALL_STATE(1814)] = 73708, + [SMALL_STATE(1815)] = 73725, + [SMALL_STATE(1816)] = 73750, + [SMALL_STATE(1817)] = 73771, + [SMALL_STATE(1818)] = 73796, + [SMALL_STATE(1819)] = 73819, + [SMALL_STATE(1820)] = 73844, + [SMALL_STATE(1821)] = 73867, + [SMALL_STATE(1822)] = 73882, + [SMALL_STATE(1823)] = 73903, + [SMALL_STATE(1824)] = 73918, + [SMALL_STATE(1825)] = 73941, + [SMALL_STATE(1826)] = 73962, + [SMALL_STATE(1827)] = 73985, + [SMALL_STATE(1828)] = 74002, + [SMALL_STATE(1829)] = 74017, + [SMALL_STATE(1830)] = 74032, + [SMALL_STATE(1831)] = 74049, + [SMALL_STATE(1832)] = 74064, + [SMALL_STATE(1833)] = 74079, + [SMALL_STATE(1834)] = 74094, + [SMALL_STATE(1835)] = 74115, + [SMALL_STATE(1836)] = 74130, + [SMALL_STATE(1837)] = 74147, + [SMALL_STATE(1838)] = 74176, + [SMALL_STATE(1839)] = 74203, + [SMALL_STATE(1840)] = 74226, + [SMALL_STATE(1841)] = 74249, + [SMALL_STATE(1842)] = 74266, + [SMALL_STATE(1843)] = 74287, + [SMALL_STATE(1844)] = 74310, + [SMALL_STATE(1845)] = 74327, + [SMALL_STATE(1846)] = 74352, + [SMALL_STATE(1847)] = 74377, + [SMALL_STATE(1848)] = 74400, + [SMALL_STATE(1849)] = 74425, + [SMALL_STATE(1850)] = 74454, + [SMALL_STATE(1851)] = 74469, + [SMALL_STATE(1852)] = 74494, + [SMALL_STATE(1853)] = 74519, + [SMALL_STATE(1854)] = 74544, + [SMALL_STATE(1855)] = 74571, + [SMALL_STATE(1856)] = 74594, + [SMALL_STATE(1857)] = 74611, + [SMALL_STATE(1858)] = 74634, + [SMALL_STATE(1859)] = 74651, + [SMALL_STATE(1860)] = 74676, + [SMALL_STATE(1861)] = 74701, + [SMALL_STATE(1862)] = 74722, + [SMALL_STATE(1863)] = 74747, + [SMALL_STATE(1864)] = 74772, + [SMALL_STATE(1865)] = 74795, + [SMALL_STATE(1866)] = 74816, + [SMALL_STATE(1867)] = 74837, + [SMALL_STATE(1868)] = 74858, + [SMALL_STATE(1869)] = 74881, + [SMALL_STATE(1870)] = 74904, + [SMALL_STATE(1871)] = 74927, + [SMALL_STATE(1872)] = 74952, + [SMALL_STATE(1873)] = 74967, + [SMALL_STATE(1874)] = 74992, + [SMALL_STATE(1875)] = 75021, + [SMALL_STATE(1876)] = 75042, + [SMALL_STATE(1877)] = 75059, + [SMALL_STATE(1878)] = 75076, + [SMALL_STATE(1879)] = 75101, + [SMALL_STATE(1880)] = 75125, + [SMALL_STATE(1881)] = 75149, + [SMALL_STATE(1882)] = 75171, + [SMALL_STATE(1883)] = 75193, + [SMALL_STATE(1884)] = 75209, + [SMALL_STATE(1885)] = 75231, + [SMALL_STATE(1886)] = 75247, + [SMALL_STATE(1887)] = 75269, + [SMALL_STATE(1888)] = 75293, + [SMALL_STATE(1889)] = 75317, + [SMALL_STATE(1890)] = 75341, + [SMALL_STATE(1891)] = 75359, + [SMALL_STATE(1892)] = 75383, + [SMALL_STATE(1893)] = 75405, + [SMALL_STATE(1894)] = 75429, + [SMALL_STATE(1895)] = 75447, + [SMALL_STATE(1896)] = 75471, + [SMALL_STATE(1897)] = 75497, + [SMALL_STATE(1898)] = 75519, + [SMALL_STATE(1899)] = 75537, + [SMALL_STATE(1900)] = 75557, + [SMALL_STATE(1901)] = 75577, + [SMALL_STATE(1902)] = 75599, + [SMALL_STATE(1903)] = 75615, + [SMALL_STATE(1904)] = 75631, + [SMALL_STATE(1905)] = 75647, + [SMALL_STATE(1906)] = 75667, + [SMALL_STATE(1907)] = 75687, + [SMALL_STATE(1908)] = 75703, + [SMALL_STATE(1909)] = 75719, + [SMALL_STATE(1910)] = 75741, + [SMALL_STATE(1911)] = 75761, + [SMALL_STATE(1912)] = 75781, + [SMALL_STATE(1913)] = 75803, + [SMALL_STATE(1914)] = 75827, + [SMALL_STATE(1915)] = 75849, + [SMALL_STATE(1916)] = 75869, + [SMALL_STATE(1917)] = 75889, + [SMALL_STATE(1918)] = 75909, + [SMALL_STATE(1919)] = 75925, + [SMALL_STATE(1920)] = 75951, + [SMALL_STATE(1921)] = 75969, + [SMALL_STATE(1922)] = 75991, + [SMALL_STATE(1923)] = 76017, + [SMALL_STATE(1924)] = 76039, + [SMALL_STATE(1925)] = 76063, + [SMALL_STATE(1926)] = 76085, + [SMALL_STATE(1927)] = 76109, + [SMALL_STATE(1928)] = 76133, + [SMALL_STATE(1929)] = 76149, + [SMALL_STATE(1930)] = 76165, + [SMALL_STATE(1931)] = 76187, + [SMALL_STATE(1932)] = 76203, + [SMALL_STATE(1933)] = 76225, + [SMALL_STATE(1934)] = 76247, + [SMALL_STATE(1935)] = 76267, + [SMALL_STATE(1936)] = 76283, + [SMALL_STATE(1937)] = 76305, + [SMALL_STATE(1938)] = 76323, + [SMALL_STATE(1939)] = 76347, + [SMALL_STATE(1940)] = 76371, + [SMALL_STATE(1941)] = 76391, + [SMALL_STATE(1942)] = 76415, + [SMALL_STATE(1943)] = 76437, + [SMALL_STATE(1944)] = 76461, + [SMALL_STATE(1945)] = 76477, + [SMALL_STATE(1946)] = 76501, + [SMALL_STATE(1947)] = 76517, + [SMALL_STATE(1948)] = 76541, + [SMALL_STATE(1949)] = 76563, + [SMALL_STATE(1950)] = 76589, + [SMALL_STATE(1951)] = 76613, + [SMALL_STATE(1952)] = 76635, + [SMALL_STATE(1953)] = 76654, + [SMALL_STATE(1954)] = 76675, + [SMALL_STATE(1955)] = 76690, + [SMALL_STATE(1956)] = 76705, + [SMALL_STATE(1957)] = 76726, + [SMALL_STATE(1958)] = 76745, + [SMALL_STATE(1959)] = 76766, + [SMALL_STATE(1960)] = 76779, + [SMALL_STATE(1961)] = 76802, + [SMALL_STATE(1962)] = 76821, + [SMALL_STATE(1963)] = 76836, + [SMALL_STATE(1964)] = 76859, + [SMALL_STATE(1965)] = 76872, + [SMALL_STATE(1966)] = 76893, + [SMALL_STATE(1967)] = 76910, + [SMALL_STATE(1968)] = 76927, + [SMALL_STATE(1969)] = 76940, + [SMALL_STATE(1970)] = 76959, + [SMALL_STATE(1971)] = 76978, + [SMALL_STATE(1972)] = 76997, + [SMALL_STATE(1973)] = 77016, + [SMALL_STATE(1974)] = 77031, + [SMALL_STATE(1975)] = 77050, + [SMALL_STATE(1976)] = 77063, + [SMALL_STATE(1977)] = 77080, + [SMALL_STATE(1978)] = 77101, + [SMALL_STATE(1979)] = 77116, + [SMALL_STATE(1980)] = 77135, + [SMALL_STATE(1981)] = 77154, + [SMALL_STATE(1982)] = 77167, + [SMALL_STATE(1983)] = 77190, + [SMALL_STATE(1984)] = 77209, + [SMALL_STATE(1985)] = 77228, + [SMALL_STATE(1986)] = 77249, + [SMALL_STATE(1987)] = 77268, + [SMALL_STATE(1988)] = 77289, + [SMALL_STATE(1989)] = 77308, + [SMALL_STATE(1990)] = 77327, + [SMALL_STATE(1991)] = 77342, + [SMALL_STATE(1992)] = 77361, + [SMALL_STATE(1993)] = 77376, + [SMALL_STATE(1994)] = 77395, + [SMALL_STATE(1995)] = 77414, + [SMALL_STATE(1996)] = 77435, + [SMALL_STATE(1997)] = 77456, + [SMALL_STATE(1998)] = 77477, + [SMALL_STATE(1999)] = 77496, + [SMALL_STATE(2000)] = 77515, + [SMALL_STATE(2001)] = 77534, + [SMALL_STATE(2002)] = 77555, + [SMALL_STATE(2003)] = 77568, + [SMALL_STATE(2004)] = 77587, + [SMALL_STATE(2005)] = 77606, + [SMALL_STATE(2006)] = 77621, + [SMALL_STATE(2007)] = 77642, + [SMALL_STATE(2008)] = 77659, + [SMALL_STATE(2009)] = 77680, + [SMALL_STATE(2010)] = 77693, + [SMALL_STATE(2011)] = 77706, + [SMALL_STATE(2012)] = 77725, + [SMALL_STATE(2013)] = 77738, + [SMALL_STATE(2014)] = 77751, + [SMALL_STATE(2015)] = 77772, + [SMALL_STATE(2016)] = 77791, + [SMALL_STATE(2017)] = 77810, + [SMALL_STATE(2018)] = 77827, + [SMALL_STATE(2019)] = 77840, + [SMALL_STATE(2020)] = 77861, + [SMALL_STATE(2021)] = 77874, + [SMALL_STATE(2022)] = 77897, + [SMALL_STATE(2023)] = 77920, + [SMALL_STATE(2024)] = 77935, + [SMALL_STATE(2025)] = 77954, + [SMALL_STATE(2026)] = 77975, + [SMALL_STATE(2027)] = 77988, + [SMALL_STATE(2028)] = 78007, + [SMALL_STATE(2029)] = 78026, + [SMALL_STATE(2030)] = 78039, + [SMALL_STATE(2031)] = 78058, + [SMALL_STATE(2032)] = 78077, + [SMALL_STATE(2033)] = 78090, + [SMALL_STATE(2034)] = 78109, + [SMALL_STATE(2035)] = 78128, + [SMALL_STATE(2036)] = 78147, + [SMALL_STATE(2037)] = 78160, + [SMALL_STATE(2038)] = 78175, + [SMALL_STATE(2039)] = 78194, + [SMALL_STATE(2040)] = 78213, + [SMALL_STATE(2041)] = 78234, + [SMALL_STATE(2042)] = 78247, + [SMALL_STATE(2043)] = 78268, + [SMALL_STATE(2044)] = 78287, + [SMALL_STATE(2045)] = 78304, + [SMALL_STATE(2046)] = 78327, + [SMALL_STATE(2047)] = 78342, + [SMALL_STATE(2048)] = 78355, + [SMALL_STATE(2049)] = 78374, + [SMALL_STATE(2050)] = 78397, + [SMALL_STATE(2051)] = 78414, + [SMALL_STATE(2052)] = 78427, + [SMALL_STATE(2053)] = 78448, + [SMALL_STATE(2054)] = 78461, + [SMALL_STATE(2055)] = 78476, + [SMALL_STATE(2056)] = 78495, + [SMALL_STATE(2057)] = 78514, + [SMALL_STATE(2058)] = 78529, + [SMALL_STATE(2059)] = 78542, + [SMALL_STATE(2060)] = 78555, + [SMALL_STATE(2061)] = 78567, + [SMALL_STATE(2062)] = 78585, + [SMALL_STATE(2063)] = 78603, + [SMALL_STATE(2064)] = 78615, + [SMALL_STATE(2065)] = 78633, + [SMALL_STATE(2066)] = 78645, + [SMALL_STATE(2067)] = 78661, + [SMALL_STATE(2068)] = 78679, + [SMALL_STATE(2069)] = 78697, + [SMALL_STATE(2070)] = 78709, + [SMALL_STATE(2071)] = 78723, + [SMALL_STATE(2072)] = 78741, + [SMALL_STATE(2073)] = 78755, + [SMALL_STATE(2074)] = 78771, + [SMALL_STATE(2075)] = 78785, + [SMALL_STATE(2076)] = 78799, + [SMALL_STATE(2077)] = 78813, + [SMALL_STATE(2078)] = 78827, + [SMALL_STATE(2079)] = 78839, + [SMALL_STATE(2080)] = 78855, + [SMALL_STATE(2081)] = 78873, + [SMALL_STATE(2082)] = 78887, + [SMALL_STATE(2083)] = 78905, + [SMALL_STATE(2084)] = 78921, + [SMALL_STATE(2085)] = 78933, + [SMALL_STATE(2086)] = 78951, + [SMALL_STATE(2087)] = 78967, + [SMALL_STATE(2088)] = 78985, + [SMALL_STATE(2089)] = 79001, + [SMALL_STATE(2090)] = 79019, + [SMALL_STATE(2091)] = 79037, + [SMALL_STATE(2092)] = 79051, + [SMALL_STATE(2093)] = 79065, + [SMALL_STATE(2094)] = 79081, + [SMALL_STATE(2095)] = 79101, + [SMALL_STATE(2096)] = 79113, + [SMALL_STATE(2097)] = 79129, + [SMALL_STATE(2098)] = 79147, + [SMALL_STATE(2099)] = 79161, + [SMALL_STATE(2100)] = 79179, + [SMALL_STATE(2101)] = 79191, + [SMALL_STATE(2102)] = 79207, + [SMALL_STATE(2103)] = 79223, + [SMALL_STATE(2104)] = 79237, + [SMALL_STATE(2105)] = 79251, + [SMALL_STATE(2106)] = 79267, + [SMALL_STATE(2107)] = 79283, + [SMALL_STATE(2108)] = 79301, + [SMALL_STATE(2109)] = 79317, + [SMALL_STATE(2110)] = 79333, + [SMALL_STATE(2111)] = 79347, + [SMALL_STATE(2112)] = 79365, + [SMALL_STATE(2113)] = 79381, + [SMALL_STATE(2114)] = 79393, + [SMALL_STATE(2115)] = 79409, + [SMALL_STATE(2116)] = 79423, + [SMALL_STATE(2117)] = 79439, + [SMALL_STATE(2118)] = 79455, + [SMALL_STATE(2119)] = 79471, + [SMALL_STATE(2120)] = 79483, + [SMALL_STATE(2121)] = 79501, + [SMALL_STATE(2122)] = 79517, + [SMALL_STATE(2123)] = 79533, + [SMALL_STATE(2124)] = 79551, + [SMALL_STATE(2125)] = 79569, + [SMALL_STATE(2126)] = 79585, + [SMALL_STATE(2127)] = 79601, + [SMALL_STATE(2128)] = 79619, + [SMALL_STATE(2129)] = 79635, + [SMALL_STATE(2130)] = 79651, + [SMALL_STATE(2131)] = 79667, + [SMALL_STATE(2132)] = 79683, + [SMALL_STATE(2133)] = 79695, + [SMALL_STATE(2134)] = 79711, + [SMALL_STATE(2135)] = 79727, + [SMALL_STATE(2136)] = 79741, + [SMALL_STATE(2137)] = 79755, + [SMALL_STATE(2138)] = 79771, + [SMALL_STATE(2139)] = 79783, + [SMALL_STATE(2140)] = 79797, + [SMALL_STATE(2141)] = 79813, + [SMALL_STATE(2142)] = 79827, + [SMALL_STATE(2143)] = 79843, + [SMALL_STATE(2144)] = 79859, + [SMALL_STATE(2145)] = 79875, + [SMALL_STATE(2146)] = 79891, + [SMALL_STATE(2147)] = 79905, + [SMALL_STATE(2148)] = 79918, + [SMALL_STATE(2149)] = 79933, + [SMALL_STATE(2150)] = 79948, + [SMALL_STATE(2151)] = 79963, + [SMALL_STATE(2152)] = 79978, + [SMALL_STATE(2153)] = 79993, + [SMALL_STATE(2154)] = 80004, + [SMALL_STATE(2155)] = 80019, + [SMALL_STATE(2156)] = 80036, + [SMALL_STATE(2157)] = 80053, + [SMALL_STATE(2158)] = 80070, + [SMALL_STATE(2159)] = 80087, + [SMALL_STATE(2160)] = 80100, + [SMALL_STATE(2161)] = 80115, + [SMALL_STATE(2162)] = 80128, + [SMALL_STATE(2163)] = 80145, + [SMALL_STATE(2164)] = 80162, + [SMALL_STATE(2165)] = 80179, + [SMALL_STATE(2166)] = 80196, + [SMALL_STATE(2167)] = 80213, + [SMALL_STATE(2168)] = 80230, + [SMALL_STATE(2169)] = 80245, + [SMALL_STATE(2170)] = 80262, + [SMALL_STATE(2171)] = 80279, + [SMALL_STATE(2172)] = 80296, + [SMALL_STATE(2173)] = 80313, + [SMALL_STATE(2174)] = 80330, + [SMALL_STATE(2175)] = 80347, + [SMALL_STATE(2176)] = 80364, + [SMALL_STATE(2177)] = 80381, + [SMALL_STATE(2178)] = 80398, + [SMALL_STATE(2179)] = 80415, + [SMALL_STATE(2180)] = 80432, + [SMALL_STATE(2181)] = 80449, + [SMALL_STATE(2182)] = 80464, + [SMALL_STATE(2183)] = 80481, + [SMALL_STATE(2184)] = 80498, + [SMALL_STATE(2185)] = 80515, + [SMALL_STATE(2186)] = 80528, + [SMALL_STATE(2187)] = 80545, + [SMALL_STATE(2188)] = 80558, + [SMALL_STATE(2189)] = 80575, + [SMALL_STATE(2190)] = 80592, + [SMALL_STATE(2191)] = 80609, + [SMALL_STATE(2192)] = 80626, + [SMALL_STATE(2193)] = 80639, + [SMALL_STATE(2194)] = 80652, + [SMALL_STATE(2195)] = 80667, + [SMALL_STATE(2196)] = 80680, + [SMALL_STATE(2197)] = 80697, + [SMALL_STATE(2198)] = 80714, + [SMALL_STATE(2199)] = 80731, + [SMALL_STATE(2200)] = 80746, + [SMALL_STATE(2201)] = 80763, + [SMALL_STATE(2202)] = 80780, + [SMALL_STATE(2203)] = 80797, + [SMALL_STATE(2204)] = 80814, + [SMALL_STATE(2205)] = 80831, + [SMALL_STATE(2206)] = 80846, + [SMALL_STATE(2207)] = 80861, + [SMALL_STATE(2208)] = 80876, + [SMALL_STATE(2209)] = 80893, + [SMALL_STATE(2210)] = 80908, + [SMALL_STATE(2211)] = 80921, + [SMALL_STATE(2212)] = 80936, + [SMALL_STATE(2213)] = 80953, + [SMALL_STATE(2214)] = 80970, + [SMALL_STATE(2215)] = 80987, + [SMALL_STATE(2216)] = 81002, + [SMALL_STATE(2217)] = 81019, + [SMALL_STATE(2218)] = 81036, + [SMALL_STATE(2219)] = 81053, + [SMALL_STATE(2220)] = 81070, + [SMALL_STATE(2221)] = 81083, + [SMALL_STATE(2222)] = 81096, + [SMALL_STATE(2223)] = 81109, + [SMALL_STATE(2224)] = 81124, + [SMALL_STATE(2225)] = 81137, + [SMALL_STATE(2226)] = 81154, + [SMALL_STATE(2227)] = 81169, + [SMALL_STATE(2228)] = 81184, + [SMALL_STATE(2229)] = 81197, + [SMALL_STATE(2230)] = 81212, + [SMALL_STATE(2231)] = 81229, + [SMALL_STATE(2232)] = 81246, + [SMALL_STATE(2233)] = 81263, + [SMALL_STATE(2234)] = 81280, + [SMALL_STATE(2235)] = 81293, + [SMALL_STATE(2236)] = 81304, + [SMALL_STATE(2237)] = 81319, + [SMALL_STATE(2238)] = 81336, + [SMALL_STATE(2239)] = 81351, + [SMALL_STATE(2240)] = 81366, + [SMALL_STATE(2241)] = 81379, + [SMALL_STATE(2242)] = 81394, + [SMALL_STATE(2243)] = 81407, + [SMALL_STATE(2244)] = 81422, + [SMALL_STATE(2245)] = 81437, + [SMALL_STATE(2246)] = 81452, + [SMALL_STATE(2247)] = 81467, + [SMALL_STATE(2248)] = 81482, + [SMALL_STATE(2249)] = 81493, + [SMALL_STATE(2250)] = 81504, + [SMALL_STATE(2251)] = 81519, + [SMALL_STATE(2252)] = 81536, + [SMALL_STATE(2253)] = 81553, + [SMALL_STATE(2254)] = 81570, + [SMALL_STATE(2255)] = 81585, + [SMALL_STATE(2256)] = 81602, + [SMALL_STATE(2257)] = 81619, + [SMALL_STATE(2258)] = 81636, + [SMALL_STATE(2259)] = 81653, + [SMALL_STATE(2260)] = 81670, + [SMALL_STATE(2261)] = 81687, + [SMALL_STATE(2262)] = 81700, + [SMALL_STATE(2263)] = 81713, + [SMALL_STATE(2264)] = 81724, + [SMALL_STATE(2265)] = 81737, + [SMALL_STATE(2266)] = 81752, + [SMALL_STATE(2267)] = 81767, + [SMALL_STATE(2268)] = 81780, + [SMALL_STATE(2269)] = 81791, + [SMALL_STATE(2270)] = 81806, + [SMALL_STATE(2271)] = 81817, + [SMALL_STATE(2272)] = 81828, + [SMALL_STATE(2273)] = 81843, + [SMALL_STATE(2274)] = 81854, + [SMALL_STATE(2275)] = 81871, + [SMALL_STATE(2276)] = 81886, + [SMALL_STATE(2277)] = 81901, + [SMALL_STATE(2278)] = 81916, + [SMALL_STATE(2279)] = 81931, + [SMALL_STATE(2280)] = 81946, + [SMALL_STATE(2281)] = 81961, + [SMALL_STATE(2282)] = 81976, + [SMALL_STATE(2283)] = 81989, + [SMALL_STATE(2284)] = 82000, + [SMALL_STATE(2285)] = 82017, + [SMALL_STATE(2286)] = 82032, + [SMALL_STATE(2287)] = 82042, + [SMALL_STATE(2288)] = 82052, + [SMALL_STATE(2289)] = 82062, + [SMALL_STATE(2290)] = 82076, + [SMALL_STATE(2291)] = 82090, + [SMALL_STATE(2292)] = 82102, + [SMALL_STATE(2293)] = 82116, + [SMALL_STATE(2294)] = 82130, + [SMALL_STATE(2295)] = 82142, + [SMALL_STATE(2296)] = 82156, + [SMALL_STATE(2297)] = 82170, + [SMALL_STATE(2298)] = 82184, + [SMALL_STATE(2299)] = 82198, + [SMALL_STATE(2300)] = 82212, + [SMALL_STATE(2301)] = 82226, + [SMALL_STATE(2302)] = 82240, + [SMALL_STATE(2303)] = 82254, + [SMALL_STATE(2304)] = 82268, + [SMALL_STATE(2305)] = 82282, + [SMALL_STATE(2306)] = 82296, + [SMALL_STATE(2307)] = 82310, + [SMALL_STATE(2308)] = 82324, + [SMALL_STATE(2309)] = 82338, + [SMALL_STATE(2310)] = 82352, + [SMALL_STATE(2311)] = 82366, + [SMALL_STATE(2312)] = 82380, + [SMALL_STATE(2313)] = 82394, + [SMALL_STATE(2314)] = 82406, + [SMALL_STATE(2315)] = 82416, + [SMALL_STATE(2316)] = 82430, + [SMALL_STATE(2317)] = 82444, + [SMALL_STATE(2318)] = 82456, + [SMALL_STATE(2319)] = 82470, + [SMALL_STATE(2320)] = 82484, + [SMALL_STATE(2321)] = 82494, + [SMALL_STATE(2322)] = 82504, + [SMALL_STATE(2323)] = 82518, + [SMALL_STATE(2324)] = 82530, + [SMALL_STATE(2325)] = 82540, + [SMALL_STATE(2326)] = 82554, + [SMALL_STATE(2327)] = 82568, + [SMALL_STATE(2328)] = 82582, + [SMALL_STATE(2329)] = 82592, + [SMALL_STATE(2330)] = 82602, + [SMALL_STATE(2331)] = 82612, + [SMALL_STATE(2332)] = 82622, + [SMALL_STATE(2333)] = 82632, + [SMALL_STATE(2334)] = 82642, + [SMALL_STATE(2335)] = 82652, + [SMALL_STATE(2336)] = 82662, + [SMALL_STATE(2337)] = 82672, + [SMALL_STATE(2338)] = 82684, + [SMALL_STATE(2339)] = 82694, + [SMALL_STATE(2340)] = 82704, + [SMALL_STATE(2341)] = 82714, + [SMALL_STATE(2342)] = 82728, + [SMALL_STATE(2343)] = 82740, + [SMALL_STATE(2344)] = 82750, + [SMALL_STATE(2345)] = 82760, + [SMALL_STATE(2346)] = 82772, + [SMALL_STATE(2347)] = 82782, + [SMALL_STATE(2348)] = 82792, + [SMALL_STATE(2349)] = 82804, + [SMALL_STATE(2350)] = 82818, + [SMALL_STATE(2351)] = 82830, + [SMALL_STATE(2352)] = 82842, + [SMALL_STATE(2353)] = 82854, + [SMALL_STATE(2354)] = 82866, + [SMALL_STATE(2355)] = 82876, + [SMALL_STATE(2356)] = 82886, + [SMALL_STATE(2357)] = 82896, + [SMALL_STATE(2358)] = 82906, + [SMALL_STATE(2359)] = 82916, + [SMALL_STATE(2360)] = 82926, + [SMALL_STATE(2361)] = 82936, + [SMALL_STATE(2362)] = 82948, + [SMALL_STATE(2363)] = 82958, + [SMALL_STATE(2364)] = 82972, + [SMALL_STATE(2365)] = 82984, + [SMALL_STATE(2366)] = 82994, + [SMALL_STATE(2367)] = 83004, + [SMALL_STATE(2368)] = 83018, + [SMALL_STATE(2369)] = 83030, + [SMALL_STATE(2370)] = 83040, + [SMALL_STATE(2371)] = 83050, + [SMALL_STATE(2372)] = 83060, + [SMALL_STATE(2373)] = 83074, + [SMALL_STATE(2374)] = 83084, + [SMALL_STATE(2375)] = 83094, + [SMALL_STATE(2376)] = 83104, + [SMALL_STATE(2377)] = 83114, + [SMALL_STATE(2378)] = 83124, + [SMALL_STATE(2379)] = 83134, + [SMALL_STATE(2380)] = 83144, + [SMALL_STATE(2381)] = 83154, + [SMALL_STATE(2382)] = 83164, + [SMALL_STATE(2383)] = 83174, + [SMALL_STATE(2384)] = 83184, + [SMALL_STATE(2385)] = 83198, + [SMALL_STATE(2386)] = 83212, + [SMALL_STATE(2387)] = 83222, + [SMALL_STATE(2388)] = 83232, + [SMALL_STATE(2389)] = 83242, + [SMALL_STATE(2390)] = 83252, + [SMALL_STATE(2391)] = 83266, + [SMALL_STATE(2392)] = 83276, + [SMALL_STATE(2393)] = 83286, + [SMALL_STATE(2394)] = 83296, + [SMALL_STATE(2395)] = 83306, + [SMALL_STATE(2396)] = 83316, + [SMALL_STATE(2397)] = 83326, + [SMALL_STATE(2398)] = 83340, + [SMALL_STATE(2399)] = 83354, + [SMALL_STATE(2400)] = 83368, + [SMALL_STATE(2401)] = 83378, + [SMALL_STATE(2402)] = 83388, + [SMALL_STATE(2403)] = 83402, + [SMALL_STATE(2404)] = 83416, + [SMALL_STATE(2405)] = 83430, + [SMALL_STATE(2406)] = 83442, + [SMALL_STATE(2407)] = 83452, + [SMALL_STATE(2408)] = 83466, + [SMALL_STATE(2409)] = 83480, + [SMALL_STATE(2410)] = 83494, + [SMALL_STATE(2411)] = 83504, + [SMALL_STATE(2412)] = 83514, + [SMALL_STATE(2413)] = 83524, + [SMALL_STATE(2414)] = 83534, + [SMALL_STATE(2415)] = 83548, + [SMALL_STATE(2416)] = 83562, + [SMALL_STATE(2417)] = 83576, + [SMALL_STATE(2418)] = 83586, + [SMALL_STATE(2419)] = 83596, + [SMALL_STATE(2420)] = 83606, + [SMALL_STATE(2421)] = 83616, + [SMALL_STATE(2422)] = 83626, + [SMALL_STATE(2423)] = 83636, + [SMALL_STATE(2424)] = 83646, + [SMALL_STATE(2425)] = 83660, + [SMALL_STATE(2426)] = 83670, + [SMALL_STATE(2427)] = 83684, + [SMALL_STATE(2428)] = 83694, + [SMALL_STATE(2429)] = 83708, + [SMALL_STATE(2430)] = 83718, + [SMALL_STATE(2431)] = 83732, + [SMALL_STATE(2432)] = 83742, + [SMALL_STATE(2433)] = 83756, + [SMALL_STATE(2434)] = 83766, + [SMALL_STATE(2435)] = 83780, + [SMALL_STATE(2436)] = 83790, + [SMALL_STATE(2437)] = 83800, + [SMALL_STATE(2438)] = 83814, + [SMALL_STATE(2439)] = 83824, + [SMALL_STATE(2440)] = 83834, + [SMALL_STATE(2441)] = 83844, + [SMALL_STATE(2442)] = 83858, + [SMALL_STATE(2443)] = 83872, + [SMALL_STATE(2444)] = 83886, + [SMALL_STATE(2445)] = 83900, + [SMALL_STATE(2446)] = 83914, + [SMALL_STATE(2447)] = 83928, + [SMALL_STATE(2448)] = 83942, + [SMALL_STATE(2449)] = 83952, + [SMALL_STATE(2450)] = 83966, + [SMALL_STATE(2451)] = 83980, + [SMALL_STATE(2452)] = 83990, + [SMALL_STATE(2453)] = 84000, + [SMALL_STATE(2454)] = 84010, + [SMALL_STATE(2455)] = 84020, + [SMALL_STATE(2456)] = 84030, + [SMALL_STATE(2457)] = 84040, + [SMALL_STATE(2458)] = 84050, + [SMALL_STATE(2459)] = 84060, + [SMALL_STATE(2460)] = 84070, + [SMALL_STATE(2461)] = 84084, + [SMALL_STATE(2462)] = 84098, + [SMALL_STATE(2463)] = 84108, + [SMALL_STATE(2464)] = 84122, + [SMALL_STATE(2465)] = 84134, + [SMALL_STATE(2466)] = 84148, + [SMALL_STATE(2467)] = 84162, + [SMALL_STATE(2468)] = 84174, + [SMALL_STATE(2469)] = 84184, + [SMALL_STATE(2470)] = 84198, + [SMALL_STATE(2471)] = 84208, + [SMALL_STATE(2472)] = 84222, + [SMALL_STATE(2473)] = 84232, + [SMALL_STATE(2474)] = 84246, + [SMALL_STATE(2475)] = 84260, + [SMALL_STATE(2476)] = 84274, + [SMALL_STATE(2477)] = 84284, + [SMALL_STATE(2478)] = 84296, + [SMALL_STATE(2479)] = 84306, + [SMALL_STATE(2480)] = 84318, + [SMALL_STATE(2481)] = 84330, + [SMALL_STATE(2482)] = 84340, + [SMALL_STATE(2483)] = 84350, + [SMALL_STATE(2484)] = 84360, + [SMALL_STATE(2485)] = 84370, + [SMALL_STATE(2486)] = 84380, + [SMALL_STATE(2487)] = 84390, + [SMALL_STATE(2488)] = 84400, + [SMALL_STATE(2489)] = 84410, + [SMALL_STATE(2490)] = 84420, + [SMALL_STATE(2491)] = 84430, + [SMALL_STATE(2492)] = 84440, + [SMALL_STATE(2493)] = 84450, + [SMALL_STATE(2494)] = 84464, + [SMALL_STATE(2495)] = 84474, + [SMALL_STATE(2496)] = 84484, + [SMALL_STATE(2497)] = 84496, + [SMALL_STATE(2498)] = 84506, + [SMALL_STATE(2499)] = 84518, + [SMALL_STATE(2500)] = 84528, + [SMALL_STATE(2501)] = 84538, + [SMALL_STATE(2502)] = 84548, + [SMALL_STATE(2503)] = 84558, + [SMALL_STATE(2504)] = 84568, + [SMALL_STATE(2505)] = 84582, + [SMALL_STATE(2506)] = 84596, + [SMALL_STATE(2507)] = 84610, + [SMALL_STATE(2508)] = 84624, + [SMALL_STATE(2509)] = 84638, + [SMALL_STATE(2510)] = 84648, + [SMALL_STATE(2511)] = 84662, + [SMALL_STATE(2512)] = 84672, + [SMALL_STATE(2513)] = 84682, + [SMALL_STATE(2514)] = 84692, + [SMALL_STATE(2515)] = 84702, + [SMALL_STATE(2516)] = 84712, + [SMALL_STATE(2517)] = 84726, + [SMALL_STATE(2518)] = 84738, + [SMALL_STATE(2519)] = 84748, + [SMALL_STATE(2520)] = 84758, + [SMALL_STATE(2521)] = 84768, + [SMALL_STATE(2522)] = 84778, + [SMALL_STATE(2523)] = 84788, + [SMALL_STATE(2524)] = 84798, + [SMALL_STATE(2525)] = 84808, + [SMALL_STATE(2526)] = 84818, + [SMALL_STATE(2527)] = 84828, + [SMALL_STATE(2528)] = 84838, + [SMALL_STATE(2529)] = 84848, + [SMALL_STATE(2530)] = 84862, + [SMALL_STATE(2531)] = 84876, + [SMALL_STATE(2532)] = 84886, + [SMALL_STATE(2533)] = 84900, + [SMALL_STATE(2534)] = 84910, + [SMALL_STATE(2535)] = 84924, + [SMALL_STATE(2536)] = 84934, + [SMALL_STATE(2537)] = 84944, + [SMALL_STATE(2538)] = 84958, + [SMALL_STATE(2539)] = 84968, + [SMALL_STATE(2540)] = 84982, + [SMALL_STATE(2541)] = 84992, + [SMALL_STATE(2542)] = 85002, + [SMALL_STATE(2543)] = 85016, + [SMALL_STATE(2544)] = 85030, + [SMALL_STATE(2545)] = 85044, + [SMALL_STATE(2546)] = 85054, + [SMALL_STATE(2547)] = 85068, + [SMALL_STATE(2548)] = 85082, + [SMALL_STATE(2549)] = 85092, + [SMALL_STATE(2550)] = 85106, + [SMALL_STATE(2551)] = 85116, + [SMALL_STATE(2552)] = 85126, + [SMALL_STATE(2553)] = 85136, + [SMALL_STATE(2554)] = 85146, + [SMALL_STATE(2555)] = 85156, + [SMALL_STATE(2556)] = 85170, + [SMALL_STATE(2557)] = 85184, + [SMALL_STATE(2558)] = 85194, + [SMALL_STATE(2559)] = 85208, + [SMALL_STATE(2560)] = 85222, + [SMALL_STATE(2561)] = 85236, + [SMALL_STATE(2562)] = 85246, + [SMALL_STATE(2563)] = 85256, + [SMALL_STATE(2564)] = 85266, + [SMALL_STATE(2565)] = 85276, + [SMALL_STATE(2566)] = 85290, + [SMALL_STATE(2567)] = 85304, + [SMALL_STATE(2568)] = 85314, + [SMALL_STATE(2569)] = 85324, + [SMALL_STATE(2570)] = 85334, + [SMALL_STATE(2571)] = 85346, + [SMALL_STATE(2572)] = 85356, + [SMALL_STATE(2573)] = 85370, + [SMALL_STATE(2574)] = 85384, + [SMALL_STATE(2575)] = 85394, + [SMALL_STATE(2576)] = 85404, + [SMALL_STATE(2577)] = 85414, + [SMALL_STATE(2578)] = 85424, + [SMALL_STATE(2579)] = 85438, + [SMALL_STATE(2580)] = 85450, + [SMALL_STATE(2581)] = 85464, + [SMALL_STATE(2582)] = 85474, + [SMALL_STATE(2583)] = 85488, + [SMALL_STATE(2584)] = 85502, + [SMALL_STATE(2585)] = 85516, + [SMALL_STATE(2586)] = 85530, + [SMALL_STATE(2587)] = 85544, + [SMALL_STATE(2588)] = 85554, + [SMALL_STATE(2589)] = 85564, + [SMALL_STATE(2590)] = 85578, + [SMALL_STATE(2591)] = 85588, + [SMALL_STATE(2592)] = 85598, + [SMALL_STATE(2593)] = 85608, + [SMALL_STATE(2594)] = 85618, + [SMALL_STATE(2595)] = 85632, + [SMALL_STATE(2596)] = 85646, + [SMALL_STATE(2597)] = 85656, + [SMALL_STATE(2598)] = 85666, + [SMALL_STATE(2599)] = 85676, + [SMALL_STATE(2600)] = 85690, + [SMALL_STATE(2601)] = 85700, + [SMALL_STATE(2602)] = 85710, + [SMALL_STATE(2603)] = 85720, + [SMALL_STATE(2604)] = 85734, + [SMALL_STATE(2605)] = 85744, + [SMALL_STATE(2606)] = 85754, + [SMALL_STATE(2607)] = 85764, + [SMALL_STATE(2608)] = 85774, + [SMALL_STATE(2609)] = 85788, + [SMALL_STATE(2610)] = 85802, + [SMALL_STATE(2611)] = 85812, + [SMALL_STATE(2612)] = 85822, + [SMALL_STATE(2613)] = 85836, + [SMALL_STATE(2614)] = 85846, + [SMALL_STATE(2615)] = 85860, + [SMALL_STATE(2616)] = 85870, + [SMALL_STATE(2617)] = 85880, + [SMALL_STATE(2618)] = 85892, + [SMALL_STATE(2619)] = 85906, + [SMALL_STATE(2620)] = 85916, + [SMALL_STATE(2621)] = 85926, + [SMALL_STATE(2622)] = 85940, + [SMALL_STATE(2623)] = 85954, + [SMALL_STATE(2624)] = 85968, + [SMALL_STATE(2625)] = 85978, + [SMALL_STATE(2626)] = 85988, + [SMALL_STATE(2627)] = 85998, + [SMALL_STATE(2628)] = 86008, + [SMALL_STATE(2629)] = 86018, + [SMALL_STATE(2630)] = 86028, + [SMALL_STATE(2631)] = 86038, + [SMALL_STATE(2632)] = 86048, + [SMALL_STATE(2633)] = 86058, + [SMALL_STATE(2634)] = 86068, + [SMALL_STATE(2635)] = 86078, + [SMALL_STATE(2636)] = 86088, + [SMALL_STATE(2637)] = 86098, + [SMALL_STATE(2638)] = 86112, + [SMALL_STATE(2639)] = 86122, + [SMALL_STATE(2640)] = 86132, + [SMALL_STATE(2641)] = 86141, + [SMALL_STATE(2642)] = 86150, + [SMALL_STATE(2643)] = 86159, + [SMALL_STATE(2644)] = 86168, + [SMALL_STATE(2645)] = 86177, + [SMALL_STATE(2646)] = 86186, + [SMALL_STATE(2647)] = 86195, + [SMALL_STATE(2648)] = 86204, + [SMALL_STATE(2649)] = 86213, + [SMALL_STATE(2650)] = 86222, + [SMALL_STATE(2651)] = 86231, + [SMALL_STATE(2652)] = 86240, + [SMALL_STATE(2653)] = 86249, + [SMALL_STATE(2654)] = 86258, + [SMALL_STATE(2655)] = 86267, + [SMALL_STATE(2656)] = 86276, + [SMALL_STATE(2657)] = 86287, + [SMALL_STATE(2658)] = 86298, + [SMALL_STATE(2659)] = 86307, + [SMALL_STATE(2660)] = 86316, + [SMALL_STATE(2661)] = 86325, + [SMALL_STATE(2662)] = 86334, + [SMALL_STATE(2663)] = 86343, + [SMALL_STATE(2664)] = 86352, + [SMALL_STATE(2665)] = 86361, + [SMALL_STATE(2666)] = 86370, + [SMALL_STATE(2667)] = 86379, + [SMALL_STATE(2668)] = 86388, + [SMALL_STATE(2669)] = 86397, + [SMALL_STATE(2670)] = 86406, + [SMALL_STATE(2671)] = 86415, + [SMALL_STATE(2672)] = 86424, + [SMALL_STATE(2673)] = 86433, + [SMALL_STATE(2674)] = 86442, + [SMALL_STATE(2675)] = 86451, + [SMALL_STATE(2676)] = 86460, + [SMALL_STATE(2677)] = 86469, + [SMALL_STATE(2678)] = 86478, + [SMALL_STATE(2679)] = 86487, + [SMALL_STATE(2680)] = 86496, + [SMALL_STATE(2681)] = 86505, + [SMALL_STATE(2682)] = 86514, + [SMALL_STATE(2683)] = 86523, + [SMALL_STATE(2684)] = 86532, + [SMALL_STATE(2685)] = 86541, + [SMALL_STATE(2686)] = 86550, + [SMALL_STATE(2687)] = 86559, + [SMALL_STATE(2688)] = 86568, + [SMALL_STATE(2689)] = 86577, + [SMALL_STATE(2690)] = 86586, + [SMALL_STATE(2691)] = 86595, + [SMALL_STATE(2692)] = 86604, + [SMALL_STATE(2693)] = 86615, + [SMALL_STATE(2694)] = 86624, + [SMALL_STATE(2695)] = 86633, + [SMALL_STATE(2696)] = 86642, + [SMALL_STATE(2697)] = 86653, + [SMALL_STATE(2698)] = 86662, + [SMALL_STATE(2699)] = 86671, + [SMALL_STATE(2700)] = 86680, + [SMALL_STATE(2701)] = 86689, + [SMALL_STATE(2702)] = 86698, + [SMALL_STATE(2703)] = 86707, + [SMALL_STATE(2704)] = 86716, + [SMALL_STATE(2705)] = 86725, + [SMALL_STATE(2706)] = 86734, + [SMALL_STATE(2707)] = 86743, + [SMALL_STATE(2708)] = 86754, + [SMALL_STATE(2709)] = 86763, + [SMALL_STATE(2710)] = 86774, + [SMALL_STATE(2711)] = 86783, + [SMALL_STATE(2712)] = 86794, + [SMALL_STATE(2713)] = 86803, + [SMALL_STATE(2714)] = 86812, + [SMALL_STATE(2715)] = 86821, + [SMALL_STATE(2716)] = 86830, + [SMALL_STATE(2717)] = 86839, + [SMALL_STATE(2718)] = 86848, + [SMALL_STATE(2719)] = 86857, + [SMALL_STATE(2720)] = 86866, + [SMALL_STATE(2721)] = 86875, + [SMALL_STATE(2722)] = 86884, + [SMALL_STATE(2723)] = 86893, + [SMALL_STATE(2724)] = 86902, + [SMALL_STATE(2725)] = 86911, + [SMALL_STATE(2726)] = 86922, + [SMALL_STATE(2727)] = 86931, + [SMALL_STATE(2728)] = 86940, + [SMALL_STATE(2729)] = 86949, + [SMALL_STATE(2730)] = 86960, + [SMALL_STATE(2731)] = 86969, + [SMALL_STATE(2732)] = 86978, + [SMALL_STATE(2733)] = 86987, + [SMALL_STATE(2734)] = 86996, + [SMALL_STATE(2735)] = 87007, + [SMALL_STATE(2736)] = 87016, + [SMALL_STATE(2737)] = 87025, + [SMALL_STATE(2738)] = 87034, + [SMALL_STATE(2739)] = 87043, + [SMALL_STATE(2740)] = 87052, + [SMALL_STATE(2741)] = 87061, + [SMALL_STATE(2742)] = 87070, + [SMALL_STATE(2743)] = 87079, + [SMALL_STATE(2744)] = 87088, + [SMALL_STATE(2745)] = 87097, + [SMALL_STATE(2746)] = 87106, + [SMALL_STATE(2747)] = 87115, + [SMALL_STATE(2748)] = 87124, + [SMALL_STATE(2749)] = 87133, + [SMALL_STATE(2750)] = 87142, + [SMALL_STATE(2751)] = 87151, + [SMALL_STATE(2752)] = 87160, + [SMALL_STATE(2753)] = 87169, + [SMALL_STATE(2754)] = 87178, + [SMALL_STATE(2755)] = 87187, + [SMALL_STATE(2756)] = 87198, + [SMALL_STATE(2757)] = 87207, + [SMALL_STATE(2758)] = 87216, + [SMALL_STATE(2759)] = 87225, + [SMALL_STATE(2760)] = 87236, + [SMALL_STATE(2761)] = 87245, + [SMALL_STATE(2762)] = 87254, + [SMALL_STATE(2763)] = 87263, + [SMALL_STATE(2764)] = 87272, + [SMALL_STATE(2765)] = 87281, + [SMALL_STATE(2766)] = 87290, + [SMALL_STATE(2767)] = 87301, + [SMALL_STATE(2768)] = 87310, + [SMALL_STATE(2769)] = 87319, + [SMALL_STATE(2770)] = 87328, + [SMALL_STATE(2771)] = 87337, + [SMALL_STATE(2772)] = 87346, + [SMALL_STATE(2773)] = 87355, + [SMALL_STATE(2774)] = 87364, + [SMALL_STATE(2775)] = 87373, + [SMALL_STATE(2776)] = 87382, + [SMALL_STATE(2777)] = 87391, + [SMALL_STATE(2778)] = 87400, + [SMALL_STATE(2779)] = 87411, + [SMALL_STATE(2780)] = 87420, + [SMALL_STATE(2781)] = 87429, + [SMALL_STATE(2782)] = 87438, + [SMALL_STATE(2783)] = 87447, + [SMALL_STATE(2784)] = 87456, + [SMALL_STATE(2785)] = 87467, + [SMALL_STATE(2786)] = 87476, + [SMALL_STATE(2787)] = 87485, + [SMALL_STATE(2788)] = 87496, + [SMALL_STATE(2789)] = 87505, + [SMALL_STATE(2790)] = 87514, + [SMALL_STATE(2791)] = 87523, + [SMALL_STATE(2792)] = 87532, + [SMALL_STATE(2793)] = 87541, + [SMALL_STATE(2794)] = 87550, + [SMALL_STATE(2795)] = 87559, + [SMALL_STATE(2796)] = 87568, + [SMALL_STATE(2797)] = 87577, + [SMALL_STATE(2798)] = 87586, + [SMALL_STATE(2799)] = 87595, + [SMALL_STATE(2800)] = 87604, + [SMALL_STATE(2801)] = 87613, + [SMALL_STATE(2802)] = 87622, + [SMALL_STATE(2803)] = 87631, + [SMALL_STATE(2804)] = 87640, + [SMALL_STATE(2805)] = 87649, + [SMALL_STATE(2806)] = 87658, + [SMALL_STATE(2807)] = 87667, + [SMALL_STATE(2808)] = 87676, + [SMALL_STATE(2809)] = 87685, + [SMALL_STATE(2810)] = 87694, + [SMALL_STATE(2811)] = 87703, + [SMALL_STATE(2812)] = 87712, + [SMALL_STATE(2813)] = 87721, + [SMALL_STATE(2814)] = 87730, + [SMALL_STATE(2815)] = 87739, + [SMALL_STATE(2816)] = 87748, + [SMALL_STATE(2817)] = 87757, + [SMALL_STATE(2818)] = 87766, + [SMALL_STATE(2819)] = 87775, + [SMALL_STATE(2820)] = 87784, + [SMALL_STATE(2821)] = 87793, + [SMALL_STATE(2822)] = 87802, + [SMALL_STATE(2823)] = 87811, + [SMALL_STATE(2824)] = 87820, + [SMALL_STATE(2825)] = 87829, + [SMALL_STATE(2826)] = 87838, + [SMALL_STATE(2827)] = 87847, + [SMALL_STATE(2828)] = 87856, + [SMALL_STATE(2829)] = 87865, + [SMALL_STATE(2830)] = 87874, + [SMALL_STATE(2831)] = 87883, + [SMALL_STATE(2832)] = 87892, + [SMALL_STATE(2833)] = 87903, + [SMALL_STATE(2834)] = 87912, + [SMALL_STATE(2835)] = 87921, + [SMALL_STATE(2836)] = 87930, + [SMALL_STATE(2837)] = 87939, + [SMALL_STATE(2838)] = 87948, + [SMALL_STATE(2839)] = 87957, + [SMALL_STATE(2840)] = 87966, + [SMALL_STATE(2841)] = 87975, + [SMALL_STATE(2842)] = 87984, + [SMALL_STATE(2843)] = 87993, + [SMALL_STATE(2844)] = 88002, + [SMALL_STATE(2845)] = 88011, + [SMALL_STATE(2846)] = 88020, + [SMALL_STATE(2847)] = 88029, + [SMALL_STATE(2848)] = 88038, + [SMALL_STATE(2849)] = 88047, + [SMALL_STATE(2850)] = 88058, + [SMALL_STATE(2851)] = 88067, + [SMALL_STATE(2852)] = 88076, + [SMALL_STATE(2853)] = 88085, + [SMALL_STATE(2854)] = 88094, + [SMALL_STATE(2855)] = 88103, + [SMALL_STATE(2856)] = 88112, + [SMALL_STATE(2857)] = 88121, + [SMALL_STATE(2858)] = 88130, + [SMALL_STATE(2859)] = 88139, + [SMALL_STATE(2860)] = 88148, + [SMALL_STATE(2861)] = 88157, + [SMALL_STATE(2862)] = 88166, + [SMALL_STATE(2863)] = 88177, + [SMALL_STATE(2864)] = 88186, + [SMALL_STATE(2865)] = 88195, + [SMALL_STATE(2866)] = 88204, + [SMALL_STATE(2867)] = 88213, + [SMALL_STATE(2868)] = 88222, + [SMALL_STATE(2869)] = 88231, + [SMALL_STATE(2870)] = 88239, + [SMALL_STATE(2871)] = 88247, + [SMALL_STATE(2872)] = 88255, + [SMALL_STATE(2873)] = 88263, + [SMALL_STATE(2874)] = 88271, + [SMALL_STATE(2875)] = 88279, + [SMALL_STATE(2876)] = 88287, + [SMALL_STATE(2877)] = 88295, + [SMALL_STATE(2878)] = 88303, + [SMALL_STATE(2879)] = 88311, + [SMALL_STATE(2880)] = 88319, + [SMALL_STATE(2881)] = 88327, + [SMALL_STATE(2882)] = 88335, + [SMALL_STATE(2883)] = 88343, + [SMALL_STATE(2884)] = 88351, + [SMALL_STATE(2885)] = 88359, + [SMALL_STATE(2886)] = 88367, + [SMALL_STATE(2887)] = 88375, + [SMALL_STATE(2888)] = 88383, + [SMALL_STATE(2889)] = 88391, + [SMALL_STATE(2890)] = 88399, + [SMALL_STATE(2891)] = 88407, + [SMALL_STATE(2892)] = 88415, + [SMALL_STATE(2893)] = 88423, + [SMALL_STATE(2894)] = 88431, + [SMALL_STATE(2895)] = 88439, + [SMALL_STATE(2896)] = 88447, + [SMALL_STATE(2897)] = 88455, + [SMALL_STATE(2898)] = 88463, + [SMALL_STATE(2899)] = 88471, + [SMALL_STATE(2900)] = 88479, + [SMALL_STATE(2901)] = 88487, + [SMALL_STATE(2902)] = 88495, + [SMALL_STATE(2903)] = 88503, + [SMALL_STATE(2904)] = 88511, + [SMALL_STATE(2905)] = 88519, + [SMALL_STATE(2906)] = 88527, + [SMALL_STATE(2907)] = 88535, + [SMALL_STATE(2908)] = 88543, + [SMALL_STATE(2909)] = 88551, + [SMALL_STATE(2910)] = 88559, + [SMALL_STATE(2911)] = 88567, + [SMALL_STATE(2912)] = 88575, + [SMALL_STATE(2913)] = 88583, + [SMALL_STATE(2914)] = 88591, + [SMALL_STATE(2915)] = 88599, + [SMALL_STATE(2916)] = 88607, + [SMALL_STATE(2917)] = 88615, + [SMALL_STATE(2918)] = 88623, + [SMALL_STATE(2919)] = 88631, + [SMALL_STATE(2920)] = 88639, + [SMALL_STATE(2921)] = 88647, + [SMALL_STATE(2922)] = 88655, + [SMALL_STATE(2923)] = 88663, + [SMALL_STATE(2924)] = 88671, + [SMALL_STATE(2925)] = 88679, + [SMALL_STATE(2926)] = 88687, + [SMALL_STATE(2927)] = 88695, + [SMALL_STATE(2928)] = 88703, + [SMALL_STATE(2929)] = 88711, + [SMALL_STATE(2930)] = 88719, + [SMALL_STATE(2931)] = 88727, + [SMALL_STATE(2932)] = 88735, + [SMALL_STATE(2933)] = 88743, + [SMALL_STATE(2934)] = 88751, + [SMALL_STATE(2935)] = 88759, + [SMALL_STATE(2936)] = 88767, + [SMALL_STATE(2937)] = 88775, + [SMALL_STATE(2938)] = 88783, + [SMALL_STATE(2939)] = 88791, + [SMALL_STATE(2940)] = 88799, + [SMALL_STATE(2941)] = 88807, + [SMALL_STATE(2942)] = 88815, + [SMALL_STATE(2943)] = 88823, + [SMALL_STATE(2944)] = 88831, + [SMALL_STATE(2945)] = 88839, + [SMALL_STATE(2946)] = 88847, + [SMALL_STATE(2947)] = 88855, + [SMALL_STATE(2948)] = 88863, + [SMALL_STATE(2949)] = 88871, + [SMALL_STATE(2950)] = 88879, + [SMALL_STATE(2951)] = 88887, + [SMALL_STATE(2952)] = 88895, + [SMALL_STATE(2953)] = 88903, + [SMALL_STATE(2954)] = 88911, + [SMALL_STATE(2955)] = 88919, + [SMALL_STATE(2956)] = 88927, + [SMALL_STATE(2957)] = 88935, + [SMALL_STATE(2958)] = 88943, + [SMALL_STATE(2959)] = 88951, + [SMALL_STATE(2960)] = 88959, + [SMALL_STATE(2961)] = 88967, + [SMALL_STATE(2962)] = 88975, + [SMALL_STATE(2963)] = 88983, + [SMALL_STATE(2964)] = 88991, + [SMALL_STATE(2965)] = 88999, + [SMALL_STATE(2966)] = 89007, + [SMALL_STATE(2967)] = 89015, + [SMALL_STATE(2968)] = 89023, + [SMALL_STATE(2969)] = 89031, + [SMALL_STATE(2970)] = 89039, + [SMALL_STATE(2971)] = 89047, + [SMALL_STATE(2972)] = 89055, + [SMALL_STATE(2973)] = 89063, + [SMALL_STATE(2974)] = 89071, + [SMALL_STATE(2975)] = 89079, + [SMALL_STATE(2976)] = 89087, + [SMALL_STATE(2977)] = 89095, + [SMALL_STATE(2978)] = 89103, + [SMALL_STATE(2979)] = 89111, + [SMALL_STATE(2980)] = 89119, + [SMALL_STATE(2981)] = 89127, + [SMALL_STATE(2982)] = 89135, + [SMALL_STATE(2983)] = 89143, + [SMALL_STATE(2984)] = 89151, + [SMALL_STATE(2985)] = 89159, + [SMALL_STATE(2986)] = 89167, + [SMALL_STATE(2987)] = 89175, + [SMALL_STATE(2988)] = 89183, + [SMALL_STATE(2989)] = 89191, + [SMALL_STATE(2990)] = 89199, + [SMALL_STATE(2991)] = 89207, + [SMALL_STATE(2992)] = 89215, + [SMALL_STATE(2993)] = 89223, + [SMALL_STATE(2994)] = 89231, + [SMALL_STATE(2995)] = 89239, + [SMALL_STATE(2996)] = 89247, + [SMALL_STATE(2997)] = 89255, + [SMALL_STATE(2998)] = 89263, + [SMALL_STATE(2999)] = 89271, + [SMALL_STATE(3000)] = 89279, + [SMALL_STATE(3001)] = 89287, + [SMALL_STATE(3002)] = 89295, + [SMALL_STATE(3003)] = 89303, + [SMALL_STATE(3004)] = 89311, + [SMALL_STATE(3005)] = 89319, + [SMALL_STATE(3006)] = 89327, + [SMALL_STATE(3007)] = 89335, + [SMALL_STATE(3008)] = 89343, + [SMALL_STATE(3009)] = 89351, + [SMALL_STATE(3010)] = 89359, + [SMALL_STATE(3011)] = 89367, + [SMALL_STATE(3012)] = 89375, + [SMALL_STATE(3013)] = 89383, + [SMALL_STATE(3014)] = 89391, + [SMALL_STATE(3015)] = 89399, + [SMALL_STATE(3016)] = 89407, + [SMALL_STATE(3017)] = 89415, + [SMALL_STATE(3018)] = 89423, + [SMALL_STATE(3019)] = 89431, + [SMALL_STATE(3020)] = 89439, + [SMALL_STATE(3021)] = 89447, + [SMALL_STATE(3022)] = 89455, + [SMALL_STATE(3023)] = 89463, + [SMALL_STATE(3024)] = 89471, + [SMALL_STATE(3025)] = 89479, + [SMALL_STATE(3026)] = 89487, + [SMALL_STATE(3027)] = 89495, + [SMALL_STATE(3028)] = 89503, + [SMALL_STATE(3029)] = 89511, + [SMALL_STATE(3030)] = 89519, + [SMALL_STATE(3031)] = 89527, + [SMALL_STATE(3032)] = 89535, + [SMALL_STATE(3033)] = 89543, + [SMALL_STATE(3034)] = 89551, + [SMALL_STATE(3035)] = 89559, + [SMALL_STATE(3036)] = 89567, + [SMALL_STATE(3037)] = 89575, + [SMALL_STATE(3038)] = 89583, + [SMALL_STATE(3039)] = 89591, + [SMALL_STATE(3040)] = 89599, + [SMALL_STATE(3041)] = 89607, + [SMALL_STATE(3042)] = 89615, + [SMALL_STATE(3043)] = 89623, + [SMALL_STATE(3044)] = 89631, + [SMALL_STATE(3045)] = 89639, + [SMALL_STATE(3046)] = 89647, + [SMALL_STATE(3047)] = 89655, + [SMALL_STATE(3048)] = 89663, + [SMALL_STATE(3049)] = 89671, + [SMALL_STATE(3050)] = 89679, + [SMALL_STATE(3051)] = 89687, + [SMALL_STATE(3052)] = 89695, + [SMALL_STATE(3053)] = 89703, + [SMALL_STATE(3054)] = 89711, + [SMALL_STATE(3055)] = 89719, + [SMALL_STATE(3056)] = 89727, + [SMALL_STATE(3057)] = 89735, + [SMALL_STATE(3058)] = 89743, + [SMALL_STATE(3059)] = 89751, + [SMALL_STATE(3060)] = 89759, + [SMALL_STATE(3061)] = 89767, + [SMALL_STATE(3062)] = 89775, + [SMALL_STATE(3063)] = 89783, + [SMALL_STATE(3064)] = 89791, + [SMALL_STATE(3065)] = 89799, + [SMALL_STATE(3066)] = 89807, + [SMALL_STATE(3067)] = 89815, + [SMALL_STATE(3068)] = 89823, + [SMALL_STATE(3069)] = 89831, + [SMALL_STATE(3070)] = 89839, + [SMALL_STATE(3071)] = 89847, + [SMALL_STATE(3072)] = 89855, + [SMALL_STATE(3073)] = 89863, + [SMALL_STATE(3074)] = 89871, + [SMALL_STATE(3075)] = 89879, + [SMALL_STATE(3076)] = 89887, + [SMALL_STATE(3077)] = 89895, + [SMALL_STATE(3078)] = 89903, + [SMALL_STATE(3079)] = 89911, + [SMALL_STATE(3080)] = 89919, + [SMALL_STATE(3081)] = 89927, + [SMALL_STATE(3082)] = 89935, + [SMALL_STATE(3083)] = 89943, + [SMALL_STATE(3084)] = 89951, + [SMALL_STATE(3085)] = 89959, + [SMALL_STATE(3086)] = 89967, + [SMALL_STATE(3087)] = 89975, + [SMALL_STATE(3088)] = 89983, + [SMALL_STATE(3089)] = 89991, + [SMALL_STATE(3090)] = 89999, + [SMALL_STATE(3091)] = 90007, + [SMALL_STATE(3092)] = 90015, + [SMALL_STATE(3093)] = 90023, + [SMALL_STATE(3094)] = 90031, + [SMALL_STATE(3095)] = 90039, + [SMALL_STATE(3096)] = 90047, + [SMALL_STATE(3097)] = 90055, + [SMALL_STATE(3098)] = 90063, + [SMALL_STATE(3099)] = 90071, + [SMALL_STATE(3100)] = 90079, + [SMALL_STATE(3101)] = 90087, + [SMALL_STATE(3102)] = 90095, + [SMALL_STATE(3103)] = 90103, + [SMALL_STATE(3104)] = 90111, + [SMALL_STATE(3105)] = 90119, + [SMALL_STATE(3106)] = 90127, + [SMALL_STATE(3107)] = 90135, + [SMALL_STATE(3108)] = 90143, + [SMALL_STATE(3109)] = 90151, + [SMALL_STATE(3110)] = 90159, + [SMALL_STATE(3111)] = 90167, + [SMALL_STATE(3112)] = 90175, + [SMALL_STATE(3113)] = 90183, + [SMALL_STATE(3114)] = 90191, + [SMALL_STATE(3115)] = 90199, + [SMALL_STATE(3116)] = 90207, + [SMALL_STATE(3117)] = 90215, + [SMALL_STATE(3118)] = 90223, + [SMALL_STATE(3119)] = 90231, + [SMALL_STATE(3120)] = 90239, + [SMALL_STATE(3121)] = 90247, + [SMALL_STATE(3122)] = 90255, + [SMALL_STATE(3123)] = 90263, + [SMALL_STATE(3124)] = 90271, + [SMALL_STATE(3125)] = 90279, + [SMALL_STATE(3126)] = 90287, + [SMALL_STATE(3127)] = 90295, + [SMALL_STATE(3128)] = 90303, + [SMALL_STATE(3129)] = 90311, + [SMALL_STATE(3130)] = 90319, + [SMALL_STATE(3131)] = 90327, + [SMALL_STATE(3132)] = 90335, + [SMALL_STATE(3133)] = 90343, + [SMALL_STATE(3134)] = 90351, + [SMALL_STATE(3135)] = 90359, + [SMALL_STATE(3136)] = 90367, + [SMALL_STATE(3137)] = 90375, + [SMALL_STATE(3138)] = 90383, + [SMALL_STATE(3139)] = 90391, + [SMALL_STATE(3140)] = 90399, + [SMALL_STATE(3141)] = 90407, + [SMALL_STATE(3142)] = 90415, + [SMALL_STATE(3143)] = 90423, + [SMALL_STATE(3144)] = 90431, + [SMALL_STATE(3145)] = 90439, + [SMALL_STATE(3146)] = 90447, + [SMALL_STATE(3147)] = 90455, + [SMALL_STATE(3148)] = 90463, + [SMALL_STATE(3149)] = 90471, + [SMALL_STATE(3150)] = 90479, + [SMALL_STATE(3151)] = 90487, + [SMALL_STATE(3152)] = 90495, + [SMALL_STATE(3153)] = 90503, + [SMALL_STATE(3154)] = 90511, + [SMALL_STATE(3155)] = 90519, + [SMALL_STATE(3156)] = 90527, + [SMALL_STATE(3157)] = 90535, + [SMALL_STATE(3158)] = 90543, + [SMALL_STATE(3159)] = 90551, + [SMALL_STATE(3160)] = 90559, + [SMALL_STATE(3161)] = 90567, + [SMALL_STATE(3162)] = 90575, + [SMALL_STATE(3163)] = 90583, + [SMALL_STATE(3164)] = 90591, + [SMALL_STATE(3165)] = 90599, + [SMALL_STATE(3166)] = 90607, + [SMALL_STATE(3167)] = 90615, + [SMALL_STATE(3168)] = 90623, + [SMALL_STATE(3169)] = 90631, + [SMALL_STATE(3170)] = 90639, + [SMALL_STATE(3171)] = 90647, + [SMALL_STATE(3172)] = 90655, + [SMALL_STATE(3173)] = 90663, + [SMALL_STATE(3174)] = 90671, + [SMALL_STATE(3175)] = 90679, + [SMALL_STATE(3176)] = 90687, + [SMALL_STATE(3177)] = 90695, + [SMALL_STATE(3178)] = 90703, + [SMALL_STATE(3179)] = 90711, + [SMALL_STATE(3180)] = 90719, + [SMALL_STATE(3181)] = 90727, + [SMALL_STATE(3182)] = 90735, + [SMALL_STATE(3183)] = 90743, + [SMALL_STATE(3184)] = 90751, + [SMALL_STATE(3185)] = 90759, + [SMALL_STATE(3186)] = 90767, + [SMALL_STATE(3187)] = 90775, + [SMALL_STATE(3188)] = 90783, + [SMALL_STATE(3189)] = 90791, + [SMALL_STATE(3190)] = 90799, + [SMALL_STATE(3191)] = 90807, + [SMALL_STATE(3192)] = 90815, + [SMALL_STATE(3193)] = 90823, + [SMALL_STATE(3194)] = 90831, + [SMALL_STATE(3195)] = 90839, + [SMALL_STATE(3196)] = 90847, + [SMALL_STATE(3197)] = 90855, + [SMALL_STATE(3198)] = 90863, + [SMALL_STATE(3199)] = 90871, + [SMALL_STATE(3200)] = 90879, + [SMALL_STATE(3201)] = 90887, + [SMALL_STATE(3202)] = 90895, + [SMALL_STATE(3203)] = 90903, + [SMALL_STATE(3204)] = 90911, + [SMALL_STATE(3205)] = 90919, + [SMALL_STATE(3206)] = 90927, + [SMALL_STATE(3207)] = 90935, + [SMALL_STATE(3208)] = 90943, + [SMALL_STATE(3209)] = 90951, + [SMALL_STATE(3210)] = 90959, + [SMALL_STATE(3211)] = 90967, + [SMALL_STATE(3212)] = 90975, + [SMALL_STATE(3213)] = 90983, + [SMALL_STATE(3214)] = 90991, + [SMALL_STATE(3215)] = 90999, + [SMALL_STATE(3216)] = 91007, + [SMALL_STATE(3217)] = 91015, + [SMALL_STATE(3218)] = 91023, + [SMALL_STATE(3219)] = 91031, + [SMALL_STATE(3220)] = 91039, + [SMALL_STATE(3221)] = 91047, + [SMALL_STATE(3222)] = 91055, + [SMALL_STATE(3223)] = 91063, + [SMALL_STATE(3224)] = 91071, + [SMALL_STATE(3225)] = 91079, + [SMALL_STATE(3226)] = 91087, + [SMALL_STATE(3227)] = 91095, + [SMALL_STATE(3228)] = 91103, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -145364,3759 +146821,3776 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_file, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_statement, 3, .production_id = 62), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 64), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 85), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(92), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1500), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1666), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1797), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1497), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1636), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1645), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1647), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1648), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1528), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2682), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1813), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(103), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(176), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1532), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(329), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(436), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2624), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2163), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2166), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1102), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2585), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(202), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2576), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2571), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2567), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2566), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(277), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(264), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1316), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(58), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(190), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(189), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3193), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(183), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(178), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1375), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1983), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1320), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(516), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1519), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1518), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2542), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3186), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2650), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2181), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2653), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(123), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1628), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2530), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1783), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1113), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2658), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3172), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1283), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3169), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1507), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1505), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(137), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(170), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(354), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2666), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2668), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(70), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(71), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(61), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(72), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(73), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1132), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2209), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1267), - [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1265), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1159), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1264), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(375), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1796), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(93), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1450), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1670), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1835), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1446), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1686), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1684), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1683), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1680), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1562), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2690), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1789), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(105), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(185), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1573), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(269), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(270), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2291), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2149), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2150), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1109), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2297), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(199), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2299), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2301), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2302), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2303), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(302), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(218), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1246), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(57), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(190), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(188), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3203), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(186), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(184), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1338), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1960), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1343), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(527), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1512), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1511), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2307), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3196), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2658), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2152), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2662), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(123), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1699), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2308), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1857), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1131), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2668), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3182), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1262), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3179), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1472), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1466), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(137), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(182), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(363), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2676), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2677), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(64), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(74), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(73), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(88), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(85), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1151), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2154), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1263), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1264), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1179), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1266), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(390), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1838), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 85), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_statement, 3, .production_id = 62), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 64), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3), [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_statement, 4, .production_id = 89), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 2), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(102), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(102), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 2), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 5), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(112), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 1), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 4), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(114), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(116), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(108), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(109), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 1), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 2, .production_id = 63), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 3), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 4), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2, .production_id = 63), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_file, 1), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(107), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 1), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 5), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 4), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(110), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 2, .production_id = 63), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(113), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 4), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(114), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_file, 1), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2, .production_id = 63), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(109), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(112), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(116), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 1), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 3), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_pattern, 1), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_pattern, 1), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_pattern, 2), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_pattern, 2), [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(2894), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(2906), [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_pattern, 2), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_pattern, 2), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(3138), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 1), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 1), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_pattern, 1), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_pattern, 1), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(3060), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 1), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 1), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(118), [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bang, 1), [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bang, 1), [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 1), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 1), [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 1), [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 1), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scriptencoding_statement, 1), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 1), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 1), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 1), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 1), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 1), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 1), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 2), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 2), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 1), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 2), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 1), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 1), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 3), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 1), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(289), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(156), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 2), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(207), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(163), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(154), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2189), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(379), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(295), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2195), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(295), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(300), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(300), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(197), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2270), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(424), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2159), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 2), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(282), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(164), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(376), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(167), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(328), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(168), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(248), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(149), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(193), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2193), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(438), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(442), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2182), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(442), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(493), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(493), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(208), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2199), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(479), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2272), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_braces_name_expression, 3), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_braces_name_expression, 3), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_dict, 1), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_dict, 1), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 2), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 2), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(448), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 2), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 2), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 3), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 3), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_variable, 1), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_variable, 1), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3, .production_id = 57), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3, .production_id = 57), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 58), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 58), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3, .production_id = 59), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(448), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_expression, 3, .production_id = 61), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_expression, 3, .production_id = 61), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 4), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 4), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 57), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 57), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 83), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 83), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 2), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 2), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 5), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 5), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 4, .production_id = 86), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 4, .production_id = 86), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 58), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 58), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 1), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 1), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 87), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 87), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_call_expression, 5, .production_id = 58), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_call_expression, 5, .production_id = 58), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_call_expression, 4, .production_id = 58), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_call_expression, 4, .production_id = 58), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 117), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 117), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_call_expression, 3, .production_id = 58), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_call_expression, 3, .production_id = 58), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 108), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 108), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 107), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 107), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 5, .production_id = 58), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 5, .production_id = 58), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 106), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 106), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 88), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 88), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 3), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 3), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 5, .production_id = 83), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 5, .production_id = 83), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_variable, 2), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_variable, 2), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 2), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 2), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 26), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2, .production_id = 26), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(266), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(266), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(303), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(506), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable, 1), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable, 1), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 1), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(319), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(515), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(330), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(143), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(210), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(145), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(162), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2189), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(444), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(313), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2191), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(313), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(351), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(351), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(207), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2200), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(425), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2179), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 1), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 2), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 1), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 2), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(308), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(155), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 3), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 2), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 2), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 1), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 1), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 2), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(359), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(167), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(391), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(174), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(231), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(164), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(183), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2232), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(426), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(458), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2237), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(458), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(461), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(461), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(208), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2231), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(462), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2203), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_braces_name_expression, 3), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_braces_name_expression, 3), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_dict, 1), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_dict, 1), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 3), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 3), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_variable, 1), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_variable, 1), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 2), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 2), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(449), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 2), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 2), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 3), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 3), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3, .production_id = 57), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3, .production_id = 57), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 58), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 58), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3, .production_id = 59), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(449), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_falsy_expression, 3, .production_id = 59), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_falsy_expression, 3, .production_id = 59), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_expression, 3, .production_id = 61), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_expression, 3, .production_id = 61), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 4), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 4), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 57), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 57), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 2), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 2), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 83), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 83), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 58), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 58), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 1), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 4, .production_id = 86), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 4, .production_id = 86), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 87), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 87), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 5), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 5), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 5, .production_id = 83), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 5, .production_id = 83), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 106), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 106), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 5, .production_id = 58), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 5, .production_id = 58), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 107), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 107), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 108), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 108), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_call_expression, 3, .production_id = 58), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_call_expression, 3, .production_id = 58), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 88), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 88), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 117), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 117), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_call_expression, 4, .production_id = 58), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_call_expression, 4, .production_id = 58), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_variable, 2), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_variable, 2), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 2), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 2), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 26), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2, .production_id = 26), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_call_expression, 5, .production_id = 58), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_call_expression, 5, .production_id = 58), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(322), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(322), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(343), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(511), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable, 1), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable, 1), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(319), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(520), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 3), [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 3), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 4), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 4), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 2), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 2), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 3, .production_id = 73), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 3, .production_id = 73), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_hl_pattern, 3), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_hl_pattern, 3), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(291), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(545), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 3, .production_id = 11), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(427), - [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(555), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 11), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(341), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(341), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2929), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hl_groups_repeat1, 2), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 3, .production_id = 73), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 3, .production_id = 73), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 2), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 2), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 1), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 1), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(388), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(367), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(409), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(276), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 3, .production_id = 73), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 3, .production_id = 73), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(397), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 3), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(322), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 3, .production_id = 25), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(322), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(875), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3120), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2962), - [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(875), - [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2915), - [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(837), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2958), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(869), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 3), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 4, .production_id = 25), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(413), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 3, .production_id = 67), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 4, .production_id = 91), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 1, .production_id = 43), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2, .production_id = 43), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eval_statement, 2), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body, 1), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1800), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(348), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 104), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1027), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3161), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2976), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1027), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2949), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1041), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2873), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1039), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_dictionary_entry, 3, .production_id = 82), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary_entry, 3, .production_id = 82), - [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(348), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 5, .production_id = 121), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 5, .production_id = 121), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 43), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 43), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 1), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 1), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_branch, 1), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 1), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 19), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 19), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3053), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3053), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3054), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3055), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3056), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3057), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3058), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3059), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 3), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2969), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2157), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(845), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 73), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 73), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 73), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 73), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2979), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2154), - [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(859), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 19), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 19), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(308), - [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(861), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 19), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 19), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 43), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 43), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 43), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 43), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3045), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2177), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(874), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 19), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 19), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 2), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3171), - [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2164), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(881), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2948), - [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2872), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3198), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 19), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 19), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 73), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 73), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 119), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 119), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 120), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 120), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 4, .production_id = 121), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 4, .production_id = 121), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 19), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 19), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 94), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2961), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3207), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3190), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 111), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_atom, 3), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_atom, 3), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 111), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 94), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2951), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2969), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2157), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(835), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1506), - [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2864), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2864), - [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2865), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2866), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2867), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2868), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2874), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(2875), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1859), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3171), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2164), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(931), - [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1394), - [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3045), - [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2177), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(908), - [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1455), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2979), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2154), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(855), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1508), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), - [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(977), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(121), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(3143), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 4, .production_id = 121), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 4, .production_id = 121), - [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3001), - [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2240), - [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(987), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 3), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 3), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 2), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 2), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 5, .production_id = 121), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 5, .production_id = 121), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3007), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2137), - [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(995), - [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2955), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2165), - [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(996), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2938), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2188), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1005), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 7, .production_id = 111), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3007), - [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2137), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(990), - [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1516), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 94), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2880), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 5, .production_id = 121), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 5, .production_id = 121), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 4, .production_id = 121), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 4, .production_id = 121), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3001), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2240), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1003), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1515), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2938), - [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2188), - [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(979), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1503), - [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2955), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2165), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(988), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1504), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 11), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1110), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3165), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1110), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2985), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2963), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1105), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1825), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_keycode, 3), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_keycode, 3), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 29), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 29), - [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2965), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1140), - [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3139), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1140), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2871), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2959), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1143), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keycode, 3), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keycode, 3), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1146), - [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3197), - [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1146), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3196), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3215), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1155), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 1), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 4), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 4), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 2), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 2), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(334), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(548), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(341), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 3, .production_id = 73), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 3, .production_id = 73), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(412), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(572), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(341), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_hl_pattern, 3), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_hl_pattern, 3), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 11), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 3, .production_id = 11), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 1), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 1), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(456), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(408), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 2), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 2), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(299), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(388), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(397), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 3, .production_id = 73), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 3, .production_id = 73), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2931), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hl_groups_repeat1, 2), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(347), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 3), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__ident, 1, .dynamic_precedence = 1), SHIFT(273), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(347), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 3, .production_id = 67), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 3), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 3, .production_id = 73), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 3, .production_id = 73), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 4, .production_id = 25), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 4, .production_id = 91), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eval_statement, 2), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 3, .production_id = 25), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_operation, 2), SHIFT(376), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 59), SHIFT(376), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(910), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3130), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2972), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(910), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2925), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(938), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2971), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(905), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2, .production_id = 43), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 1, .production_id = 43), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary_entry, 3, .production_id = 82), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_dictionary_entry, 3, .production_id = 82), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 104), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1022), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3171), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2986), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1022), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2959), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1029), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2878), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1038), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1836), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body, 1), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 19), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 19), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 2), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(357), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(909), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 19), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 19), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2989), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), + [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2175), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(911), + [3122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3033), + [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2256), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(912), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_branch, 1), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 1), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 1), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 1), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 19), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 19), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 119), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 119), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 43), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 43), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 5, .production_id = 121), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 5, .production_id = 121), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 4, .production_id = 121), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 4, .production_id = 121), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 120), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 120), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3174), + [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2251), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(925), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 43), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 43), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 73), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 73), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 19), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 19), + [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2979), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2178), + [3238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(932), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 3), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3063), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3063), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3064), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3065), + [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3066), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3067), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3068), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3069), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 19), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 19), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 43), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 43), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 19), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 19), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2958), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2877), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3201), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 73), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 73), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 73), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 73), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_atom, 3), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_atom, 3), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2980), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3207), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2951), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), + [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3174), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), + [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2251), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(920), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1529), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 111), + [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3146), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3146), + [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3150), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3154), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3156), + [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3157), + [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3163), + [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3167), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1858), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2961), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2979), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2178), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(934), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1468), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3033), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2256), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(914), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1460), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 111), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2989), + [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2175), + [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(926), + [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1476), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 94), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 94), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 4, .production_id = 121), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 4, .production_id = 121), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 2), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 2), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), + [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1000), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(121), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(3073), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 3), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 3), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 5, .production_id = 121), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 5, .production_id = 121), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3011), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2167), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1003), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2965), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2183), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1009), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3017), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2165), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1010), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2948), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2188), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1013), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 94), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3017), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2165), + [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1006), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1509), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 11), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 5, .production_id = 121), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 5, .production_id = 121), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2889), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2948), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2188), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(991), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1461), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 4, .production_id = 121), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 4, .production_id = 121), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3011), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2167), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(998), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1507), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2965), + [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2183), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(989), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1398), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1115), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3175), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1115), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2995), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2973), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1121), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 7, .production_id = 111), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2975), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_keycode, 3), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_keycode, 3), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 29), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 29), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keycode, 3), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keycode, 3), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1147), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3149), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1147), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2876), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2897), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1144), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1876), [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 2), [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 2), [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_multi, 1), [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_multi, 1), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(139), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), - [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1083), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1792), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 93), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 1), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 93), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_cmd, 1), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 1), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(138), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), + [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1091), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 93), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1178), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2998), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1178), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2966), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2884), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1173), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1799), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 93), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 69), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 69), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 1), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(3060), - [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(138), - [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1109), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_term_list, 2), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 69), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 69), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_cmd, 1), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 1), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 1), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 1), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 2), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 2), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1319), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), - [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2994), - [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2233), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1137), - [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2886), - [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2269), - [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1138), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 1), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 1), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 2), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 3), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2994), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2233), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1130), - [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1512), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1322), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2886), - [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2269), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1116), - [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1498), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 2), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 3), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_attribute, 1, .production_id = 33), - [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_attribute, 1, .production_id = 33), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 1), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(3033), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 1), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1190), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), - [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1190), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 93), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 93), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color, 1), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color, 1), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 93), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 93), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 2), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 2), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui, 3, .production_id = 93), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui, 3, .production_id = 93), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 3), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 3), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_quoted_name, 3), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_quoted_name, 3), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 93), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 93), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_font, 1), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_font, 1), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 2), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [4076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3013), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2257), - [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1207), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_font, 3, .production_id = 93), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_font, 3, .production_id = 93), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_list, 1), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_blend, 3, .production_id = 93), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_blend, 3, .production_id = 93), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 4, .production_id = 11), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 2), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 2, .production_id = 19), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 2, .production_id = 19), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 1), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 5, .production_id = 11), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), - [4159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1336), - [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3079), - [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3209), - [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1224), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 3, .production_id = 11), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2987), - [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2148), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1227), - [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1229), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1229), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2987), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2148), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1221), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1510), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1241), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1241), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 2), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2911), - [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2260), - [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1245), - [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1644), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1254), - [4267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1254), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2932), - [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3010), - [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2200), - [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1276), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1454), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3155), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(2914), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1279), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3013), - [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2257), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1204), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1517), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 1), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1637), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1308), - [4412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1308), - [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1677), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1673), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 1), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1555), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plus_cmd_command, 1, .production_id = 49), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(279), - [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1325), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_edit_statement_repeat1, 2), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1686), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1530), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(2896), - [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(2902), - [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(1428), - [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(1427), - [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(2919), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(1556), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2911), - [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2260), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1277), - [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1491), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1340), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1340), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plus_cmd_pattern, 2, .production_id = 79), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 69), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 69), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1353), - [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1353), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(274), - [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1354), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(3038), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1502), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1564), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3010), - [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2200), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1292), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1486), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 4), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1541), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(301), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1377), - [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_remove, 2), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 1), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plus_cmd_pattern, 2, .production_id = 79), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(3009), - [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1594), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plus_cmd_command, 1, .production_id = 49), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 2), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 1), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1651), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1643), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 4), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 1, .production_id = 19), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1871), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(304), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1385), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), - [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1650), - [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1642), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(2898), - [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1582), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 1), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 1), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1687), - [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1446), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1446), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(306), - [4811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1450), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 2), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1456), - [4819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1456), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 2), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(278), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1466), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 3), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(400), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1473), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1665), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(1336), - [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3079), - [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3209), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 2), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_edit_statement_repeat2, 2), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1101), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 1), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 25), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_completion_behavior, 3, .production_id = 73), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_plus_opt, 2, .production_id = 18), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_plus_opt, 2, .production_id = 18), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 25), - [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(2990), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1626), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 3), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1566), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_plus_opt, 4, .production_id = 101), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_plus_opt, 4, .production_id = 101), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 73), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_completion_behavior, 1, .production_id = 19), - [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1667), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 74), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_range_value, 1, .production_id = 48), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 75), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_address_behavior, 1, .production_id = 19), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 76), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_line, 1), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_line, 1), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_line, 1), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1114), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 3, .production_id = 41), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_previous_pattern, 1), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place, 2, .production_id = 45), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_statement, 1, .production_id = 2), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1979), - [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(358), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1509), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 1, .production_id = 3), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 2, .production_id = 41), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1122), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 1), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 1, .production_id = 15), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 1, .production_id = 15), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3082), - [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3175), - [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3083), - [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3084), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 2), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 2), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), - [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3183), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3182), - [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3181), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1613), - [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1614), - [5135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1614), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1625), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1623), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 4, .production_id = 78), - [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3129), - [5163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3128), - [5166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3126), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plus_cmd_number, 1, .production_id = 48), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plus_cmd_number, 1, .production_id = 48), - [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_cmd, 2), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_cmd, 2), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(2885), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), - [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1304), - [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1304), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_statement_repeat1, 2), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1641), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 3, .production_id = 40), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 1), - [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3117), - [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3110), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(2957), - [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3106), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 1, .production_id = 55), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 6), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 6), - [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 1, .production_id = 69), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), - [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), SHIFT_REPEAT(3081), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 5), - [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 5), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 2, .production_id = 20), - [5356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1161), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 2), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 2), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3032), - [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1349), - [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1349), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1671), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 2), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 2), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inv_option, 2), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inv_option, 2), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1720), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_option, 2), - [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_option, 2), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 1, .production_id = 11), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1728), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1728), - [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 3), - [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 3), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(287), - [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1737), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 1), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 1), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 25), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 3, .production_id = 73), - [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 3, .production_id = 73), - [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place_argument, 3, .production_id = 73), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 1), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), - [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1755), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), - [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 3), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 3), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 3, .production_id = 56), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 1), - [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(3158), - [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1841), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 1, .production_id = 11), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 2), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 2), - [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 2), - [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 1), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 1, .production_id = 43), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 43), - [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 43), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1777), - [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(132), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(2931), - [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 1), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 1), - [5544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1778), - [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3166), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), - [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1984), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 44), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), - [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3065), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3066), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3067), - [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 47), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 2, .production_id = 55), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 46), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 45), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 11), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 44), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 1), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_list, 2), - [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 73), - [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 46), - [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(363), - [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1806), - [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_remove, 3), - [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 3), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 47), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(133), - [5645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3156), - [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), - [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(1812), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 1), - [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1815), - [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1815), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 2, .production_id = 11), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 45), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 70), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 19), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 19), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 3, .production_id = 11), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3195), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 3, .production_id = 55), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 2, .production_id = 35), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1294), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1855), - [5758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1855), - [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 2), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), - [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3088), - [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3089), - [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3090), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), - [5788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3085), - [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3086), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3087), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 71), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 98), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 2), - [5807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2079), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2079), - [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 51), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 3, .production_id = 51), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(1888), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1638), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 35), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 71), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1847), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2908), - [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2118), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), - [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), SHIFT_REPEAT(3121), - [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3027), - [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3026), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3025), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 24), - [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2), - [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3051), - [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3048), - [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3028), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2, .production_id = 24), - [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3177), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 3), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 1), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 1), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(134), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3203), - [5942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(1923), - [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 5, .production_id = 114), - [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1654), - [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(2970), - [5955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(2973), - [5958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(2980), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 2), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 3), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 1, .production_id = 43), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1593), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 51), - [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_list_argument, 3, .production_id = 73), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2), - [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 24), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), SHIFT_REPEAT(3159), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_au_event_list, 1), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 4, .production_id = 95), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 112), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 95), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), - [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(3099), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2, .production_id = 24), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 113), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 3, .production_id = 73), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 1, .production_id = 11), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id_argument, 3, .production_id = 73), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 27), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 1, .production_id = 43), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 1, .production_id = 43), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump_argument, 3, .production_id = 73), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(335), - [6105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2003), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 1, .production_id = 43), - [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 29), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), SHIFT_REPEAT(3130), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_au_event_list_repeat1, 2), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 112), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 123), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 113), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 7), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 122), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 123), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 124), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_au_event_list, 2), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 8, .production_id = 124), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 8), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 122), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2158), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 3, .production_id = 51), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 9), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1621), - [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__runtime_where, 1), - [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__runtime_where, 1), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 1), - [6193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 1), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 3), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 3), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 2), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1685), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cnext_statement, 1), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cprevious_statement, 1), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_list, 3), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 2), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 2), - [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), SHIFT_REPEAT(2595), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(139), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1110), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_term_list, 2), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_cmd, 1), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(3142), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 1), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 1), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_cmd, 1), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 1), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 1), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 2), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 2), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3004), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2170), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1141), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2895), + [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2198), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1145), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 1), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 1), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1372), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), + [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3004), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2170), + [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1125), + [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1502), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 2), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2895), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2198), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1137), + [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1448), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 3), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 2), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1331), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_blend, 3, .production_id = 93), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_blend, 3, .production_id = 93), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_quoted_name, 3), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_quoted_name, 3), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 2), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 4, .production_id = 11), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 2), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_font, 3, .production_id = 93), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_font, 3, .production_id = 93), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_font, 1), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_font, 1), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 93), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 93), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui, 3, .production_id = 93), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui, 3, .production_id = 93), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 1), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 93), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 93), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color, 1), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color, 1), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 2), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 2), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 93), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 93), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 3), + [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 3), + [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1207), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), + [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1207), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 2, .production_id = 19), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 2, .production_id = 19), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 1), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 1), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_attribute, 1, .production_id = 33), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_attribute, 1, .production_id = 33), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(3047), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_list, 1), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 3), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3023), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2163), + [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1228), + [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1230), + [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1230), + [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2997), + [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2173), + [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1232), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 5, .production_id = 11), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 3, .production_id = 11), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), + [4202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1342), + [4205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3089), + [4208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3218), + [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1237), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2921), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2213), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1242), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 1), + [4253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3023), + [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2163), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1240), + [4262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1510), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [4267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1485), + [4270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3165), + [4273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(2924), + [4276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1252), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1254), + [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1254), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1648), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3034), + [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2230), + [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1259), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 2), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2942), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1672), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1291), + [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1291), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1675), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2997), + [4399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2173), + [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1235), + [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1486), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1692), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1322), + [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1322), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 1), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), + [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(2909), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(2912), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(1399), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(1401), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(2927), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_statement_repeat1, 2), SHIFT_REPEAT(1632), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1347), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1347), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plus_cmd_command, 1, .production_id = 49), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_edit_statement_repeat1, 2), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1641), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 4), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3034), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2230), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1281), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1424), + [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(336), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1353), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1541), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 1), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1612), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(305), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1361), + [4612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2921), + [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2213), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1315), + [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1437), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1368), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1368), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(300), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1370), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plus_cmd_pattern, 2, .production_id = 79), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(2901), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1505), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 69), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 69), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1563), + [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_remove, 2), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1567), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 1, .production_id = 19), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(355), + [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1403), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1405), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1405), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 2), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1678), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 1), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 1), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1908), + [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(354), + [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1364), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1645), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 2), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(304), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1465), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(399), + [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1470), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 3), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1663), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plus_cmd_command, 1, .production_id = 49), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(1342), + [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3089), + [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3218), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 2), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 4), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_edit_statement_repeat2, 2), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1114), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(3012), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1544), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plus_cmd_pattern, 2, .production_id = 79), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 2), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(2908), + [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1551), + [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1649), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 1), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1640), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 1), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2), + [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1522), + [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1522), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1673), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 73), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 25), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1990), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(290), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1525), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1552), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_completion_behavior, 3, .production_id = 73), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 1), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3092), + [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3185), + [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3093), + [5002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3094), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1130), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3192), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3191), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3189), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1128), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 2), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 2), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 1, .production_id = 15), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 1, .production_id = 15), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 76), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 2, .production_id = 41), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_plus_opt, 4, .production_id = 101), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_plus_opt, 4, .production_id = 101), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1661), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 3, .production_id = 41), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place, 2, .production_id = 45), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1588), + [5104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1588), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), + [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1607), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_address_behavior, 1, .production_id = 19), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1584), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 75), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_plus_opt, 2, .production_id = 18), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_plus_opt, 2, .production_id = 18), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_range_value, 1, .production_id = 48), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 25), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_line, 1), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_line, 1), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_line, 1), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_attribute, 3, .production_id = 74), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 3), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_attribute_completion_behavior, 1, .production_id = 19), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_previous_pattern, 1), + [5143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1635), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_statement, 1, .production_id = 2), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 1, .production_id = 3), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(3009), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1669), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3213), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3212), + [5194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3209), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 1, .production_id = 69), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3206), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3205), + [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3202), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3200), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plus_cmd_number, 1, .production_id = 48), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plus_cmd_number, 1, .production_id = 48), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus_cmd, 2), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus_cmd, 2), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 1, .production_id = 55), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 4, .production_id = 78), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1165), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(2894), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1276), + [5300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1276), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 3, .production_id = 40), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 2, .production_id = 20), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), SHIFT_REPEAT(3091), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_statement_repeat1, 2), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), + [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1687), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 6), + [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 6), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 1), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 5), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 5), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inv_option, 2), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inv_option, 2), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 43), + [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 43), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3013), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1388), + [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1388), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat1, 2), SHIFT_REPEAT(1705), + [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 2), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 2), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1726), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 1), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 1), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 1), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 2), + [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1742), + [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(131), + [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(2917), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 1), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(326), + [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1748), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 25), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 3, .production_id = 73), + [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 3, .production_id = 73), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place_argument, 3, .production_id = 73), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 1), + [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 3), + [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 3), + [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), + [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1759), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), + [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 3), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 3), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 1), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 2), + [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 2), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 1, .production_id = 11), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 1, .production_id = 11), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 3, .production_id = 56), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(3155), + [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plus_cmd_arg, 2), SHIFT_REPEAT(1877), + [5560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1782), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1782), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 1, .production_id = 43), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 2), + [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 2), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 1), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_option, 2), + [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_option, 2), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 1), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 3, .production_id = 11), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 2, .production_id = 35), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 44), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(368), + [5611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1794), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 45), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 46), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 47), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3075), + [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3076), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3077), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 2, .production_id = 11), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), + [5671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3095), + [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3096), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3097), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 44), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3098), + [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3099), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3100), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), + [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3199), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 19), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 19), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 70), + [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 73), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 1), + [5730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1840), + [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1840), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 2, .production_id = 55), + [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_remove, 3), + [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 2), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 11), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 45), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 46), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 47), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [5784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(133), + [5787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(2982), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(1862), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1865), + [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1865), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_edit_statement_repeat2, 2), SHIFT_REPEAT(1316), + [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1737), + [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3176), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), + [5818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1962), + [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 3, .production_id = 55), + [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_list, 2), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 3), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3035), + [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(2969), + [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3117), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1691), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3197), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3188), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3170), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 1), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 1), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 5, .production_id = 114), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 35), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1855), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2916), + [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2072), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), + [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), SHIFT_REPEAT(3131), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 71), + [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2, .production_id = 24), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(2933), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1651), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 24), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 3), + [5948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2077), + [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2077), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 98), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(1937), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_list, 2), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 2), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 71), + [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(134), + [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3186), + [5979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(1941), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), + [5984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 3, .production_id = 51), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3119), + [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3106), + [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3051), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 51), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 3), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 24), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 1, .production_id = 43), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 123), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 27), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), SHIFT_REPEAT(3059), + [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_au_event_list_repeat1, 2), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 4, .production_id = 95), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 99), SHIFT_REPEAT(2892), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 9), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1547), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 8, .production_id = 124), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 124), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 123), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 1, .production_id = 43), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(361), + [6113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2003), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 122), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 1, .production_id = 43), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 29), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_list_argument, 3, .production_id = 73), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 113), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [6140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_au_event_list, 2), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 8), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 122), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 7), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2, .production_id = 24), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 112), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 112), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 95), + [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), + [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(3109), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 113), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 3, .production_id = 73), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 51), + [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2248), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 1, .production_id = 43), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1629), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_au_event_list, 1), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id_argument, 3, .production_id = 73), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 3, .production_id = 51), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 1, .production_id = 11), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump_argument, 3, .production_id = 73), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), SHIFT_REPEAT(2562), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 1, .production_id = 11), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1429), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_set_statement_repeat1, 2), [6237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 1), [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 1), - [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), - [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(362), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 2), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 1), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_identifier, 2), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1660), - [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(2999), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(392), - [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2095), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_remove, 4), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 1), - [6282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(2966), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(339), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 70), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 2), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 2), - [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1425), - [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_set_statement_repeat1, 2), - [6299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2633), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_identifier, 1), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 1), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 1, .production_id = 11), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 11), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 1, .production_id = 11), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 1, .production_id = 11), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 73), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enew_statement, 1), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 29), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2011), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augroup_name, 1, .production_id = 5), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augroup_name, 1, .production_id = 5), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), SHIFT_REPEAT(2975), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(2972), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 1), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 1, .production_id = 11), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 1, .production_id = 11), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augroup_name, 1, .production_id = 5), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augroup_name, 1, .production_id = 5), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 2), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 2), + [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), + [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 73), + [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2696), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(318), + [6269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2087), + [6272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1694), + [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(278), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 2), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_identifier, 2), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cnext_statement, 1), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 1, .production_id = 11), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 11), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cprevious_statement, 1), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(2976), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_identifier, 1), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 1), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_list, 3), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 1, .production_id = 11), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 1), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 1), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 1), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enew_statement, 1), + [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1998), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [6340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(3116), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 1), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 3), + [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 2), + [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(282), + [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), SHIFT_REPEAT(2879), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 2), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__runtime_where, 1), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__runtime_where, 1), + [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 3), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 70), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 2), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 29), + [6379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1707), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__autocmd_remove, 4), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 2, .production_id = 72), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 2, .production_id = 72), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_statement_repeat1, 2), SHIFT_REPEAT(68), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_statement_repeat1, 2), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 3), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_statement_repeat1, 2), SHIFT_REPEAT(75), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_statement_repeat1, 2), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1627), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 3), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 11), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_statement, 2, .production_id = 18), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1656), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1611), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1392), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2793), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 2, .production_id = 36), - [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 2, .production_id = 36), - [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_statement, 3, .production_id = 39), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1523), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), SHIFT_REPEAT(2222), - [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 2, .production_id = 72), - [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 2, .production_id = 72), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 3), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [6661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(3107), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), - [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(2262), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 2), - [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 2), - [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 2, .production_id = 11), - [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 2, .production_id = 12), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_command, 3, .production_id = 66), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 4, .production_id = 65), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 7, .production_id = 118), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 89), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5, .production_id = 85), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 3), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 62), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 62), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 84), - [6735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2693), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 6, .production_id = 35), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 2, .production_id = 18), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 7, .production_id = 25), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4), - [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6, .production_id = 105), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 3, .production_id = 32), - [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 3, .production_id = 68), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 116), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), - [6794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), SHIFT_REPEAT(243), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bang_filter_statement, 3, .production_id = 54), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 6, .production_id = 25), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 53), - [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3, .production_id = 25), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 6, .production_id = 115), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 3, .production_id = 52), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2635), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 3), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 3, .production_id = 50), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 4, .production_id = 77), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 8, .production_id = 25), - [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 7, .production_id = 116), - [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 2), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_indent, 2, .production_id = 11), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_plugin, 2, .production_id = 11), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 42), - [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 11), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor, 1, .production_id = 43), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_plugin, 3, .production_id = 11), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 42), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 2, .production_id = 41), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_undefine, 2, .production_id = 41), - [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_indent, 3, .production_id = 11), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 3, .production_id = 38), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 37), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 3), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 4, .production_id = 80), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 2, .production_id = 11), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 2, .production_id = 11), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 2, .production_id = 11), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 2, .production_id = 11), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 2, .production_id = 11), - [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 2, .production_id = 11), - [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 2, .production_id = 11), - [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 3, .production_id = 34), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 2), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_none, 2), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 3, .production_id = 31), - [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 2, .production_id = 30), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 4), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 3), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_define, 3, .production_id = 28), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 3, .production_id = 28), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 2), - [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 4), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 4, .production_id = 25), - [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 81), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 2), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 2), - [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enew_statement, 2), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_botright_statement, 2), - [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_topleft_statement, 2), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_belowright_statement, 2), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aboveleft_statement, 2), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vertical_statement, 2), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 12), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_enable, 1, .production_id = 11), - [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 6), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_detect, 1, .production_id = 11), - [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 23), - [7022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1533), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 22), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 2, .production_id = 21), - [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delcommand_statement, 2), - [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 85), - [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 2, .production_id = 17), - [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 16), - [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scriptencoding_statement, 2), - [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encoding, 1), - [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 2), - [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 2), - [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 2), - [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1551), - [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5, .production_id = 89), - [7068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 89), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 14), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 13), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 1), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs_statement, 4), - [7098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2056), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 64), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5), - [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 4, .production_id = 64), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_command, 4, .production_id = 90), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 64), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs_statement, 3), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 4, .production_id = 92), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopinsert_statement, 1), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 4, .production_id = 96), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comclear_statement, 1), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 35), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 97), - [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 5), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 5, .production_id = 100), - [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_enable, 1, .production_id = 11), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2, .production_id = 10), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body, 1, .production_id = 9), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor_argument, 3, .production_id = 73), - [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 2, .production_id = 8), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 2, .production_id = 7), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 5, .production_id = 102), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 5), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echohl_statement, 2), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 3, .production_id = 39), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 5), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_register_statement, 1), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 2), - [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_define, 2, .production_id = 6), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 5), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 5, .production_id = 25), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc_parameter, 1), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 5, .production_id = 103), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 105), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_statement, 2), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ruby_statement, 2), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lua_statement, 2), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perl_statement, 2), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 109), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 2), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cprevious_statement, 2), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cnext_statement, 2), - [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 89), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 62), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 64), - [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 4), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_command, 5, .production_id = 110), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 1), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 1, .production_id = 4), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 1), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__au_pattern, 1), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 57), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_lambda_expression, 6), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_lambda_expression, 5), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_lambda_expression, 4), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7873] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__keycode_in, 2), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 11), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 2), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 2), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1656), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 3), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 1), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 1, .production_id = 11), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 1, .production_id = 11), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__autocmd_pattern_repeat1, 2), SHIFT_REPEAT(2885), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_statement, 2, .production_id = 18), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 2, .production_id = 36), + [6681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 2, .production_id = 36), + [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_statement, 3, .production_id = 39), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1545), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1659), + [6697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(3166), + [6700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), + [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(2274), + [6705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1458), + [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), SHIFT_REPEAT(2197), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), + [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2862), + [6716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1536), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 2, .production_id = 17), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 12), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2094), + [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 7, .production_id = 116), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 8, .production_id = 25), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6, .production_id = 105), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5, .production_id = 85), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 7, .production_id = 25), + [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 6, .production_id = 35), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 1), + [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopinsert_statement, 1), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comclear_statement, 1), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 89), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 7, .production_id = 118), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_register_statement, 1), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 3, .production_id = 39), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 116), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 6, .production_id = 25), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 6, .production_id = 115), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 6), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs_statement, 4), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_command, 5, .production_id = 110), + [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 4), + [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 64), + [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 62), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 89), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 109), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 1, .production_id = 4), + [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6), + [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 105), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 5, .production_id = 103), + [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 5, .production_id = 25), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 5), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_statement, 5), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5), + [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 5), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 5, .production_id = 102), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor_argument, 3, .production_id = 73), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 5, .production_id = 100), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 5), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 97), + [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 35), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 4, .production_id = 96), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 4, .production_id = 92), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs_statement, 3), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_command, 4, .production_id = 90), + [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 1), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 4, .production_id = 64), + [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5), + [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 64), + [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 62), + [6946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 89), + [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5, .production_id = 89), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 85), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 81), + [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 4, .production_id = 25), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), + [6984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), SHIFT_REPEAT(259), + [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 4), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ex_statement, 4), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 4, .production_id = 80), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_indent, 3, .production_id = 11), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_plugin, 3, .production_id = 11), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 4, .production_id = 77), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [7009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1589), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cnext_statement, 2), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cprevious_statement, 2), + [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 3, .production_id = 68), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_command, 3, .production_id = 66), + [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1595), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 2), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 4, .production_id = 65), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 62), + [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 3), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perl_statement, 2), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4), + [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 64), + [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 62), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 2), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 2, .production_id = 18), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ruby_statement, 2), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_statement, 2), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2749), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_define, 2, .production_id = 6), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bang_filter_statement, 3, .production_id = 54), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 53), + [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3, .production_id = 25), + [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 3, .production_id = 52), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 2), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echohl_statement, 2), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 3), + [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_statement, 3, .production_id = 50), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 84), + [7118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2692), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 2), + [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_indent, 2, .production_id = 11), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_plugin, 2, .production_id = 11), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 42), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 11), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor, 1, .production_id = 43), + [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 42), + [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 2, .production_id = 41), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_undefine, 2, .production_id = 41), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 2, .production_id = 7), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_statement, 3, .production_id = 38), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 37), + [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 3), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 2, .production_id = 8), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body, 1, .production_id = 9), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2, .production_id = 10), + [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_enable, 1, .production_id = 11), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 2, .production_id = 11), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 2, .production_id = 11), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 2, .production_id = 11), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 2, .production_id = 11), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 2, .production_id = 11), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 2, .production_id = 11), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 2, .production_id = 11), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 2, .production_id = 11), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 3, .production_id = 34), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_none, 2), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 3, .production_id = 32), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 3, .production_id = 31), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 2, .production_id = 30), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 3), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_define, 3, .production_id = 28), + [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc_parameter, 1), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__autocmd_remove, 3, .production_id = 28), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 2), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 13), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 14), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lua_statement, 2), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 2), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 2), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 2), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encoding, 1), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scriptencoding_statement, 2), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 16), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delcommand_statement, 2), + [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_view_statement, 2), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 2, .production_id = 21), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 22), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 2), + [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enew_statement, 2), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_botright_statement, 2), + [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 23), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_topleft_statement, 2), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_belowright_statement, 2), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aboveleft_statement, 2), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vertical_statement, 2), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_detect, 1, .production_id = 11), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_enable, 1, .production_id = 11), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 2, .production_id = 12), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 1), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__au_pattern, 1), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 57), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_lambda_expression, 6), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__keycode_in, 2), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_lambda_expression, 5), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7909] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_lambda_expression, 4), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), }; #ifdef __cplusplus